Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1098331

    Hello, I am trying to make a content slider with both arrows and dots. It is there a simple way of doing this?

    #1098788

    Hey talawar,

    Thank you for using Enfold.

    This is possible but you need to modify the config-templatebuilder > aviashortcodes > contentslider > contentslider.php file. Look for this code around line 464:

    	if($slide_count > $columns && $type == 'slider' && $navigation != 'no')
    	            {
    	                if($navigation == 'dots') $output .= $this->slide_navigation_dots();
                        if($navigation == 'arrows') $output .= $this->slide_navigation_arrows();
    	            }
    

    Remove the condition so that both navigation display.

    	if($slide_count > $columns && $type == 'slider' && $navigation != 'no')
    	            {
    	                $output .= $this->slide_navigation_dots();
                            $output .= $this->slide_navigation_arrows();
    	            }
    

    Best regards,
    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.