Forum Replies Created

Viewing 15 replies - 61 through 75 (of 272 total)
  • Plugin Author Kerry

    (@bluenotes)

    The 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: none so that it is hidden when not in focus but is being overridden with display: flex from 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: none and display: 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;
    }
    
    Plugin Author Kerry

    (@bluenotes)

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

    (@bluenotes)

    The 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.
    Plugin Author Kerry

    (@bluenotes)

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

    (@bluenotes)

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

    Plugin Author Kerry

    (@bluenotes)

    The 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?

    Plugin Author Kerry

    (@bluenotes)

    The 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)

    Plugin Author Kerry

    (@bluenotes)

    Ok did you try the CSS approach?

    Plugin Author Kerry

    (@bluenotes)

    Hello, I responded to your support email from my website a few days ago. Did you not receive it?

    Plugin Author Kerry

    (@bluenotes)

    Hello, 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.

    Plugin Author Kerry

    (@bluenotes)

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

    Plugin Author Kerry

    (@bluenotes)

    Hello,

    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 using wp_trim_words().

    • This reply was modified 7 years, 7 months ago by Kerry.
    Plugin Author Kerry

    (@bluenotes)

    Hello,

    Thanks for the bug report. This is fixed in v2.0.3.

    Plugin Author Kerry

    (@bluenotes)

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

    Plugin Author Kerry

    (@bluenotes)

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

Viewing 15 replies - 61 through 75 (of 272 total)