Is it possible to have both dots and arrows in a Content Slider? I only see the option for either/or in the CMS.
Hey AboveDigital,
Thank you for using Enfold.
Yes, this is possible but you have to modify the contentslider.php file and you have to do this modification every time you update the theme. Open the config-templatebuilder > aviashortcodes folder and edit the said file. Look for this:
if($slide_count > $columns && $type == 'slider' && $navigation != 'no')
{
if($navigation == 'dots') $output .= $this->slide_navigation_dots();
if($navigation == 'arrows') $output .= $this->slide_navigation_arrows();
}
.. replace it with:
if($slide_count > $columns && $type == 'slider' && $navigation != 'no')
{
$output .= $this->slide_navigation_dots();
$output .= $this->slide_navigation_arrows();
}
This will render both navigation regardless of the slider settings.
Best regards,
Ismael