Hello
How to remove slidecontrolls in avia slider? ( avisio theme)
Thanks
Best Regards
Leonardo
Hello
How to remove slidecontrolls in avia slider? ( avisio theme)
Thanks
Best Regards
Leonardo
Please remove following two lines from index.php:
$slideshow->setSlideshowSize('S');
$slideshow->showThumbnails();
The Dude
Thanks!
..Is possible remove the controls the specific slider with a short code in edit page-post (wordpress) ?
Thanks
Best Regards
Find slideshow.php located in avisio/framework/shortcodes
Please replace following code:
$return .= ' slides: ".featured",';
$return .= ' slideControlls: "items",';
$return .= ' appendControlls: ".slider_'.$uniqueClass.'",';
with:
$return .= ' slides: ".featured",';
$return .= ' slideControlls: "no",';
$return .= ' appendControlls: ".slider_'.$uniqueClass.'",';
The Dude
You must log in to post.