Kerry
Forum Replies Created
-
Forum: Plugins
In reply to: [BNE Testimonials] How can I place Image, Name and Company after testimonialCorrect, within that function you could move around the pieces to change the order. So to have the image/name/company above the message, you would have it look like the following:
function custom_testimonials_single_structure( $shortcode_output, $options) { // Empty String $shortcode_output = ''; // Testimonial Content $shortcode_output .= bne_testimonials_the_content( $options ); // Testimonial Thumbnail if ($options['image'] != 'false') { $shortcode_output .= bne_testimonials_featured_image( $options ); } // Testimonial Title if ($options['name'] != 'false') { $shortcode_output .= bne_testimonials_title( $options ); } // Testimonial Tagline and Website URL if (!empty($options['tagline']) || !empty($options['website_url'])) { $shortcode_output .= bne_testimonials_details( $options ); } return $shortcode_output; } add_filter('bne_testimonials_single_structure','custom_testimonials_single_structure', 10 , 2);Forum: Plugins
In reply to: [BNE Testimonials] How can I place Image, Name and Company after testimonialIn the pro version you can do this with the shortcode. However in the free version here on the repo you would need to use on of the filters such as bne_testimonials_single_structure(). This filter allows you to customize the structure of the testimonial output.
An example of it used can be found on the following gist.
Try the following CSS
.bne-gallery-masonry-wrapper .gallery-single.col-3-masonry { width: 30% !important; }I’m addressing this in the next update to be a little more flexible on the widths and gutters. The downside in general is that the size of the gutter effects the column size as it’s added to the overall width. So what’s happening in your case is that the three columns plus the addition of the gutter of each column is causing it to overall be above 100% of the container width. This causes the the stack to collapse again to two columns from the three.
Hi there,
Do you have a link I can view?
Forum: Plugins
In reply to: [BNE Testimonials] display dateAre you using BNE Testimonials (free) from the WP Repo or the pro version?
The list of filters on the support site is what is officially supported in the pro v2.x. All filters in the free version are still available in the pro version but only using the v1.x variants of the shortcodes. Those are not being removed and left in for backwards compatibility. Therefore, you should be fine using those existing filters. They will remain in the free version here on the WP Repo and as legacy in the v2.0 pro.
With your other question, If using the v2.x shortcode versions, some of the old filters are technically there, but renamed. For example bne_testimonials_title is now bne_testimonials_name.
In other words, If using v1.x shortcode in either free or pro, you would use bne_testimonials_title. In v2.x shortcode you would use bne_testimonials_name going forward. Hope that makes sense.
Forum: Plugins
In reply to: [BNE Testimonials] display dateHello. There’s not an option to do this automatically. You can of course add it manually to the message body or tinker with the
bne_testimonials_the_contentfilter to customize the message output.Forum: Plugins
In reply to: [BNE Testimonials] Remove bottom paddingI see you added it to layout.css; however, the first part of it is incorrect. You have it as the following:
.bne_testimonial_slider_widget .bne-testimonial-slider .flex-content { padding-bottom: 8px !important; }It needs to be this:
.bne-testimonial-slider.bne-flexslider .flex-content { padding-bottom: 8px !important; }Forum: Plugins
In reply to: [BNE Testimonials] Remove bottom paddingThe class “bne_testimonial_slider_widget” is not showing on your markup are you using the testimonial widget or the shortcode? I’m also not seeing where you’re getting a height set.
The css I displayed above does work in the browser. So I would need to see where you’re using/adding it. You can see it with the following screenshot where I’ve adjusted the bottom padding to 8px.
Forum: Plugins
In reply to: [BNE Testimonials] Disable scrolling by swiping on mobile devicesYou’re welcome! No need to donate. However, you could always check out the pro version if you would like or simply give me a rocking review here. 🙂
Forum: Plugins
In reply to: [BNE Testimonials] Disable scrolling by swiping on mobile devicesHi there,
There’s not an option in the plugin to do that but you can add it manually. I’ll see about adding it as an option in a future update. If it’s something you need for now, you can go to the following file:
/plugins/bne-testimonials/includes/shortcode-slider.php
Then around line 68, you’ll see the settings for the slider js part. On the last part of it you would add:
touch: false
Add a comma at the end of slideshowSpeed: ‘.$speed.’,
The whole section would then look like the following:
// Load Flexslider API $output = '<script type="text/javascript"> jQuery(document).ready(function($) { $(\'#bne-slider-id-'.$slider_random_id.' .bne-testimonial-slider\').flexslider({ animation:n"'.$animation.'", animationSpeed: '.$animation_speed.', smoothHeight:n'.$smooth.', pauseOnHover:b'.$pause.', controlNav: '.$nav.', directionNav: '.$arrows.', slideshowSpeed: '.$speed.', touch: false }); }); </script>';Forum: Plugins
In reply to: [BNE Testimonials] Remove bottom paddingTry adding the following CSS to your custom css area:
.bne-testimonial-slider.bne-flexslider .flex-content { padding-bottom: 8px !important; }Forum: Plugins
In reply to: [BNE Testimonials] Slider by CategoryHi there,
I believe you also emailed me the same question so I’ll repost my answer here as well.
Yes, just add category=”name_of_cat” to the shortcode. For example if your category name was “Los Angeles” your shortcode would look like the following:
[bne_testimonials_slider category=”Los Angeles”]
The category slug works as well: [bne_testimonials_slider category=”los-angeles”]
You can see other shortcode arguments from the help page found within the Testimonial admin menu. You can have as many independent sliders on a page as you need as each one builds a unique id.
Forum: Plugins
In reply to: [BNE Testimonials] Slider not workingHello,
There’s a js error shown in the browser console. Judging by the error, it looks to be the Genesis Simple Share plugin. It’s happing only on home page as the testimonial slider works fine on your other pages such as the about page: http://sharongrahamsmith.com/about/.
The error in the console on the home page shows:
TypeError: $('#googleplus-after-869').waypoint is not a function. (In '$('#googleplus-after-869').waypoint', '$('#googleplus-after-869').waypoint' is undefined)Forum: Reviews
In reply to: [BNE Testimonials] Cute testimonial :)Hi Avivy,
Thanks for the review and rating. To answer your question, please contact me on my website since it would deal with the pro version.
Forum: Plugins
In reply to: [BNE Testimonials] Line below testimonialsI can’t help you without being able to see the css (source code) that is affecting it. If it’s live, you can send me the link privately on my website contact form.
With the shortcode, you would format it like this:
[bne_testimonials_slider arrows=”false” nav=”false”]