Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter jeremy2805

    (@jeremy2805)

    The solution that worked for me was to bypass the shortcode by sticking this in the template file…

    <?php
    	echo owl_function(
    			array(	category => "slider",
    				singleItem => "true",
    				autoPlay => "true",
    				stopOnHover => "true",
    				navigation => "true",
    				navigationText => "<,>"
    			)
    	);
    
    	if ( have_posts() ) while ( have_posts() ) : the_post();
    		the_content();
    	endwhile;
    ?>

    As an aside, I think the Owl Carousel might screw up the loop because when I first did it, the call was just above the_content and it didn’t output my page content.

    king_slick

    (@king_slick)

    try to just add this attribute [navigationText=”<,>”]

    sample shortcode:
    [owl-carousel category=”Sample Carousel” items=”4″ autoPlay=”true” navigation=”true” navigationText=”<,>”]

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Setting navigation text…’ is closed to new replies.