Kerry
Forum Replies Created
-
Forum: Plugins
In reply to: [BNE Testimonials] Two slidersSo 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.
Forum: Plugins
In reply to: [BNE Testimonials] Two slidersYes, 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"]
Forum: Plugins
In reply to: [IM FB Widget] Last Update a Bug?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.
Forum: Plugins
In reply to: [BNE Testimonials] How do you randomize order?No you don’t need Pro for this.
Forum: Plugins
In reply to: [BNE Testimonials] How do you randomize order?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.
Forum: Plugins
In reply to: [BNE Testimonials] How do you randomize order?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.
Forum: Plugins
In reply to: [BNE Testimonials] How do you randomize order?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"]
Forum: Plugins
In reply to: [BNE Testimonials] Filter bne_testimonials_cpt_args no longer workingAh, 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 );Forum: Plugins
In reply to: [BNE Testimonials] How do you randomize order?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″]
Forum: Reviews
In reply to: [BNE Testimonials] Best plugin ive used in a whileThank you for the kind words and feedback!
Forum: Plugins
In reply to: [BNE Gallery Extended] Remove Loading animationIt 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; }Forum: Plugins
In reply to: [BNE Testimonials] Testimonial list not showing all entriesBy 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
Forum: Plugins
In reply to: [BNE Testimonials] Testimonial list not showing all entriesHi there,
Can you send me the link to where you have the shortcode displayed at.
Forum: Plugins
In reply to: [BNE Testimonials] Appears and then disappearsA 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”]
Forum: Plugins
In reply to: [CMB2] Frontend Submission with a file_list fieldHi 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.