Kerry
Forum Replies Created
-
Forum: Plugins
In reply to: [BNE Testimonials] Line below testimonialsHello,
Not sure on the dotted line you’re referring to. If there is one, it would be coming from another plugin or your theme css. You’ll need to provide a link to your site for me to check.
To remove the pagination and arrows, add arrows=”false” and nav=”false” to the slider shortcode. All of the available arguments are shown on the help page under the Testimonials admin menu.
Forum: Plugins
In reply to: [BNE Testimonials] Slider content displacedHello,
Your theme adds a margin-left to all “li” tags within a widget and is also affecting the testimonial slides as these are also “li” tags. Please add the following to your custom css area:
.widget-area li.single-bne-testimonial { margin: 0 !important; }Forum: Plugins
In reply to: [BNE Testimonials] List doesn't display on page.Awesome glad to hear it working now. Take care.
Forum: Plugins
In reply to: [BNE Testimonials] List doesn't display on page.Then I’m not sure as my testimonials won’t override a page’s placement or query as it’s only a shortcode. You may want to check if there are any page options set for that particular page, or a setting from your Theme Options, SEO plugin, etc. The page source also list the body class as “home” so something is forcing it to behave as such.
What happens when you take my shortcode out of the equation?
Forum: Plugins
In reply to: [BNE Testimonials] List doesn't display on page.Hi joyryde,
That would have nothing to do with the shortcode as it would not alter the query of the page. Do you have that page set as the home/front page in the Settings > Reading?
Forum: Plugins
In reply to: [BNE Testimonials] Fatal ErrorSorry to hear that. A few reasons will cause a memory issue. This is the first I’ve heard of it with my plugin, so it will depend on what else is going with your site and server. It also may depend on what else is happening on that page. There are a few steps you can take to help narrow down or remedy this.
1. Update the PHP running on your server to the latest stable release such as v5.6. Most shared and older servers start with 5.2 and updating to 5.5 or 5.6 helps manage memory more efficiently. In addition, this will increase your PHP security and remove any outdated vulnerabilities from older version of PHP. WordPress also recommends PHP v5.6 now.
2. Increase the available memory WordPress can use. This can be done in wp-config.php but sometimes also requires updating a php.ini file. Your web host can help you if needed.
2. Check what else is happening on that page. Sometimes widgets in a sidebar or footer that use a shortcode or query for post that in themselves display another shortcode may add to the load or cause a bottleneck. So try it on a page with no other content in any other areas if possible.
3. Disable all other plugins and see if the problem resolves, if so, reactivate them one at a time to see when the error happens to narrow down the conflict.
4. Switch to the default WP theme and see if the problem resolves just like with the plugin test.
Forum: Plugins
In reply to: [BNE Testimonials] Put company name underneath contentHi Matt,
There is not an option to do this but you could either add it to the editor area or use one of the available filters such as bne_testimonials_the_content() or bne_testimonials_list_single_below() and include the tagline call that way.
Forum: Plugins
In reply to: [BNE Testimonials] Testimonials ugly tags and dead linksOk, either your theme, Visual Composer, or another plugin is changing how featured images markup is used globally. I’ve also noticed some changes to the core testimonial css file. you should not make changes here and instead use a child theme or custom css area from your theme to make these style edits as they will be lost next time the plugin receives an update from the Repo.
Your theme looks to be wrapping the featured image with a number of divs, custom-frame-wrapper, custom-frame-inner-warper, custom-frame-padding, etc. I mentioned your theme doing it as that is the same as the U-Design demo for recent post in the sidebar. Ex: http://dreamthemedesign.com/themes/u-design/blog/. This is out of my control as your theme is doing this.
I would also assume the theme is adding a post link automatically which make sense as they are changing the markup with it. My testimonial plugin does not provide a hover/zoom effect on the image, does not throw a link to a single post view of the testimonial, and does not move the nav arrows where they currently are on the half way down the left side.
Have you tried adding the function I wrote a number of days ago? That may force the link to not get filtered into the testimonial from your theme.
Other than that, there’s nothing I can do as your theme is making this changes.
Forum: Plugins
In reply to: [BNE Testimonials] Testimonials ugly tags and dead linksThe testimonial image is not a clickable link by default. Trust me on that. However, if that is the case, then you are either using the lightbox option within the Testimonial widget, or another plugin is overriding how featured images area handled.
If you can provide a link, I’ll see if I can investigate further with the page source.
Forum: Plugins
In reply to: [BNE Testimonials] Testimonials ugly tags and dead linksHello,
There shouldn’t be a query on the front end of a testimonial as there is no link to go to one that this plugin produces and unless it’s done outside the plugin. However, you can turn off the publicly_queryable argument which should remove the ability to query a testimonial using a query var ?bne_testimonials=name etc.
function bne_testimonials_custom_args( $args ) { $args['publicly_queryable'] = false; return $args; } add_filter( 'bne_testimonials_cpt_args', 'bne_testimonials_custom_args' );Additional arguments can be found on the WP Codex, https://codex.wordpress.org/Function_Reference/register_post_type#Arguments
As far as the breadcrumbs, that will depend on your theme and how it processes them. If you keep the publicly_queryable to true, you could hide the breadcrumbs with css. You could also probably adjust the rewrite rule in the $args mentioned above and set that to be a /testimonial/ type slug so that it becomes domain.com/testimonial/name
Forum: Reviews
In reply to: [BNE Testimonials] I love this pluginHi Jim. Thanks for the kind words. Stars are coming!
Forum: Plugins
In reply to: [BNE Testimonials] slider filled with errors after updateThat’s odd, because that was never an option to only show an excerpt. It’s always shown the full testimonial message. In addition, the testimonials do not have “single pages” of each testimonial to display a full version of it. Are you sure this was the same plugin or was it altered at the core level?
Forum: Plugins
In reply to: [BNE Testimonials] slider filled with errors after updateYour second link fails to open for me so I can’t see what it “should look like”. However, in your case your theme is overriding the styles.
On style.css from your theme on line 189, it’s forcing “color: #fff !important” globally on all areas of the site which would also target the testimonial slider. In addition, your theme overrides the testimonial navigation styles.
So you have two options. You can add “flat-testimonial-slider” as a class option to the testimonial slider. This will remove the white background allowing the white text to be seen. Or you can add some come additional CSS to your custom css area to override your theme.
.bne-testimonial-slider-wrapper .bne-testimonial-description { color: #333; } .bne-testimonial-slider.bne-flexslider .flex-direction-nav li a { background-size: inherit; }Forum: Plugins
In reply to: [BNE Testimonials] Sidebar Testimonials Excess HeightSure… use the form on my website, http://www.bnecreative.com/contact/
Forum: Plugins
In reply to: [BNE Testimonials] Sidebar Testimonials Excess HeightCan’t really give a full answer without seeing the source code. There are two possibilities: 1) The testimonial slider is set to smooth=”false” which will make the overall size be that of the longest testimonial in the chain. Setting smooth=”true” will resize the height for each one. 2) Your theme or another plugin may be overriding a class that the testimonial slider also uses. If it’s possible to provide a link, then I can give you a more definitive answer.