JohnBoone
Forum Replies Created
-
Forum: Plugins
In reply to: [Mollie Payments for WooCommerce] Woocommerce Offline PaymentsThe issue is not happening in “blocks” mode but It’s happening with the “legacy” ajax fragment update (?wc-ajax=update_order_review) which points to this check ->
!wp_doing_ajax()I just wasted 2 hours of my time …
Forum: Plugins
In reply to: [Mollie Payments for WooCommerce] Woocommerce Offline PaymentsHere is a proposed fix:
$notInCheckoutOrPayPage = $isWcApiRequest || !doing_action('woocommerce_payment_gateways') || (!$isCheckoutPage && !$isOrderPayPage);Forum: Plugins
In reply to: [Mollie Payments for WooCommerce] Woocommerce Offline PaymentsHey,
I’m having the same issue.
It is coming from MaybeDisableGateway class, line 59 here:
$notInCheckoutOrPayPage = $isWcApiRequest || !doing_action('woocommerce_payment_gateways') || !wp_doing_ajax() && !$isOrderPayPage && !$isCheckoutPage;the $notInCheckoutOrPayPage check is not working as it should. Even though the user is on the payment page, this function says it’s not and disable BACS native method.
Hope that helps !
Merci beaucoup pour votre aide !
Merci pour votre réponse.
Les méthodes Chronopost disponibles dans votre plugin sont:
Chronopost - Livraison express à domicile avant 10 heures
Chronopost - Livraison express à domicile avant 13 heures
Chronopost 13 Fresh
Chronopost - Livraison express à domicile avant 18 heures
Chronopost - Livraison en relais Pickup (2shop)
Chronopost - Livraison en relais Pickup (2shop) en Europe
Chronopost Ambient 13
Chronopost Ambient Relais 13
Chronopost - Livraison à domicile en Europe
Chronopost - Livraison express à domicile en Europe
Chronopost - Livraison Express en point relais
Chronopost - Livraison Point relais DOM TOM
Chronopost - Livraison point relais Europe
Chronopost - Livraison à domicile le jour mêmeJe parle spécifiquement des méthodes de livraison Chrono 18 (livrées à domicile avant 18H)
Chronopost propose les produits Chrono 18 Fresh, Chrono 18 Freeze et Chrono 18 Ambient.
Je ne vois pas les méthodes Chrono 18 Fresh et Chrono 18 Freeze dans les options de votre module.
Ai-je raté quelque chose ?
Très bien, merci.
Forum: Plugins
In reply to: [WooCommerce] Automatic email sending doesn’t work anymoreI’ve got the exact same issue with 5.0/5.1, reverting to 4.9.2 fixes it so I don’t think we should be looking in any other directions than Woocommerce.
Hey,
Have you had a chance to look into this issue ?
I checked your latest version 4.6.4, nice job on integrating the admin panel in the native Woocommerce dashboard, it looks very good and is much more user friendly!
Thanks
I confirm that the fields are now in the right order. Thank you!
Forum: Plugins
In reply to: [Contact Form 7] Not Showing Success MessageI encountered this issue but in my case this was related to PHP warnings being sent back along with CF7 json response.
Warnings are related to CF7 plugin itself, e.g. “Missing argument 3 for wpcf7_special_mail_tag()”.
I made sure all warnings are disabled in WP and it fixed the issue.
This is what I added to wp-config.php file :
ini_set('display_errors','Off'); ini_set('error_reporting', E_ALL ); define('WP_DEBUG', false); define('WP_DEBUG_DISPLAY', false);- This reply was modified 7 years, 11 months ago by JohnBoone.
Forum: Plugins
In reply to: [Compliance by Hu-manity.co] Cookie notice and MonsterInsightsThe following snippet will make Monsterinsights plugin aware of the choice users made through the Cookie Notice plugin. Just add it to your functions.php file.
add_action( 'init', 'set_monsterinsight_cookie_according_to_cookie_notice' ); function set_monsterinsight_cookie_according_to_cookie_notice() { if ( function_exists( 'cn_cookies_accepted' ) && function_exists('monsterinsights_get_ua')) { if ( cn_cookies_accepted() ) { setCookie( 'ga-disable-'.monsterinsights_get_ua(), 'false' ); }else{ setCookie( 'ga-disable-'.monsterinsights_get_ua(), 'true' ); } } }Forum: Plugins
In reply to: [Jigoshop] Error 404 not found in checkoutAdditional information about the problem: This problem only happens when the cart is empty. Prior to the upgrade, when the cart was empty, I was automatically redirected to the cart page but this redirection doesn’t take place any more.
Forum: Plugins
In reply to: [Jigoshop] Error 404 not found in checkoutSame problem here. I upgraded Jigoshop from version 1.4.9 to version 1.6.5. I’m running wordpress 3.5.1 and since the Jigoshop upgrade I am unable to access the checkout page. When I click the checkout url, I’m redirected form /checkout to /checkout/20/20 and get a 404 page not found error.
Does anybody know why this is happening and how can we resolve this issue?
Look at this post.
If this doesn’t fix completely the issue, try adding the [raw][/raw] tag around the Theme My Login shortcode.
Great, I’ve put that on my to-do list, hopefully I should be able to get it done within a week.