huubl
Forum Replies Created
-
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 1 year 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’.
Forum: Plugins
In reply to: [Delete Post with Attachments] Doesn’t work with custom post typeI’m experiencing the same issue here
Forum: Plugins
In reply to: [Enable Media Replace] How to Disable Background Removal FeatureLooking for this too
Thanks, build what I needed using
get_option('rank-math-options-titles');
!But consider implementing a public function that makes it easier to get and set data programmatically.
- This reply was modified 2 years, 6 months ago by huubl.
Hi,
I want to display the opening hours in a different way than the shortcode [rank_math_contact_info] does, plus I want to check and show if the place is open or not.
@rankmathteam I don’t have a Analytics Account connected, and not seeing that option.
I added this to my function.php for now:
/** * Remove upsell banner Rank Math */ function remove_upsell_banner_rank_math() { wp_dequeue_style( 'rank-math-analytics-stats'); wp_deregister_style( 'rank-math-analytics-stats'); wp_dequeue_script( 'rank-math-analytics-stats'); wp_deregister_script( 'rank-math-analytics-stats' ); } add_action('wp_enqueue_scripts', 'remove_upsell_banner_rank_math', 99);