Kerry
Forum Replies Created
-
Forum: Plugins
In reply to: [BNE Testimonials] Disable auto-slider heighHi Dave,
Use
smooth="false"within the shortcode and it will set all slides to a fixed height of the tallest one.Ex:
[bne_testimonials_slider smooth="false"]Forum: Reviews
In reply to: [BNE Gallery Extended] Very ImpressedThanks for the kind words 🙂
Forum: Plugins
In reply to: [BNE Testimonials] How to display 2 Categories in shortcodeHello,
No sorry, but at the moment it only accepts one category. I do have this on my todo list in the next update though.
Testimonials can of course be included in more than one category. So for those that you want to be mixed, you can assign them to a 3rd “mixed” category and use that name instead for now.
Forum: Plugins
In reply to: [BNE Testimonials] List Shortcode- Specify CategoryYes, use image_style=”circle” within the shortcode.
All of the available options are shown in the admin help page. WP Admin menu > Testimonials > Help
Forum: Plugins
In reply to: [BNE Testimonials] List Shortcode- Specify CategoryHello Emily,
You can already do this by adding the category option to the shortcode.
[bne_testimonials_list category=”category-slug”]
Forum: Plugins
In reply to: [BNE Gallery Extended] Lazy LoadHi guys. I’ll see what I can do. I’m out of town this week so it won’t be until next week before I can look at it.
With that said, and if I remember correctly, these plugins also have a hard time with the default [gallery] shortcode which is why most will not work out of the box. If anything, I’ll see about adding a hook to tap into.
Which lazy load plugins are you trying?
Forum: Plugins
In reply to: [BNE Testimonials] Shape of photos does not changeYou need to remove the css block I referenced above that you or someone else added to your theme’s style.css file. That CSS is overriding the default styles applied from the plugin. Until that is removed, the shortcode option telling it to be a circle won’t take affect because the CSS override is forcing a 0px border radius no matter what to the profile image.
Forum: Plugins
In reply to: [BNE Testimonials] Shape of photos does not changeYou’re overriding the plugin css styles from your theme’s style.css file starting on line 1890.
This is what you have there:
.bne-testimonial-featured-image, .bne-testimonial-featured-image.square, .bne-testimonial-featured-image.circle, .bne-testimonial-featured-image.flat-square, .bne-testimonial-featured-image.flat-circle { height: 170px !important; margin: 5px 20px 10px 0 !important; width: 170px !important; } .bne-testimonial-featured-image, .bne-testimonial-featured-image.square { border: 1px solid #ddd !important; border-radius: 0 !important; box-shadow: none !important; padding: 10px !important; -moz-border-radius: 0 !important; -moz-box-shadow: none !important; -webkit-border-radius: 0 !important; -webkit-box-shadow: none !important; }You’re forcing a 0px border radius among other things.
Forum: Plugins
In reply to: [BNE Testimonials] Shape of photos does not changeDo you have a link I can view to the page that has it?
Forum: Plugins
In reply to: [BNE Testimonials] Shape of photos does not changeHello,
Are you adding the attribute
image_styleto it as well?
Example:
[bne_testimonials_list image_style="circle"]Forum: Plugins
In reply to: [BNE Testimonials] Alternating Background Color in List DisplayHi there,
Something like the following should do the trick for you.
.bne-testimonial-list-wrapper .single-bne-testimonial:nth-child(even) { background: #eee; padding: 10px; }I’ve pushed out v1.0.3 which does a better calculation of column widths using any gutter size. Should be much better now. You can also disable the responsive columns by adding responsive=”false” to the gallery shortcode.
Forum: Plugins
In reply to: [BNE Testimonials] Slider Adjustment for Use With Beaver BuilderThe added margin is coming from Dynamik Website Builder. Add the following to your custom css area to force a 0 margin on the testimonial slides:
.bne-testimonial-slider-wrapper .single-bne-testimonial { margin: 0 !important; }Forum: Plugins
In reply to: [BNE Testimonials] Slider Adjustment for Use With Beaver BuilderHello,
Do you have a link I can view ?