daomapsieucap
Forum Replies Created
-
Hi @skellner,
Apologies for the delay. We’ve just released version 4.0.12, which fixes this issue. Could you please try the latest version?
Hi @robbertsturdy,
We apologize for the unexpected bug caused by the plugin. We’ve just released version 4.0.12, which addresses this issue. Could you please update to the latest version?
Forum: Plugins
In reply to: [Support For Icomoon with Advanced Custom Fields] Doesn’t work at allHi @rodricus,
Could you upgrade the plugin to the latest version (v4.0.10)? Just because the previous version had issue with custom json path and it was fixed here: https://github.com/viivue/acf-icomoon/issues/12.
If it doesn’t work, could you send the JSON file and some screenshots of the issue so we can check?
Forum: Plugins
In reply to: [Support For Icomoon with Advanced Custom Fields] php 8.1 deprecation notice@jasperts I think the plugin you used is a different plugin from ours.
Github link of the plugin you used: https://github.com/jameelmoses/acf-icomoon.
And our Github link: https://github.com/viivue/acf-icomoonHi @vimalroy08,
Sorry for the late reply. I’ve tested on my site with WPML installed and it’s working properly as you can see in the screenshot.
We do have an issue with
Selection.json
option which didn’t work. Could you try to use the latest version on our GitHub and check if it’s fixed?In case it doesn’t work, could you provide more information about your site like WordPress version, WPML version so I can re-produce this issue?
Thanks!
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] PHP 8.1 compatibilityHi @yordansoares,
I’ve uploaded the SVG here: https://filebin.net/ye11k7za89oinf15. Thanks for the quick response.
Forum: Plugins
In reply to: [WooCommerce] Login error message not showing on checkout pageThanks for the quick response, I have more times to test the site and I confirm that it’s my fault .
I used Gravity Forms plugin and added this code to detect whether Gravity Forms exists:
/** * Dequeue Gravity Forms Recaptcha for unused pages v1.1 */ add_action('wp_enqueue_scripts', 'dc_dequeue_recaptcha_scripts', 999); function dc_dequeue_recaptcha_scripts(){ global $post; $post_content = $post ? $post->post_content : ''; if($post_content){ $post_content = apply_filters('the_content', $post_content); if(strpos($post_content, 'gform_wrapper') === false){ wp_dequeue_script('gforms_recaptcha_recaptcha'); } } }
As you can see I called
apply_filters('the_content', $post_content)
to check the content, that’s why all the session notices are cleared before it display on checkout page (and the other pages I think).I removed this hook and everything works properly. Thanks for the support.
Hmm, OK, I think your solution is better. I will update my editor-style.css.
Just because I use the code for custom fonts from the beginning and I’ve just realized that it doesn’t work for my recent projects.
Thanks for the solution.