Kerry
Forum Replies Created
-
Forum: Plugins
In reply to: [BNE Gallery Extended] Caption optionI don’t think I would add that as it defaults from what your theme provides but you can of course style it pretty easily with CSS.
.bne-gallery-extended .caption-description { font-size: 15px; }Forum: Plugins
In reply to: [BNE Testimonials] Slider not working, showing as list?Judging by the screenshot, it looks like it’s wrapped in a code tag. Switch over to the text side of the editor where you placed the shortcode and see if the shortcode is wrapped in code or pre tag.
Forum: Plugins
In reply to: [BNE Testimonials] Sort Testimonials by CategoryHello,
You would include
category="XXX"as an option within the shortcode. Below are examples. I’m assuming the category names are “employers” and “practitioners”.[bne_testimonials layout="list" category="employers"]
[bne_testimonials layout="list" category="practitioners"]
Forum: Plugins
In reply to: [BNE Gallery Extended] Bottom spacing in masonryHello,
Thanks for your solution. I’ve never been able to fully recreate it on my end but You could probably use 0 as a line-height as well.
Forum: Plugins
In reply to: [BNE Testimonials] Parse error: syntax error, unexpectedHello, since you’re using the pro version, support is handled over on my website.
To answer your question though, it sounds like you’re using PHP v5.2 as that line uses a PHP shorten ternary operator for an if/else statement. Make sure you’re using the minimum required PHP version which is v5.4.
Forum: Plugins
In reply to: [BNE Testimonials] how to display the Front Submission FormHello,
The front end submission form is feature of the pro (premium) version and not included in the version here.
- This reply was modified 8 years, 5 months ago by Kerry.
Forum: Plugins
In reply to: [BNE Gallery Extended] Slideshow on mansoryAre you referring to a popup or lightbox? This plugin does not provide that as that would normally come from your theme or from a lightbox plugin.
Forum: Plugins
In reply to: [BNE Testimonials] How to hide the “1” above the testimonial nameI don’t know what that is either. Can you check how you added the shortcode? Perhaps it’s wrapped in a code or pre tag? Also does this happen when using the list layout?
If none of the above, you can hide it with css.
.testimonial-author { text-indent: -9999px; } .testimonial-name, .testimonial-tagline, .testimonial-website { text-indent: 0; }Forum: Plugins
In reply to: [BNE Gallery Extended] Can not remove bottom marginSo you’re on a Mac and it’s doing it. I am as well and it’s not doing that which is very odd. On my Win VM I noticed it which is why I asked.
Any extensions running in the browser?
Forum: Plugins
In reply to: [BNE Gallery Extended] Can not remove bottom marginHi there,
Are you using a Mac or Windows? I’m not seeing on my end in any of the browsers with my Mac, but on Windows I see it. I wonder if the masonry script is miss calculating because of your page loader?
Is there an option to turn that off in your theme and try it again?
Forum: Plugins
In reply to: [BNE Testimonials] How to add plugin to page itemsBasically, you would take the shortcode you want to use and echo it in a do_shortcode function. For example, the default slider layout would look like this:
<?php echo do_shortcode('[bne_testimonials layout="slider"]'); ?>The use of the PHP tags is dependant on where you’re adding it to your theme. You would need to consult your theme documentation of where to place it for your purposes.
Forum: Plugins
In reply to: [BNE Testimonials] Loading content from custom postsHello,
I’m not quite following you here. Testimonials in itself is a custom post type and are displayed using a shortcode or widget in your page or widget area.
Forum: Plugins
In reply to: [BNE Testimonials] How to add plugin to page itemsThat’s because it’s not a page or a blog post. Testimonials are only displayed using a shortcode or a widget. So, you have three options, depending on your theme.
1) Use a shortcode in an area that allows it.
2) Use a widget in an area that allows it.
3) Include it in your theme’s template file – preferably via your child theme.Forum: Plugins
In reply to: [BNE Gallery Extended] hover effectThat would come from your theme or a lightbox plugin.
Forum: Plugins
In reply to: [BNE Gallery Extended] hover effectIf you use the
gutteroption, that will space out the grid for you. No need to apply a margin with CSS.[gallery caption="true" gutter="20" size="full" display="masonry" ids="22,23,24"]I’ve updated the plugin to v1.1.1 to support captions linking based on the
linkoption in[gallery]. Let me know if that works better.