Kerry
Forum Replies Created
-
Forum: Plugins
In reply to: [BNE Testimonials] Slider box displacedDoes your theme provide a [clear] shortcode or something that is usually added after a set of columns to clear their floats? If I add
<div class="clear"></div>
above the testimonial slider markup it shows correctly. In addition if I remove your 4 columns it shows correctly.
Can you see what happens if you put the slider above your four columns?
You’ll also need to remove the bullet that your that theme adds to all list (“li”) tags:
.bne-testimonial-slider.bne-flexslider li { list-style-type: none; }
Forum: Plugins
In reply to: [BNE Testimonials] divide testimonial posts between two slidesYep, sure can. You can place testimonials into categories and then add the category name to the category option within the shortcode.
[bne_testimonials_slider category=”name-of-category1″]
[bne_testimonials_slider category=”name-of-category2″]
Forum: Plugins
In reply to: [BNE Testimonials] Remove BNE Testimonial form posts and pagesIf you’re using the shortcode, then it will only display on the page/post you add it to.
If you’re using the provided widget variant, or the shortcode within a text widget, then that will be on every page that uses that sidebar or widget area you added it to. BNE Testimonials doesn’t determine this.
Now with that said, If you’re using a widget and only want it to show on certain pages, then you’ll need to use a custom sidebar plugin that allows you to conditionally select which pages the widget area displays on as a whole such as the plugin WooSidebars. You can also use a plugin that conditionally allows you to set individual widgets on certain pages and post types such as one of these.
Forum: Plugins
In reply to: [BNE Testimonials] Only few featured images loadingHello,
Are you referring to the ones that are a white squares? Or for Mathias and Jacob?
For the white squares, Not sure but I would look at your plugin settings with Speed Booster Pack. It looks to be replacing the images with a 1×1 gif. (https://rentrafik.dk/wp-content/plugins/speed-booster-pack/inc/images/1×1.trans.gif)
Forum: Plugins
In reply to: [BNE Testimonials] Words splitting in sliderThat would not be the default behavior, so you most likely have another css property coming from your theme that is breaking the words at the end of the lines. Try adding word-break: normal; to your CSS
.bne-testimonial-description { word-break: normal !important; }
More info: https://www.w3schools.com/cssref/css3_pr_word-break.asp
Forum: Plugins
In reply to: [BNE Testimonials] Change default slider/rotator sizeMost likely extra padding from from your theme, if you can provide a link, then I can point you to what you need to add to your custom css area to correct it.
Forum: Plugins
In reply to: [BNE Testimonials] Change list displayThis would be custom css you would need to add to your child theme, style.css file or via a custom css plugin. Use the browser inspect tools to determine what you need to adjust and add it to your custom css entry.
Forum: Plugins
In reply to: [BNE Testimonials] Change default slider/rotator sizeWhat do you mean by changing the default size ?
Forum: Plugins
In reply to: [BNE Testimonials] Slider is not working on the site.Hi There,
You need to move jquery.js to the header and not have it in the footer.
Forum: Plugins
In reply to: [BNE Testimonials] Center Pagination/ArrowsFor either one, you could do something like this:
/* Center Pagination */ .bne-testimonial-slider.bne-flexslider .flex-control-nav { left: 50% !important; right: auto; -webkit-transform: translateX(-50%); -moz-transform: translateX(-50%); -ms-transform: translateX(-50%); transform: translateX() (-50%); width: auto; } /* Center Arrows */ .bne-testimonial-slider.bne-flexslider .flex-direction-nav { left: 50% !important; right: auto; -webkit-transform: translateX(-50%); -moz-transform: translateX(-50%); -ms-transform: translateX(-50%); transform: translateX() (-50%); width: auto; }
If you use both, they both will be centered on top of each other, so if you want both centered and displayed, you would need to further position them individually using the bottom property as well.
Forum: Plugins
In reply to: [BNE Testimonials] Feature Request: Disable auto-slidingHi X-Raym,
You can simulate this by specifying the “speed” option within the shortcode for the slide duration by setting it to a high number (in milliseconds). 90000 milliseconds will equal 90 seconds. Use any number you see appropriate.
Example: [bne_testimonials_slider speed=”90000″]
Another option you have is using the “smooth” option. Since you said that content after the slider moves due to each testimonial being a different height. If you set this to false, then the height of the testimonial slider will be the that of the tallest testimonial message and not change height.
Example: [bne_testimonials_slider smooth=”false”]
Forum: Plugins
In reply to: [BNE Testimonials] Adding VideoOembeds will not parse in the testimonial output, but you can get around it by using a video shortcode provided from another plugin. An example would be the YouTube Shortcode plugin which adds a shortcode for YouTube videos.
Forum: Plugins
In reply to: [BNE Testimonials] Slider Stopped Working After Latest UpdateTry deleting the slider widget and then adding it back. A new setting was added for the slider for AnimationSpeed.
Forum: Plugins
In reply to: [BNE Testimonials] Slider not slidingHi xadim,
I’ll need a live link to diagnose what is going on.
Forum: Plugins
In reply to: [BNE Testimonials] List mode testimonials in various locationson pageYou can do this with the free version. Add the list shortcode in all your areas of the page and set each shortcode to display only 1 in a random order.
Example:
Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum. Vestibulum id ligula porta felis euismod semper.
[bne_testimonials_list order=”rand” post=”1″]
Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum. Vestibulum id ligula porta felis euismod semper.
[bne_testimonials_list order=”rand” post=”1″]
Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum. Vestibulum id ligula porta felis euismod semper.
etc….