Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter Frank S

    (@frankswebsites)

    Turns out there was a hidden character in the IP address which resulted in the error notification.

    Resolved with help of a kind moderator!

    Thanks & regards,
    – Frank

    Thread Starter Frank S

    (@frankswebsites)

    Hi there Evan,

    Thanks for the support! We created the groups now and I am sure they will be visible on the front-end if that is what you are saying.

    What we are looking to do, is track who filled out which form. So we would like to be able to add a field under water or a setting in the background which makes the subscriber a member of a certain group, segment, or even just place a “yes” in a custom field. Can we do one of these with your plugin?

    Thanks,
    – Frank

    Thread Starter Frank S

    (@frankswebsites)

    Thanks for the reply guys, I have alerted my hosting provider, DreamHost. Will come back to this thread once I know more.

    Frank S

    (@frankswebsites)

    Hi Hal and others,

    I had a problem getting the shortcode to display the testimonials in a excerpt fashion, using for example [testimonial_rotator id=690 show_size=excerpt limit_length=265]

    Based on Testemonial Rotator Version 1.3.7 I got it to work.
    Not sure if this is the best solution since I am not an experienced developer, but this worked for me. I’m open to feedback from the pro’s ??

    Modification 1 to testimonial-rotator.php:
    Adding this line at the first section of function testimonial_rotator($atts)
    $show_size = isset($atts['show_size']) ? $atts['show_size'] : "";

    Modification 2 to testimonial-rotator.php:
    Replacing this part to function testimonial_rotator($atts)
    $postcontent=apply_filters( 'the_content', get_the_content() ) ;

    with

    if ($show_size == "excerpt") {
      $postcontent=apply_filters( 'the_content', get_the_excerpt() ) ;
     }
     else {
      $postcontent=apply_filters( 'the_content', get_the_content() ) ;
    }

    Hope this helps people out!

    Would much appreciate it if a solution like this is included in the next version of the plugin.

    Thanks,
    – Frank

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