Forum Replies Created

Viewing 15 replies - 211 through 225 (of 269 total)
  • Plugin Author Kerry

    (@bluenotes)

    Does 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; }
    
    Plugin Author Kerry

    (@bluenotes)

    Yep, 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″]

    Plugin Author Kerry

    (@bluenotes)

    If 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.

    Plugin Author Kerry

    (@bluenotes)

    Hello,

    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)

    Plugin Author Kerry

    (@bluenotes)

    That 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

    Plugin Author Kerry

    (@bluenotes)

    Most 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.

    Plugin Author Kerry

    (@bluenotes)

    This 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.

    Plugin Author Kerry

    (@bluenotes)

    What do you mean by changing the default size ?

    Plugin Author Kerry

    (@bluenotes)

    Hi There,

    You need to move jquery.js to the header and not have it in the footer.

    Plugin Author Kerry

    (@bluenotes)

    For 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.

    Plugin Author Kerry

    (@bluenotes)

    Hi 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”]

    Plugin Author Kerry

    (@bluenotes)

    Oembeds 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.

    Plugin Author Kerry

    (@bluenotes)

    Try deleting the slider widget and then adding it back. A new setting was added for the slider for AnimationSpeed.

    Plugin Author Kerry

    (@bluenotes)

    Hi xadim,

    I’ll need a live link to diagnose what is going on.

    Plugin Author Kerry

    (@bluenotes)

    You 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….

Viewing 15 replies - 211 through 225 (of 269 total)