• Resolved seantparry

    (@seantparry)


    Hi there,

    I have another website and use a different reviews plugin but have signed up for the Pro version of Testimonials widget as I’m looking for better categorisation / tagging.

    I’ve been trying to replicate the following https://www.wundercleans.com/reviews/ with rating stars / date / category / author – but can’t figure out the shortcode to use. Can you help?

    Thanks
    Sean

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter seantparry

    (@seantparry)

    Hi – can I get a response to this? If it can’t be done, I’ll ask for a refund for the premium widget I purchased.

    I think it should be quite straightforward but I don’t know how to do this. I want rating stars / date / category / author to be shown for each review.

    Plugin Author saurabhd

    (@saurabhd)

    Hi

    I’m really sorry about the trouble.

    I have sent a response through our premium support service desk. Please check and let me know if the issue is resolved else don’t hesitate to write us again on the same to get premium support within one business day.

    Plugin Author saurabhd

    (@saurabhd)

    As discussed in our premium thread we have added this below filter to add date just underneath the Location and name.

    add_filter( 'tw_cite_html', 'tbs_twp_cite_html', 10, 3 );
    function tbs_twp_cite_html( $cite, $testimonial, $atts ) { 
       $post = get_post( $testimonial['post_id'] );
       $the_date = mysql2date( get_option('date_format'), $post->post_date );
       if ( ! empty( $the_date ) ) $cite .= ' <br/>' . $the_date;
         return $cite; 
    }

    Marking resolved this ticket.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Looking to replicate this template’ is closed to new replies.