Kerry
Forum Replies Created
-
Forum: Plugins
In reply to: [BNE Testimonials] Not all categories showThe slider is failing due to a JS error of the readmore script. Your main domain website has that same page setup and the slider works there but with the readmore disabled.
I wonder if there is some kind of html tags happening within those two reviews that I’m not seeing on the frontend.
Anything different with a working category from this one?
Forum: Plugins
In reply to: [BNE Testimonials] Google API ResultsPlease submit a support ticket from where you purchased the plugin and I can help you there.
Forum: Plugins
In reply to: [BNE Testimonials] Google API ResultsNo sorry, that is a limitation on their API. Yelp is the same way but limits to 3, Facebook up to 200.
Forum: Plugins
In reply to: [BNE Testimonials] Google API ResultsBased on your rating_min option of 4, then that is correct. Google’s API provides the first 5 from their most relevant sort. Since you’re using a minimum rating of 4, only the last three qualify to be shown.
1 – 1 star
2 – 3 star
3 – 5 star
4 – 5 star
5 – 5 starSince this is a pro question, we will need to continue this using a support ticket. Please use that if you have any further questions.
- This reply was modified 6 years, 5 months ago by Kerry.
It’s not compatible with the gallery block. You would need to use the classic editor block which provides the pre Gutenberg Add Media button (in the toolbar). From there you would create your gallery just like before and set the display to masonry.
Forum: Plugins
In reply to: [BNE Testimonials] BNE Testimonial Slider not displayingYou have a JS error coming from navigation.js line 172. This file is part of your theme. That line is looking for a div with a class header-action, which is not available on your page, which makes headerAction in the JS file null which then makes headerActionWidth fail with an error.
You would need to contact your theme developer to assist in fixing that error.
Forum: Plugins
In reply to: [BNE Testimonials] Slider text has extra space below itYou can remove the padding using the following CSS. I left a bottom margin on the slider wrapper to allow some breathing room. Adjust as you see fit.
#site-navigation .bne-testimonial-wrapper { margin: 0 0 10px 0; } #site-navigation .bne-testimonial-slider.bne-flexslider .flex-content { padding: 0; }Forum: Plugins
In reply to: [BNE Testimonials] Slider text is displacedHi there,
There is a CSS rule from your theme’s styles.css file that places a left: -8.7% position on all ul tags within that area. See below screenshot
Use the following CSS to reverse that. The CSS would go into your theme’s custom css area or the WP Customizer.
.bne-testimonial-wrapper ul.slides { left: 0 !important; }Forum: Plugins
In reply to: [BNE Testimonials] Slider not displaying – but list worksHello,
Has nothing to do with PHP; however, most likely with your caching/minifying plugin. You may need to have it ignore the flexslider.min.js file so that the inline JS can be enqueued.
wp-content/plugins/bne-testimonials/assets/js/flexslider.min.jsForum: Plugins
In reply to: [BNE Testimonials] Add additional field to submission formHello,
Check out this example here. It shows adding a text field, saving it, and including it in the email response.
Since this is in regards to the pro version, if you need further assistance on how to adapt it to your specific needs, please submit a ticket from my website.
Forum: Plugins
In reply to: [BNE Testimonials] Slides not showing (display: none;)It’s possible that because of a JS error, it’s causing a fatal error in jQuery for other events afterwards. The error is coming from this call, line 212 of the document:
jQuery(".sidebar .enews-widget").stick_in_parent();The error references that .stick_in_parent() is not a function and is undefined. The function is wrapped in a if statement regarding the height of the sidebar. On mobile and my iPad the testimonial slider works because the if statement you’re using fails thus the call above for stick_in_parent() would not occur; whereas on desktop window sizes, the statement is true and proceeds causing the error. Take a look at that. You’ll need to remove it or adjust your logic when calling that function.
Forum: Plugins
In reply to: [BNE Testimonials] Widget Title Not ShowingPlease update to v2.0.4 which restores the missing widget titles.
Forum: Plugins
In reply to: [BNE Testimonials] Widget Title Not ShowingHello,
Not sure I’m following you. Is this for the testimonial widget or your widgets in general?
Forum: Plugins
In reply to: [BNE Testimonials] Buddypress add-on?The free version here on the plugin directory does not have a submission form. The pro version does have a submission form where you can make it only available to logged in users, by placing it on a user only page as defined by your website or by using CSS to hide the form.
Forum: Plugins
In reply to: [BNE Testimonials] Slider widget – ‘1’ added before author@danae23 Use the following CSS, assuming it’s the same as above. If you need further help, provide a link to your page and I’ll take a look.
.testimonial-author { font-size: 0; }