Kerry
Forum Replies Created
-
Forum: Plugins
In reply to: [BNE Testimonials] Testimonials fail on multi-paged viewsDid I not mention that it would be in the next update? Meaning, if you make the change now, then you would not have to worry about it as it would also be included when I release the next version. I don’t have a time frame when the next update would be release.
Forum: Plugins
In reply to: [BNE Testimonials] Testimonials fail on multi-paged viewsYou’re welcome. Go ahead and make that adjustment in the plugin as there is no time frame set for that next update release.
Forum: Plugins
In reply to: [BNE Testimonials] Testimonials fail on multi-paged viewsHmm, interesting. I suppose you have this on a sidebar with a blog archive page or similar.
Go to /includes/shortcode-display.php, line 190. There you’ll see the paged query arg setup
Wrap that with
if( $atts['pagination'] == 'true' ) { .... }Should look like the following when edited.
if( $atts['pagination'] == 'true' ) { if( get_query_var( 'paged' ) ) { $query_args['paged'] = get_query_var('paged'); } elseif( get_query_var( 'page' ) ) { $query_args['paged'] = get_query_var( 'page' ); } else { $query_args['paged'] = 1; } }I’ll have this in the next update. For further discussion, since this refers to the pro version, please contact me from the support site. Not here.
Forum: Plugins
In reply to: [BNE Gallery Extended] It didn’t work for meHello, this only works with the classic gallery either from using the TinyMCE editor (none Gutenberg editor) or by using the classic editor block’s media entry.
Forum: Plugins
In reply to: [BNE Testimonials] Default AvatarsI’ve replied to your email since it’s Pro related.
Forum: Plugins
In reply to: [BNE Testimonials] Facebook Profile Images 400 Error CodeHello, please update the plugin to v2.9.11. For any additional support the pro version, please contact me from where you made the purchase from.
Forum: Plugins
In reply to: [BNE Gallery Extended] Gallery does not “accept” masonry display optionI’m seeing that happen on my end. Do you have another plugin that alters the native gallery option? Are you doing this using the classic block or using classic editor plugin?
Hi there,
You can use the following CSS to remove the slider styles
.bne-testimonial-slider-wrapper { padding: 0; background: none; box-shadow: none; border: none; }Forum: Plugins
In reply to: [BNE Gallery Extended] Masonry Gallery Not WorkingHello,
Please update to v1.2 and let me know if that solves the problem. Be sure to clear any cache you may have on the website and your browser.
Forum: Plugins
In reply to: [BNE Testimonials] Change color of tagline websiteIt’s the same for all of them. If you need one more specific, then you can add a classname to the class argument of the shortcode.
[bne_testimonials class="myclass"]Then use:
.bne-testimonial-wrapper.myclass .testimonial-website a { color: red; }Forum: Plugins
In reply to: [BNE Testimonials] Change color of tagline websiteYou can adjust the color with the following CSS. Place it in your theme’s custom CSS area or the WP Customizer.
.bne-testimonial-wrapper .testimonial-website a { color: red; }Forum: Plugins
In reply to: [BNE Testimonials] French reviews translated in englishThat’s interesting that Google is returning some translated review instead of the original. Use the below filter to adjust the preferred language when requesting the reviews from Google. Add it to your theme’s functions.php file. Adjust the “de” language code to the one you need.
https://gist.github.com/bnecreative/02ff3f83c676dbb0825bee365cb9fd18
Since this is a question for the pro version of the plugin, if you need further assistant please submit a ticket from where the plugin was purchased from.
Forum: Plugins
In reply to: [BNE Testimonials] Google Warning after WP update to 5.5Hello,
This version of the plugin does not use the Google API and would have nothing to do with respect to WP 5.5. If you’re using the pro version, please submit a ticket where you purchased the plugin and I will be happy to assist further.
Here is a link to setting up the Google API: http://docs.bnecreative.com/articles/plugins/google-testimonials-api/
Forum: Plugins
In reply to: [BNE Testimonials] jQuery not working even in 2.0.6Hello,
I’m not seeing that occur on my end using the default 2020 theme on WP 5.5
https://dev.bnecreative.com/plugins/testimonial-slider/
Are you sure on where it’s being called from. The jquery file you mentioned would not be used on the frontend for the slider as the default jquery.min.js would come from WP itself (/wp-includes/js/jquery/jquery.js) instead.
I’ve also tried using the latest version of jQuery 3.5.1 using the jQuery Updater plugin along with removing migrate on that one and the slider still works as expected.
Digging deeper though, the version of JS you referenced is a much older one in the CMB2 library, but still should not be called as WP would use the one it comes with or one that is newer. So something else must be referencing that particular one and it’s getting called.
On a side note, there’s nothing wrong with keeping the migrate helper around, but I would suggest perhaps investigating further to see if another plugin is somehow getting that one called.
Forum: Plugins
In reply to: [BNE Testimonials] jQuery Update cos Slider not showingSure, I can add that. It’ll be a silent update to the plugin, so you can re-download the pro one or simply add font-display: swap to the @font-face call in the two css files.
With that said, for further discussion on the pro, please submit a ticket from from website since we can’t discuss it further here.