Forum Replies Created

Viewing 1 replies (of 1 total)
  • Thread Starter davidr314

    (@davidr314)

    Hi Dora,
    I’m using the theme Gonzo. I was able to get everything to work by taking out the “r\n\” in the $value section of the plugin code (although I know this isn’t ideal for when there are plugin updates):

    Replaced:

    $value = “Google Analytics information: \r\n\r\n ——————————————–\r\n”;
    $value .= “Campaign Source: “.$campaign_source.”\r\n”;
    $value .= “Campaign Name: “.$campaign_name.”\r\n”;
    $value .= “Campaign Medium: “.$campaign_medium.”\r\n”;
    $value .= “Campaign Term: “.$campaign_term.”\r\n”;
    $value .= “Campaign Content: “.$campaign_content.”\r\n\r\n”;
    $value .= “First visit: “.$first_visit.”\r\n”;
    $value .= “Previous visit: “.$previous_visit.”\r\n”;
    $value .= “Current visit: “.$current_visit_started.”\r\n”;
    $value .= “Times visited: “.$times_visited.”\r\n”;

    with this:

    $value = “Campaign Source: “.$campaign_source.” —- Campaign Name: “.$campaign_name.” —- Campaign Medium: “.$campaign_medium.” —- Campaign Term: “.$campaign_term.” —- Campaign Content: “.$campaign_content.” —- First visit: “.$first_visit.” —- Previous visit: “.$previous_visit.” —- Current visit: “.$current_visit_started.” —- Times visited: “.$times_visited;

Viewing 1 replies (of 1 total)