jkility1
Forum Replies Created
-
Hi,
I am also facing the exact same issue. Clicking on the behavior tab, there is nothing within that to change behaviors etc
Forum: Plugins
In reply to: [Comet Cache] PayPal: This Invoice has already been paid.Hi there,
I’ve checked my server (cPanel/WHM) and we have no server caching in place. The only caching plugin I had running at the time was CC.
I tried Chrome (In Private mode as well) on 2 different machines and payment’s did not go through. One machine was on a VPN and one was not.
Tried different browsers, IE, Firefox and payments go through fine.
However, when CC was enabled, I could not make payments through ANY browser (Private/Incognito mode or not).
Forum: Plugins
In reply to: [Comet Cache] PayPal: This Invoice has already been paid.Hi
I’ve made a payment this morning which has gone through completely fine and that’s on Chrome and another machine.
If I want to use CometCache but avoid this issue with PayPal etc, is that possible?
Forum: Plugins
In reply to: [Comet Cache] PayPal: This Invoice has already been paid.Hi There,
I’m using a whole list of plugins. However I asked this exact same question on a Facebook group and had quite a long conversation which you can find here: https://www.facebook.com/groups/advanced.woocommerce/permalink/1725666660781079/
I tried a whole heap of things and Chrome did not help! But I’m pretty certain that CometCache is to blame on this one :/
Had exactly the same issue. Ended up disabling the plugin until a fix can be found.
Forum: Plugins
In reply to: [WooCommerce] Error 500I do believe I have now found a root cause. After disabling addons 1-by-1 and testing. Disabling “WooCommerce MailChimp Integration” got rid of the Error 500 I would encounter
Also I was having a problem with WooCommerce Follow-up emails. I have enabled that an the error 500 occurs how after disabling it gets rid of the error 500 too.
How ever, adding the following code at the end of my functions.php theme file still causes a error 500 which I’m not sure about. However the Error 500 only occurs in the admin panel and not on the front page.
/* Minimum Order amount */ add_editor_style( 'custom-editor-style.css' ); } add_action( 'admin_init', 'handy_theme_add_editor_styles' ); add_action( 'woocommerce_checkout_process', 'wc_minimum_order_amount' ); add_action( 'woocommerce_before_cart' , 'wc_minimum_order_amount' ); function wc_minimum_order_amount() { // Set this variable to specify a minimum order value $minimum = 4.97; if ( WC()->cart->total < $minimum ) { if( is_cart() ) { wc_print_notice( sprintf( 'You must have an order with a minimum of %s to place your order, your current order total is %s.' , wc_price( $minimum ), wc_price( WC()->cart->total ) ), 'error' ); } else { wc_add_notice( sprintf( 'You must have an order with a minimum of %s to place your order, your current order total is %s.' , wc_price( $minimum ), wc_price( WC()->cart->total ) ), 'error' ); } } }Forum: Plugins
In reply to: [WooCommerce] Error 500I forgot to add that I enabled Debugging, recreated the fault and instead of seeing a error 500 message it was just a blank white screen with no information being displayed
Forum: Plugins
In reply to: [WooCommerce] Stock Status does not change when Stock quantity is 0bump