• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: Identify Google Ads Cookie?

Identify Google Ads Cookie? 2 years 10 months ago #42077

Hello!

We use Google Ads and want to identity contact forms that were triggered by these.

Till now I used a Hidden Field called "action" with this code to read the CLID-Parameter:
//<code>
if (JRequest::getVar('aktion') != '')
	{
		 $aktion_value = JRequest::getVar('aktion');
		 return $aktion_value;
	}
else
	{
			if (JRequest::getVar('gclid') != '')
			{
				return 'Adwords';
			}
			else
			{
				return 'Kontaktanfrage';
			}
	}
//</code>

but this parameter is often lost on the way.

How do I check if the Google Ads Cookie is set?
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!