Forum Replies Created

Viewing 15 replies - 136 through 150 (of 272 total)
  • Plugin Author Kerry

    (@bluenotes)

    So you’re wanting two testimonials to display per slide or two separate sliders next to each other horizontally? If it’s two per slide then that’s not possible. Each testimonial, when using the slider layout, is a single slide.

    Plugin Author Kerry

    (@bluenotes)

    Yes, you can have multiple sliders/list on a single page. The limit argument sets how many testimonials are shown in the individual set. Screenshot

    [bne_testimonials limit="2" layout="list" image_style="circle"]
    [bne_testimonials limit="2" layout="list" image_style="circle"]
    

    Using the same shortcode twice will, of course, show the same testimonials. If you wanted to show a different set in the 2nd shortcode, then you’ll want to include a category.

    [bne_testimonials limit="2" layout="list" image_style="circle" category="cat1"]
    [bne_testimonials limit="2" layout="list" image_style="circle" category="cat2"]
    

    The developer needs to update the path or file name to the script file and update the wp_localize_script variable used for the script.

    • This reply was modified 8 years, 9 months ago by Kerry.
    Plugin Author Kerry

    (@bluenotes)

    No you don’t need Pro for this.

    Plugin Author Kerry

    (@bluenotes)

    Can you supply a login so I can take a look. You can send it privately on my site here. Include a note that it’s in reference to this thread.

    Plugin Author Kerry

    (@bluenotes)

    To use multiple categories at once, you’ll need to use the new shortcode as I wrote above. The new shortcode is included in the latest version of the plugin which is version 2.0. In the Admin > Testimonials > Help, you’ll see the shortcode documentation listed there.

    Just copy and paste what I wrote and it should work for you, assuming you have testimonials published in both those categories and the category slugs are correct.

    Plugin Author Kerry

    (@bluenotes)

    Multiple categories can’t be used with the v1.x shortcode. You’ll need to use the newer one since v2.0.

    [bne_testimonials layout="slider" animation="slide" arrows="true" image_style="square" smooth="true" speed="5000" nav="false" category="case-studies, endorsements" orderby="rand"]
    Plugin Author Kerry

    (@bluenotes)

    Ah, you’re right. That did get cut when I re-wrote it. Sorry about that. You can do the same thing using the built-in WP filter, register_post_type_args

    add_filter( 'register_post_type_args', function( $args, $post_type ) {
    	if( 'bne_testimonials' === $post_type ) {
    		$args['public'] = true;
    		$args['publicly_queryable'] = true;
    		$args['rewrite']['slug'] = 'name_of_slug';
    	}
    
    	return $args;	
    }, 10, 2 );
    
    Plugin Author Kerry

    (@bluenotes)

    Hello,

    I just tried it on my end with multiple categories and rand to make sure and it does work. What is the full shortcode you’re using? Can you share a link to the page with the slider on it?

    [bne_testimonials layout=”slider” orderby=”rand” category=”cat1, cat2″]

    Plugin Author Kerry

    (@bluenotes)

    Thank you for the kind words and feedback!

    Plugin Author Kerry

    (@bluenotes)

    It should remove on its own after all images have loaded. There isn’t a “white screen” over the images as they are only set to an opacity of 0 until all are loaded. Per haps what is happening is that something else on your page is still loading which is causing the delay???

    You can reverse this with the following CSS:

    .bne-gallery-loader { display: none !important; }
    .gallery-single { opacity: 1 !important; }
    
    Plugin Author Kerry

    (@bluenotes)

    By default it shows all with a “-1″, check your shortcode to see if you’ve entered an argument for post.

    If using the 1x version of the shortcode:
    [bne_testimonials_list post=”-1″]

    New shortcode as of v2
    [bne_testimonials layout=”list” limit=”-1″]

    If both of those are showing “-1” then your theme or another plugin might be hijacking the query globally?? You can try increasing the number that is set for “Blog pages show at most” located in Settings > Reading

    Plugin Author Kerry

    (@bluenotes)

    Hi there,

    Can you send me the link to where you have the shortcode displayed at.

    Plugin Author Kerry

    (@bluenotes)

    A couple of things to try:

    1) You’re calling jQuery twice, jquery.js (within the header) and jquery.min.js (within the footer). The second one is called after the slider inline js is printed from the shortcode. Every instance of jquery cancels the previous. In this case with it coming after, the flexlider function becomes undefined. Regardless though, one instance of jquery needs to be called only.

    2) Since you’re on v2 of BNE Testimonials, try the newer version of the shortcode outlined in the Admin help page. This streamlined version sends the inline js needed for the slider to the footer which in turn should be after any instance of jquery. Basically, instead of [bne_testimonials_slider] you would use [bne_testimonials layout=”slider”]

    Thread Starter Kerry

    (@bluenotes)

    Hi Michael,

    I was able to get it going. Still can’t use the file_list field if the user is not logged in, so I did it manually.

Viewing 15 replies - 136 through 150 (of 272 total)