Viewing 4 replies - 1 through 4 (of 4 total)
  • @tshop,

    Did you see the Tracking Parameters box at the bottom of the Email Settings tab in Subscribe2->Settings?

    Thread Starter tshop

    (@tshop)

    isn’t this just for the {PERMALINK}? As I need to add it to {TITLE} as well.

    @tshop,

    Is this for per-post emails? If so you’ll need to find the following line in the classes/class-s2-core.php file:

    $this->post_title = '<a href="' . get_permalink( $post->ID ) . '">' . html_entity_decode( __( $post->post_title ), ENT_QUOTES ) . '</a>';

    And change it to:

    $this->post_title = '<a href="' . $this->get_tracking_link( get_permalink( $post->ID ) ) . '">' . html_entity_decode( __( $post->post_title ), ENT_QUOTES ) . '</a>';

    Thread Starter tshop

    (@tshop)

    This code worked.

    Thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘subscribe2 query string’ is closed to new replies.