Japracool
Forum Replies Created
-
I was having the same question, any idea?
Forum: Plugins
In reply to: [Meta pixel for WordPress] URL BlockedThank you @facebook! Solved ??
Forum: Plugins
In reply to: [Meta pixel for WordPress] URL BlockedI just called with one of their staff from Meta Pro Team and yes, they aware with this issue. Now they’re trying to escalate this issue to their technical team and will tell me ASAP once this issue solve.
Yes, solved. Thank you @benjirahmed!
Sorry for the late reply..
Forum: Plugins
In reply to: [Click to Chat - HoliThemes] Conversions on Google AdsHi @bhvreddy
I was wondering, for the current version. Do I still need this code between <head></head> tags?
<!-- Global site tag (gtag.js) - Google Ads: XXXXX --> <script async src="https://www.googletagmanager.com/gtag/js?id=XXXXX"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'AW-XXXXX'); </script> <!-- Event snippet for WhatsApp conversion page In your html page, add the snippet and call gtag_report_conversion when someone clicks on the chosen link or button. --> <script> function gtag_report_conversion(url) { var callback = function () { if (typeof(url) != 'undefined') { window.location = url; } }; gtag('event', 'conversion', { 'send_to': 'AW-XXXXX/XXXXX', 'event_callback': callback }); return false; } </script>
Or I can just remove it?
Forum: Plugins
In reply to: [Yoast SEO] Show Tags in Search Results?^yes, the tag URLs are still on Google SERP but my keywords ranking do not point to the tag URLs anymore. They are pointing to the correct articles ??
So yeah, it solved ??
Forum: Plugins
In reply to: [Yoast SEO] Show Tags in Search Results?Nope, it does not resolve my issue. You can check here. The tag URLs still on Google SERP ??
Forum: Plugins
In reply to: [Yoast SEO] Show Tags in Search Results?Yes, I think it resolved my issue.
22 May 2021
2 of my keywords pointed to tag pages26 May 2021
2 of my keywords pointed to other pagesForum: Plugins
In reply to: [Yoast SEO] Show Tags in Search Results?@devnihil I set “NO” on May 10, 2021. That’s the problem (too long)…
Should I resubmit sitemap on Google Webmasters?
Forum: Plugins
In reply to: [Click to Chat - HoliThemes] Conversions on Google Ads^I think my code above worked
I tried to click my on ads 2 days ago and Google recorded my conversion
Forum: Plugins
In reply to: [Click to Chat - HoliThemes] Conversions on Google AdsThank you @bhvreddy
1 last question, here’s my complete code in <head></head>
<script async src="https://www.googletagmanager.com/gtag/js?id=AW-xxxxxxxxx"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'AW-xxxxxxxxx'); </script> <script> document.addEventListener("DOMContentLoaded", function(event) { var elements = document.querySelectorAll('[href*="wa.me"],[href*="tel:"],[href*="mailto:"]'); for (var i = 0; i < elements.length; i++) { elements[i].addEventListener("click", function(event) { gtag('event', 'conversion', {'send_to': 'AW-xxxxxxxxx/bla bla bla'}); }); } }); </script> <script> function gtag_report_conversion(url) { var callback = function () { if (typeof(url) != 'undefined') { window.location = url; } }; gtag('event', 'conversion', { 'send_to': 'AW-xxxxxxxxx/bla bla bla', 'event_callback': callback }); return false; } </script>
The 1st script:
Global Site TagThe 2nd script:
My custom script to track link click for WhatsApp, phone, and emailThe 3rd script:
To track click from your pluginAm I doing it right? Or I should combine script 2 and 3?
Forum: Plugins
In reply to: [Click to Chat - HoliThemes] Conversions on Google AdsHi @bhvreddy,
Can you explain more further for:
please add the gtag scripts, gtag_report_conversion function at the <head> tags as mentioned by google ads.
Do you mean I must edit this code?
<script> gtag('event', 'conversion', {'send_to': 'bla bla bla'}); </script>
I edit into
<script> gtag_report_conversion('event', 'conversion', {'send_to': 'bla bla bla'}); </script>
Something like that?
Forum: Plugins
In reply to: [Click to Chat - HoliThemes] Conversions on Google AdsThank you for the fast response @julianmarin
Right now my code is:
<script> document.addEventListener("DOMContentLoaded", function(event) { var elements = document.querySelectorAll('[href*="wa.me"]'); for (var i = 0; i < elements.length; i++) { elements[i].addEventListener("click", function(event) { gtag('event', 'conversion', {'send_to': 'bla bla bla'}); }); } }); </script>
So should I input your code below it?
- This reply was modified 3 years, 8 months ago by Japracool.
Forum: Plugins
In reply to: [Click to Chat - HoliThemes] Conversions on Google AdsThank you @bhvreddy! I need this feature as well.
By the way @julianmarin, can I know what code do you put between <head></head>?
Thank you @gn_themes. Problem solved.