I am using Google Adwords to push and track subscriber acquisitions on my site, but can not get the conversion reporting to work.
Here is my setup.
My subscribe form is dynamically loaded on my subscribe page by a Wordpress plugin I created. After validation the form is replaced with a thank you message with php, so the user is not redirected to a confirmation page. Because of this, I think I need to check for the output of a conversion value to get Adwords to report.
I have followed the adwords help docs and have made the reporting a "purchase/sale" tracking so I can test for the conversion_value variable.
Here is my plugin code that outputs the thank you message.
//****[ Variable Conversion Value For Google AdWords]****
$variableConversionValue = <h3 class="subscribeConfirm">Thanks for signing up!</h3> ;
//****[ After writing subscriber data, display thank you message****
echo $variableConversionValue;
Here is my Adwords Tracking (did not include generic tracking code) that is on my subscribe page (is a php page, but the tracking in not contained within php tags).
if (<? echo $variableConversionValue; ?>) {
google_conversion_value = <? echo $variableConversionValue; ?>;
}
Can you please help me get the reporting to work? Thanks!