Kerry
Forum Replies Created
-
Forum: Plugins
In reply to: [BNE Testimonials] Large Space between title and reviewsThe issue comes from the CSS used for the videos tab.
#pills-videos { display: flex; flex-wrap: wrap; }The problem is that the tab needs
display: noneso that it is hidden when not in focus but is being overridden withdisplay: flexfrom the custom CSS you or someone added. The reason why this hasn’t been noticed previously is that the video tab was the last on the markup of the entire tab container. Now that you added a reviews tab, in the HTML markup, it is added after the video tab even though in the tab navigation reviews link is not last.With display flex being used on the video tab, it is then never hidden when not in focus. You can see this happen with any of the first four tabs as the extra white space is below their content.
I understand why you’re using display flex on the videos so that you can have them float left into a column layout. However, you would need to do that on an inner div of the tab container so that it doesn’t affect the tab itself as it requires
display: noneanddisplay: block.If you’re not able to wrap the videos in an inner div and use that for display flex then you should adjust the custom CSS to this so that it only targets that tab when it is active.
#pills-videos.active { display: flex; flex-wrap: wrap; }Forum: Plugins
In reply to: [BNE Testimonials] Override target=”_blank” in URL?Hello,
There are a few ways to do it. The easiest would probably be to use the template filter for that area. Below filters that area and allows you to adjust the markup using a string replace. It’ll go into your active theme’s functions.php file.
add_filter('bne_testimonials_tagline_and_website', function( $output, $atts ) { $output = str_replace('target="_blank"', 'target="_self"', $output); return $output; }, 10, 2 );Forum: Plugins
In reply to: [BNE Testimonials] Change font color in BNE TestimonialsThe way you wrote it definitely invalid. If you want to use what you wrote, you’ll need to adjust it to the following:
.bne_testimonials_slider_widget .bne-testimonial-slider-wrapper .testimonial-author { color:white !important; } .bne-testimonial-slider-wrapper .testimonial-content .testimonial-message { color:white !important; }Here is a screenshot of the corrected CSS working on your page.
https://paste.pics/d94c1e87657982327ebffda44ed54e50- This reply was modified 7 years, 2 months ago by Kerry.
Forum: Plugins
In reply to: [BNE Testimonials] Change font color in BNE TestimonialsYou’ll need to use CSS to alter the font color. For the slider, you can use the following and adjust to your needs.
.bne-testimonial-slider-wrapper .testimonial-author { color: white; } .bne-testimonial-slider-wrapper .testimonial-content { color :white; }Forum: Plugins
In reply to: [BNE Testimonials] List not displaying on testimonials pageGood to hear. Probably a reserved archive page from a blog category or if you have another testimonial plugin activated that uses it. Glad to hear it’s working out for you.
Forum: Plugins
In reply to: [BNE Testimonials] List not displaying on testimonials pageThe URL you’re using is showing as an archive page and not as a traditional page. Therefore, the query looks to be pulling blog post instead. If you create a test page with that shortcode, does it then work?
Forum: Plugins
In reply to: [BNE Testimonials] Slider widget – ‘1’ added before authorThe message shouldn’t disappear as it falls under a different div. When I tried it in the browser inspect tools, it worked as expected. (See screenshot)
Forum: Plugins
In reply to: [BNE Testimonials] Slider widget – ‘1’ added before authorOk did you try the CSS approach?
Forum: Plugins
In reply to: [BNE Testimonials] Slider widget – ‘1’ added before authorHello, I responded to your support email from my website a few days ago. Did you not receive it?
Forum: Plugins
In reply to: [BNE Testimonials] Thumbnail Slider Not workingHello, you’ll need to exclude the Flexslider script from your minification/cache plugin. For further assistance, please contact us with a support ticket from your account since this is about the Pro version of the plugin.
Forum: Plugins
In reply to: [BNE Gallery Extended] Gallery Display IssuesWhen you say “Side Bar” are you referring to a widget area? If so, are you trying to use the gallery widget? I can confirm that it doesn’t save there when using the gallery widget. Try using the Text widget instead as you can add a gallery that way as well which is the same for pages/post. That one does work.
Then, If you view the gallery shortcode on the text side of the visual editor, what is shown for the display option? It should be similar to this:
[gallery display="carousel" size="medium" link="none" ids="6,10,5,11,9,4,8,7"]
If not, then you can add the display=”carousel” manually and it should keep it that way.
Forum: Plugins
In reply to: [BNE Testimonials] Set a content lengthHello,
The content length is an option in the Pro version of the plugin.
If that is not an option for you, then you can adjust the testimonial content by using the
bne_testimonials_content()filter which is available in both free and pro versions of the plugin. This would allow you to customize the text and add your truncation such as usingwp_trim_words().- This reply was modified 7 years, 7 months ago by Kerry.
Forum: Plugins
In reply to: [BNE Testimonials] Name=false bugHello,
Thanks for the bug report. This is fixed in v2.0.3.
Forum: Plugins
In reply to: [BNE Gallery Extended] RotateBy rotate, do you mean changing the order? If so, yes as you can do that. Edit the gallery as normal and then click and drag the image to place it in a different order.
Forum: Plugins
In reply to: [BNE Gallery Extended] Link to fileIn the gallery settings, are you setting it to link to attachment page or media file? According to the page source, they’re linking to the attachment page.