In order track click on your website as conversion How add Following Google Ads Code in plugin
please help me. where to edit this code in plugin setting. Are this setting available to free user also?
Add the code to a button: This code shows you how to add click tracking functionality to a button using the <button> tag. In the code below, replace “http://example.com/your-link” with the destination URL of your link or “800-123-4567” with the phone number on your website.
<button onclick="return gtag_report_conversion****('http://example.com/your-link')">Submit</button>
or
<button onclick="return gtag_report_conversion('tel:800-123-4567')">Call now!</button>
Add the code to a button image: In the code below, replace “download_button.gif” with your button image, replace the width and height with your button’s parameters, and replace “http://example.com/your-link” with the URL for your link or “800-123-4567” with the phone number on your website.
<img src="download_button.gif" alt="Download Whitepaper"
width="32" height="32"
onclick="return gtag_report_conversion('http://example.com/your-link')" />
or
<img src="call_button.gif" alt="Call now!"
width="32" height="32"
onclick="return gtag_report_conversion('tel:800-123-4567')" />