It looks like this plug-in hasn’t been updated in quite some time. It is causing a notice, “Notice: The called constructor method for WP_Widget in TBTestimonialsWidget is deprecated since version 4.3.0! Use __construct() instead. in /site/wp-includes/functions.php on line 3893”.
]]>Hello TB.
I thought I’d ask about limiting the content length of the testimonial. I’ve been at it for about an hour around line 285 in tbtestimonials-widget.php but the output is printf’ed. Var_dumping it outputs it cleanly also. Is there any way to get a hold of the content part to limit its character length?
Thanks again for your time.
]]>Calling tbtestimonial() before the post content is output causes the testimonial content to be output instead of the post content.
After the closing of the while( $q->have_posts() )
loop in that function it should call wp_reset_query()
to repopulate the main page query.
I am trying to get the testimonials to rotate but without success.
Cheers
]]>when i select the options I want in the pop up menu and hit Insert Shortcode the pop up menu turns blank except for the number 0.
Can this plugin add a speech bubble effect to the testimonials?
]]>I am using shortcode with single testimonial ID. After that I have a code another custom query. But, shortcode query cause issue to another next as there is no reset code added after calling single post query after line#461 in tb-testimonials.php.
else # single testimonial
{
if( ! is_numeric( $id ) ) return;
$q = new WP_Query( array( 'p' => $id, 'post_type' => $this->post_type, 'post_status' => 'publish' ) );
if( $q->have_posts() )
{
$return = '';
while( $q->have_posts() )
{
$q->the_post();
$return .= $this->prepare_testimonial( is_null( $template ) ? 'shortcode' : $template );
}
wp_reset_query(); // This reset is required.
return $return;
}
else
return;
}
]]>
I’m on a page. I click inside the body text area to add a single testimonial, or all of them. I click the “Add a testimonial to your post” button. When I click the blue Insert Shortcode button, the only thing I see in that little box is a zero.+ I’ve tried deactivating various plug-ins, activating WordPress’ twenty fourteen theme. Nothing seems to work.
Can anyone offer any advice?
Thanks!
Cameron
This is regarding below thread.
I would like to add city and country in place of site url and company name.
It will be a great help. If you can provide something like below:
https://www.dropbox.com/s/pzcbsapb89ipnvm/Write%20testimonials.JPG
Regards,
Harsh
Is this plugin still being developed? Seems to be a while since last update and version compatibility as (3.6.1) listed here is ageing.
]]>Hello,
This morning, I moved this site to a new server, and once the dns settings resolved, none of the testimonials on the site appeared, either on the page that displays all via a shortcode, or from sidebar widgets.
I found that the issue this morning was that the output templates disappeared. When I go to the Templates tab of the Output templates, there are three empty textareas. There are no titles or descriptions, just a “Delete template” link. When I click the delete link, nothing happens.
I temporarily fixed the issue by copying the templates from our dev site to the live site. I found that I couldn’t name them the default names — it appeared to save, but nothing was updated on the templates tab. So, I had to give them new names. Then I updated my shortcode and widgets to use the new template names.
When we move sites, we use the Migrate DB plugin. This plugin does a find and replace for all URLs and server directories, then generates a SQL script.
Can you tell me how to delete these empty templates? And if there is something else I can do to make server migrations work in the future? Thanks so much for any help or suggestions you can provide.
]]>Can we have the widget such that it slides up 1 item at a time, no matter how many Display Count we have.
Say I am showing 4 testimonials at a time, I clicked the ‘Loop through all testimonials’ option too. Now what I want is that it slides up 1 testimonial at a time like this.
Thanks.
]]>Can we add a “View all” link at the bottom of the widget?
]]>Hi,
I’ve made my own testimonial.php and that renders the output-templates useless. I’ve tried many options to echo the input from these custom field:
tbtestimonial_company
<?php echo "Organisatie: ".get_post_meta($post->ID,'tbtestimonial_company', 1); ?>
also tried:
<?php echo "Organisatie: ".get_post_meta($post->ID,'tbtestimonial_company', true); ?>
<?php the_meta(); ?>
does output:
tbtestimonial_company: *******************
Do you have a suggestion for me?
My code is:
<?php
/**
* The Template for displaying a single Testimonial.
*
* @package WordPress
* @subpackage Twenty_Ten
* @since Twenty Ten 1.0
*/
get_header(); ?>
<?php get_sidebar('left'); ?>
<div id="container">
<div id="content" role="main">
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php
if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it.
the_post_thumbnail(article_large);
}
?>
<h1 class="entry-title"><?php the_title(); ?></h1>
<div class="entry-content">
<?php the_content(__( 'Read More', 'twentyten' ) ); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
</div><!-- .entry-content -->
</div><!-- #post-## -->
<?php echo '<p>' . get_post_meta($post->ID, 'tbtestimonial_company', true) . '</p>'; ?>
<?php endwhile; // end of the loop. ?>
<div style="width:100%; text-align:center;"><a href="#bttop">Back to top ↑</a></div>
</div><!-- #content -->
</div><!-- #container -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
and the part that is not showing:
<?php echo '<p>' . get_post_meta($post->ID, 'tbtestimonial_company', true) . '</p>'; ?>
How do I make it work? ??
]]>How do I remove the featured image and testimonials title? I’m using TBT as a shortcode on my home page and don’t want the featured image to show or the title of the section, which by default says Testimonials. Please help. Thanks.
]]>Hi
Plugin load some contents other than testimonial post in some pages. it works fine in front page and all other page of the site , the issue is only in one page where i list the evnts created by using events-manager plugin. In that page it loads events instead of testimonial
https://www.ads-software.com/extend/plugins/tb-testimonials/
]]>Hey Travis,
Where do I find the NUMERIC_ID for a testimonial? I’m trying to output a specific testimonial, but I’m not sure where to find the NUMERIC_ID for that testimonial.
Can you shine a light on this for me? Thanks!
https://www.ads-software.com/extend/plugins/tb-testimonials/
]]>I’m trying to write a PHP function where an IF condition checks if the current post is a TB-Testimonial, like a “is_page” or “is_single”. Is there a testimonial-specific conditional tag that would assist me in defining this condition?
Thanks
https://www.ads-software.com/extend/plugins/tb-testimonials/
]]>How to call Company Name Company URL and Email through php code in my custom theme please help me how i can.
please write the php code for custom php theme,
Thanks
Figar
https://www.ads-software.com/extend/plugins/tb-testimonials/
]]>Hello,
I attempted to move my production site down to my local and my testimonials stopped working (I’m using the widget as well as the shortcodes in various places) on the front side of the site. I looked and all of the text information is available in the editor so the database didn’t seem to lose anything. After checking a ton of other stuff I finally happened upon the Output Template admin screen and noticed that they all appeared blank. I tried to recreate the default templates but nothing would save. I really would like to fix this but haven’t been able to track down an error that might point me in the direction of the real problem which is why I’m turning to you for support. I’m running version 1.7.2 which I believe is the current version.
Thank you
https://www.ads-software.com/extend/plugins/tb-testimonials/
]]>I think I might have a javascript error? Not sure how to enable java script for this plugin. When I have the widget on my sidebar it just shows up blank
https://www.ads-software.com/extend/plugins/tb-testimonials/
]]>I have three testimonials, displaying correctly via the widget.
However, the company_name does not show after author.
My output template for widgets is:
<p class="testimonial-content">{{ testimonial_excerpt }}</p>
<p class="testimonial-author">{{ author }}, {{ company_name }}</p>
The widget has display count 1, loop through all.
Using:
Wordpress 3.5.1
TB-Testimonials v1.7 new install (not installed before)
Thanks
https://www.ads-software.com/extend/plugins/tb-testimonials/
]]>Just updated to version 1.7 and got this warning, and and testimonials do not display:
“Warning: array_key_exists() expects parameter 2 to be array, string given in /home/xxxxxxx/public_html/wp-content/plugins/tb-testimonials/tb-testimonials.php on line 559”
Rolling back a version until it’s fixed.
Thanks
https://www.ads-software.com/extend/plugins/tb-testimonials/
]]>Hi there,
Could you please provide me with the default templates for this plugin?
I’m currently using the following in my widget template, however they are not rotating;
‘<div class=”testimonial type-bubble size-small”>
<div class=”inner”>
<p>{{ testimonial }}</p>
<div class=”meta helper”>”</div>
</div>
<p class=”meta”>
{{ author }}
</p>
</div>’
I’m pretty sure I may have missed out some form of list?
Please see https://www.sdm-group.com/ at the footer for the widget.
Any help would be appreciated.
Thanks
https://www.ads-software.com/extend/plugins/tb-testimonials/
]]>Hi. You have definitely one of the best testimonial plugins!
Is there a way to turn off Ajax rotation in the widget? — I.e., to just show static items.
Thanks.
https://www.ads-software.com/extend/plugins/tb-testimonials/
]]>this is a friendly warning and request for either documentation update or fixing by plugin maintainer
if you import the plugin from a wp.org download into a git repo be aware that in most cases the folder wp-content/plugins/tb-testimonials/inc/tbar/ will not neccesarily be included in your git commit and subsequent pulls/clones/deploys of the git repo
this is because it is also a git repository, the solution in my case is to always delete the .git folder within that directory before adding the files and committing them to git but its frustrating that this folder is even included in the archive in the first place without some kind of notice in documentation
https://www.ads-software.com/extend/plugins/tb-testimonials/
]]>Installed TB Testimonial and I can’t find a way to adjust the height of widget in the sidebar. I am using excerpt text but the text hangs down into the next widget in the bar. How do you define the area in the sidebar that TBT uses?
https://www.ads-software.com/extend/plugins/tb-testimonials/
]]>Hi
How can i manage to display all my testimonial in several pages ; In fact, my site dispay olny the lasts testimonials and not ‘next page’ ‘older page’ to see the other one
Thanks !
https://www.ads-software.com/extend/plugins/tb-testimonials/
]]>Hi,
I’ve made my own testimonial.php and that renders the output-templates useless. I’ve tried many options to echo the input from these custom fields:
tbtestimonial_company_url
tbtestimonial_company
<?php echo get_post_meta( $post->ID, ‘tbtestimonial_company_url’, 1 ); ?>
<?php echo “Organisatie: “.get_post_meta($post->ID,’tbtestimonial_company’, 1); ?>
also tried TRUE.
<?php the_meta(); ?>
does output:
tbtestimonial_company_url: https://www**************
tbtestimonial_company: *******************
Do you have a suggestion for me?
thanks (and best wishes)
Tanja
https://www.ads-software.com/extend/plugins/tb-testimonials/
]]>Hi, great little plugin this is, however I can only get it to work in a plain vanilla wordpress installation thats uses twenty-eleven theme.
On my other wordpress installation that uses a downloaded theme from elsewhere, the shortcode [testimonial] is perhaps conflicting with a shortcode within the theme, so, how can I go about changing the shortcode name, to perhaps [tb_testimonial] instead ? Ive tried editing the following line within tb-testimonials.php, but it has no effect.
add_shortcode( ‘testimonial’, array( &$this, ‘shortcode’ ) );
When I create a new page and add the shortcode to it within the WYSIWYG editor, and preview the page, it merely shows the shortcode code so its not hooking up.
Also, within the testimonials admin area, when I want to preview a testimonial, Im getting a 404 error. I have permalinks switched on and am using the Post name setting (/%postname%)
Any info much appreciated
https://www.ads-software.com/extend/plugins/tb-testimonials/
]]>I find the addition of Tbar incredibly objectionable in a .org repo plugin. A link back to the author is fine, but adding a freaking menu to the WP Admin bar soliciting work that is on by default is way overboard.
I don’t know if I’m more bummed or offended by it… It’s your plugin, but you just ruined my fav Testimonal Plugin and all trust I had in you as a plugin author.
Rolling back to 1.6.1 until I can migrate to something else…
https://www.ads-software.com/extend/plugins/tb-testimonials/
]]>