Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Found

    (@found)

    Hi davidr314,

    Can you please let me know what theme you are using. I had this issue reported by another user and we worked out it was his theme’s fault.
    It might be the same thing here, so we should be able to provide you an easy fix.

    Thanks,
    Dora

    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;

    Plugin Author Found

    (@found)

    Hi davidr314,

    That is the fix i’m afraid. Your theme must be adding a filter to beautify html tags, and that is causing the issue. I solved it the exact way.

    Thanks,
    dora

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Not showing submit button on contact form’ is closed to new replies.