You need to enable navigation and edit navigationText: Assuming this is version 1.3.2 $(“#owl-example”).owlCarousel({ navigation: true, navigationText: [“<img src=’myprevimage.png’>”,”<img src=’mynextimage.png’>”] }); Assuming it’s version 2: $(“#owl-example”).owlCarousel({ nav: true, navText: [“<img src=’myprevimage.png’>”,”<img src=’mynextimage.png’>”] });
Category Archives: Programming
Find Instagram User ID Number.
Use the below form to find your Instagram ID number by entering your valid username. visit http://www.ershad7.com/InstagramUserID/
Check variable if explode-able in PHP
use explode itself to see if it is explodable $a = explode(” “,”Where Am I?”); if(count($a)>1) { echo “explodable”; } else { echo “No use of exploding”; } or if(strpos($row[‘city’], ‘ ‘) !== false) { // explodable } else { // not explodable }
Elastix backup and restore file location.
/var/www/backup
bootstrap device widths
Personally I only worry about devices with 320px width or greater. In a sense I don’t care much about smaller devices, although I expect sites I make to have some (possibly reduced) functionality in every browser. Check this for more details Media Queries for Standard Devices
How to switch to a different PHP version with htaccess
To switch to PHP 7.1 1 AddHandler application/x–httpd–php71 .php .php5 .php4 .php3 To switch to PHP 7.0 1 AddHandler application/x–httpd–php70 .php .php5 .php4 .php3 To switch to PHP 5.6 1 AddHandler application/x–httpd–php56 .php .php5 .php4 .php3 To switch to PHP 5.5 1 AddHandler application/x–httpd–php55 .php .php5 .php4 .php3 To switch to PHP 5.4 1 AddHandler …
Continue reading “How to switch to a different PHP version with htaccess”