djeah
Forum Replies Created
-
Hi @aahulsebos,
Did you check and find something?
Hi,
This has been fixed.
ThanksHi @aahulsebos ,
Yes, I do see that the toggle button is enabled in the Integrations for both, Elementor and WP Rocket.
Elementor: Version 3.1.4
Elementor Pro: Version 3.2.1Similar problem to the link you provided!
Currently this is the only thing preventing me from using this. The reason being that I want to avoid any copyright for sharing any images to Pinterest that does not belong to me. And excluding a large number of images is a very tiring effort 🙂
Further:
When I deactivated Wp-Rocket, this is working without any issue.
Also when I keep Wp-Rocket active but disable Complianz, it is working properly.I suspect that the cookie plugin Complianz and Wp-rocket together do not work well due to a conflict issue.
Can you please provide a solution to get this to work?
Forum: Plugins
In reply to: [Lazy Loader] image in footer tag not lazy loadedHi,
Yes, I updated. Thanks a lot for your efforts!
Forum: Plugins
In reply to: [Lazy Loader] PDF file in iframe not lazy loadedHi,
Yes, the native lazy load was the problem. It is working fine now. Thanks.
Forum: Plugins
In reply to: [Lazy Loader] image in footer tag not lazy loadedThanks
Forum: Plugins
In reply to: [Lazy Loader] image in footer tag not lazy loadedHi. I tested it on my site. It works! I will wait for the official update !
Forum: Plugins
In reply to: [Lazy Loader] Set loading thresholdGot
Forum: Fixing WordPress
In reply to: Reorder and resize comments formAchieved it using the below :
.wp-caption-text{text-align:center;font-size:14px}selector img{border:11px solid #fff;box-shadow:5px 5px 15px grey;margin:25px 0 5px 0}Forum: Fixing WordPress
In reply to: Reorder and resize comments form@tobifjellner Thanks! I am not a UI developer, but managed to get the responsiveness working using the code you mentioned like this:
.comment-form-author{ width:49%; display: inline-block; } .comment-form-email{ width:50%; display: inline-block; } @media only screen and (max-width: 600px) { .comment-form-author{ width:100%; } .comment-form-email{ width:100%; } }How do I arrange the subscription and consent checkboxes the same way? It does not take effect when I am using the below code:
add_filter( 'comment_form_default_fields', 'move_comment_field' ); function move_comment_field( $fields ) { $comment_field = $fields['cookies']; unset( $fields['cookies'] ); $fields['cookies'] = $comment_field; return $fields; }Thanks @jamesosborne . One last question. If I setup both GA4 and UA with the same Google Tag Manager container ID, will that work? I see that if I connect only google tag manager, it inserts an iframe on every page.
But the below code is present only on the homepage:
<script>( function( w, d, s, l, i ) { w[l] = w[l] || []; w[l].push( {'gtm.start': new Date().getTime(), event: 'gtm.js'} ); var f = d.getElementsByTagName( s )[0], j = d.createElement( s ), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src = 'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore( j, f ); } )( window, document, 'script', 'dataLayer', 'GTM-XXXXXX );</script>It was just yesterday that I setup a new GA4 analytics as I was using UA. I added the new GA4 using Site Kit Tag Manager. So now I have both UA and GA4 on my site.
One more info is that I recall having specified configurations in the Complianz Cookie plugin following the steps in this URL https://complianz.io/configuring-google-site-kit/ , where I followed the 2nd approach “Google Site Kit will add the Analytics snippet. Complianz handles consent only.”
- This reply was modified 5 years, 2 months ago by djeah.