Kerry
Forum Replies Created
-
Forum: Plugins
In reply to: [BNE Testimonials] jQuery Update cos Slider not showingHi Julian,
Should now be fixed in v2.0.6
Forum: Plugins
In reply to: [BNE Testimonials] change font sizeHello,
When I inspect that area with the browser console, it’s showing that div including the span that has the name text already using that font-size. You may not notice a difference as the testimonial name default is already 18px. If you want to override that specifically, I would recommend using the following:
.bne-testimonial-slider-wrapper .testimonial-name { font-size: }- This reply was modified 6 years, 1 month ago by Kerry.
Forum: Plugins
In reply to: [BNE Testimonials] Invalid object type for field “itemReviewed”Hi there,
On the Google badge, you’re using the schema type, “Service”, which is not valid for Reviews. You should instead use LocalBusiness or Product. More details about setting up the appropriate schema type can be found here: http://docs.bnecreative.com/articles/plugins/schema-tips/
If you need additional assistance with our pro version, please do so by creating a support ticket where you purchased it from as it cannot continue here on the WP forum as this is for the free version of the plugin.
Forum: Plugins
In reply to: [BNE Testimonials] Slider Shortcode Posting as a ListGlad to hear that it works now. Quotes are always a sticky point with the WP shortcode parser, so it’s always best to make them straight instead of curly. If you have any questions about the pro version, reach out to me over at my website.
Forum: Plugins
In reply to: [BNE Testimonials] Slider Shortcode Posting as a ListChange the quotes to be straight instead of curly.
[bne_testimonials layout="slider"]
Forum: Plugins
In reply to: [BNE Testimonials] Slider Shortcode Posting as a ListWhat is the shortcode you’re using? According to the page source, you may have layout=””slider”” or something as quotes are being placed in the html for the class name.
Forum: Plugins
In reply to: [BNE Testimonials] Bne Testimonials Pro stopped working with error messageHi there,
I’ve responded to your support ticket and will continue the discussion there. I’ll close the thread here since it involves the pro version of the plugin.
Forum: Plugins
In reply to: [BNE Testimonials] Text of First Testimonial in Slider Gets Cut OffYou’re welcome. Take care.
Forum: Plugins
In reply to: [BNE Testimonials] Text of First Testimonial in Slider Gets Cut OffTry the following CSS. It would go into your theme’s custom CSS area or the WP Customizer.
.widget li.testimonial-single { -webkit-transition: none !important; transition: none !important; }Forum: Plugins
In reply to: [BNE Testimonials] Text of First Testimonial in Slider Gets Cut OffI would have to take a look again as it looks like it’s not showing on your sidebar. It’s most likely a CSS override from something else.
Forum: Plugins
In reply to: [BNE Testimonials] Text of First Testimonial in Slider Gets Cut OffHmm, not sure. Something is holding it up. Can you try it with the fade animation instead of slide?
Forum: Plugins
In reply to: [BNE Testimonials] Add A Link To Widget TitleThe widget title is escaped and usually controlled by your theme. If you would like to include additional text around the slider, you would need to instead use a text widget and then add the slider shortcode instead of the widget version of it.
<h3 class="widget-title"><span>Testimonials</span></h3> [bne_testimonials layout="slider"]
- This reply was modified 6 years, 4 months ago by Kerry.
Forum: Plugins
In reply to: [BNE Testimonials] Reposition name/website below testimonial in list layout?Not all of them, but you can basically use the following:
add_filter( 'bne_testimonials_content', function( $message, $atts ) { $output = $message; $output .= '<div class="testimonial-author author-below">'; $output .= bne_testimonials_get_template( 'name', $atts ); $output .= bne_testimonials_get_template( 'tagline-website', $atts ); $output .= '</div>'; return $output; }, 10, 2);And then hide the old placement with CSS:
.testimonial-author:not(.author-below) .testimonial-name, .testimonial-author:not(.author-below) .testimonial-website, .testimonial-author:not(.author-below) .testimonial-tagline { display: none; }Forum: Plugins
In reply to: [BNE Testimonials] Reposition name/website below testimonial in list layout?Hi Gretchen,
Not in the free version of the plugin. The Pro has additional options for layout, theme style, and arrangement of the testimonial. In addition, there are a hooks available to completely re-arrange the testimonial on the dev level that I can help with if you don’t know PHP.
Forum: Plugins
In reply to: [BNE Testimonials] Not all categories showThe list would, of course, work since it doesn’t require a script. Can you provide a login and I’ll take a look. You can send it to me at my website here. I’m thinking there is some lingering text/html character in the review text. Because if one category works and the other doesn’t then the text would be the only difference.