huubl
Forum Replies Created
-
The issue still exists… You can setup a Bedrock structure/install by following:
https://roots.io/bedrock/docs/installation/
- This reply was modified 3 months, 2 weeks ago by huubl.
Forum: Plugins
In reply to: [No unsafe-inline] Enable style-src base rules without nonceHi @mociofiletto ,
Thank you for your reply!
To minimize the risk of unintended breakages, I’m focusing on a strict CSP for scripts first and excludes styles for now.
The main challenge is the constant appearance of new items that require whitelisting. Some dynamic inline scripts persist after being whitelisted and refreshing the page.
Forum: Plugins
In reply to: [No unsafe-inline] Enable style-src base rules without nonceHi @mociofiletto,
Thanks for your reply. My focus is on a strict policy on scripts, while being more lenient on styles where the risk is lower.
If I understand correctly, the option “inline script mode” applies to both inline scripts as styles?
Unfortunately, I’m unable to provide a URL at this time as I’m currently conducting testing within a local environment.
When will you release a fix?
Forum: Developing with WordPress
In reply to: Add P tag to Post title blockI just stumbled upon this topic and noticed there’s a related issue on GitHub. A workaround has been provided in the comments section:
https://github.com/WordPress/gutenberg/issues/30549#issuecomment-1679376389
- This reply was modified 7 months, 3 weeks ago by huubl.
Hi @jarnovos,
I’m going to unsync the document for the time being.
However, I’ve noticed that the ‘cmplz_document_elements’ filter is working (in the free plugin) when used in a MU-plugin. This filter could potentially simplify the customization of policy sections, don’t you think? Especially if all document elements in the array have named keys, like ‘contact-details-2’ for example:
function mod_cmplz_dynamic_document_elements($elements, $region, $type, $fields) { if (isset($elements['contact-details-2']['content'])) { $elements['contact-details-2']['content'] = 'override contact details HTML'; } return $elements; } add_filter('cmplz_document_elements', __NAMESPACE__ . '\\mod_cmplz_dynamic_document_elements', 99, 4);
- This reply was modified 8 months ago by huubl.
Hi @jarnovos,
I want to replace all contents below “What is a web beacon?”.
What I understand there are 2 ways in the free plugin:
- disabling synchronization
- with str_replace using the ‘cmplz_document_html’ filter
I rather use synchronization, but the str_replace method seems not reliable since the input can change.
With the pro version, can I use ‘cmplz_document_elements’ to override content?
Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] Translation aria-label close buttonHi?@jarnovos, thanks for the estimate!
Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] Translation aria-label close buttonHi @jarnovos,
That helps! Is there ETA on the next release?
I see a new version is released, thanks!
Hi @hesseldejong,
Thanks, any idea when you will release a new version?
Hi @hesseldejong,
Thanks for your fast reply and locating the issue.
I noticed something else when testing. When using?
burst.page_id
?in de console on the blog page (post archive) it returns the ID of the first post. I think in this case it should return 0 or null?Hi @hesseldejong,
The page_id/post_id shows when using
burst.page_id
in de console.I looks like something is going wrong when the data gets insert into the database. When I put
error_log(print_r($data, true ));
before tracking.php#L685 it contains the page_id.Same here..
Just noticed the same issue with axe DevTools. It’s classified as ‘serious’.