Rahul
Forum Replies Created
-
Forum: Plugins
In reply to: [AMP] Remove noamp=mobile query parameter from the link?As I said, I do not want to remove the “Exit Mobile Version” link entirely. I just want to remove the query parameter from the link. Is that possible?
Thanks.
Forum: Plugins
In reply to: [AMP] Remove noamp=mobile query parameter from the link?Thanks for your response. I got so many issues on Google search console saying “Indexed, though blocked by robots.txt”. I disallowed all query parameters on my robots.txt. But then this “?nonamp=mobile” query is linked on all amp pages pages, which is allowed for indexing.
I know this is not a critical issue, but I need to solve this. I think it is better to remove the query string from the URL to remove this error.@zaidpirwani Did you find a solution for this? I have the same problem. Thanks.
Forum: Plugins
In reply to: [SEOPress - On-site SEO & Analytics] Doesn’t work on Brizy BuilderThank you!
Hi Stuart, Thanks for your reply.
I tested on another clean WordPress installation also. But it is still not working for me.
Can you check my screenshot, please?
https://ibb.co/smqypjQ
https://ibb.co/4phypTt
https://ibb.co/QfhvfhBThank you.
Forum: Plugins
In reply to: [Loco Translate] Some text are not translatingCan you please help?
Hi Matt,
Banned Users and System Tweaks are not enabled yet.
XML-RPC is enabled.
Still not working.Thank you.
Forum: Plugins
In reply to: [Termly - GDPR/CCPA Cookie Consent Banner] GeoIP Detection Not WorkingHi AlwaysEnthusiast,
You can find the list of continent code here.You can add multiple continents like this.
if($countryCode!="EU" || $countryCode!="AS")You can also change the continent code to country code, but you need to replace this code:
$countryCode = $userInfo->continent->code;to
$countryCode = $userInfo->country->isoCode;Forum: Plugins
In reply to: [Termly - GDPR/CCPA Cookie Consent Banner] GeoIP Detection Not WorkingIf the plugin fixes the issue in an update, you can remove that code from functions.php.
Forum: Plugins
In reply to: [Termly - GDPR/CCPA Cookie Consent Banner] GeoIP Detection Not WorkingI agree this is only a temporary fix. But small plugin updates will not affect this. I hope they will fix the space issue soon.
Forum: Plugins
In reply to: [Termly - GDPR/CCPA Cookie Consent Banner] GeoIP Detection Not Working@claymade I’m glad that works for you.
Yes, the file will be replaced when the theme updates.
So use a child theme and place the code inside the child theme’s function.phpForum: Plugins
In reply to: [Termly - GDPR/CCPA Cookie Consent Banner] GeoIP Detection Not WorkingCan you make sure that geo IP plugin is active?
Maybe your friend visits the site before and the cookie might already saved.
To clear that append ?cookie=delete to the end of the website and test.
Like this
https://readmk.com/?cookie=deleteIn my case, my client is in Belgium, and he said that it is popping up there.
Forum: Plugins
In reply to: [Termly - GDPR/CCPA Cookie Consent Banner] GeoIP Detection Not WorkingHow you did the proxy test? Is that efficient?
Forum: Plugins
In reply to: [Termly - GDPR/CCPA Cookie Consent Banner] GeoIP Detection Not WorkingOkay, I added an extra line. Replace previous code with this code.
function hide_cookie_bar() { include_once(ABSPATH .'wp-admin/includes/plugin.php'); if( is_plugin_active( 'geoip-detect/geoip-detect.php' ) ) { $userInfo = geoip_detect2_get_info_from_current_ip(); $countryCode = $userInfo->continent->code; if($countryCode!="EU") { ?> <style> #catapult-cookie-bar{ padding: 0px !important; max-height: 0px !important; min-height: 0px !important; } </style> <?php } } } add_action( 'wp_head', 'hide_cookie_bar' );Forum: Plugins
In reply to: [Termly - GDPR/CCPA Cookie Consent Banner] GeoIP Detection Not WorkingIt is not showing for me on both websites.