Aethon
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Geolocation with page caching support – ONLY on cart/checkoutOK.. I’m trying this :
if ( ! is_cart() && ! is_checkout() ) { //Remove query strings from static resources function ewp_remove_script_version( $src ){ return remove_query_arg( 'ver', $src ); } add_filter( 'script_loader_src', 'ewp_remove_script_version', 15, 1 ); add_filter( 'style_loader_src', 'ewp_remove_script_version', 15, 1 ); // Remove query string from static files function remove_cssjs_ver( $src ) { if( strpos( $src, '?ver=' ) ) $src = remove_query_arg( 'ver', $src ); return $src; } add_filter( 'style_loader_src', 'remove_cssjs_ver', 10, 2 ); add_filter( 'script_loader_src', 'remove_cssjs_ver', 10, 2 ); }
Forum: Plugins
In reply to: [PayPal for WooCommerce] Orders always in pending statusOK… it’s late and I think I’ll continue working better after some sleep.
I’ll go through the process you list on that page and see what happens.
Thanks very much for your help!
Forum: Plugins
In reply to: [PayPal for WooCommerce] Orders always in pending statusI wonder if WPML might be causing issues for me…. Have you heard of any problems with Woocommerce and WPML?
Forum: Plugins
In reply to: [PayPal for WooCommerce] Orders always in pending statusI installed it.. and did a test order. It shows up with the transaction ID. But nothing else happens apart from listing it.
But actually, when I click on it.. there is a section that says “Extending PayPal IPN for WordPress”. Could I put code in there to trigger conversion to “complete”?
Forum: Plugins
In reply to: [PayPal for WooCommerce] Orders always in pending statusOK.. so PayPal IPN for WordPress is a separate plugin? If I install that, I can then trigger the php code you showed me?
Forum: Plugins
In reply to: [PayPal for WooCommerce] Orders always in pending statusBy the way, I’m using the Paypal for Woocommerce plugin. And have set up the IPN within it. Shouldn’t this already automatically update on payment?
Forum: Plugins
In reply to: [PayPal for WooCommerce] Orders always in pending statusOK.. I tried it as a must-use plugin and it didn’t work.
Forum: Plugins
In reply to: [PayPal for WooCommerce] Orders always in pending statusHi @angelleye, can I add that php script to a must-use plugin instead so I don’t have to re-add it with each theme update?
- This reply was modified 7 years, 4 months ago by Aethon.
Forum: Plugins
In reply to: [PayPal for WooCommerce] Orders always in pending statusI’m using the latest version, and I have IPN set up, but it doesn’t update and remains at Pending even after payment.
Actually, the Pending Payment remains even after a day. ??
Well, I made the Inventory Hold Time blank… and I’ve received notice of payment through PayPal, so why haven’t I received the order receipt from WooCommerce? And why does the order still show as Pending Payment almost 30 minutes later?
I read online that this would be fixed by removing the Inventory Hold time.
I did this and will try again but :
1) why would this be the default setting in the first place?
2) especially when the products I have are Gift Cards/VirtualHey guys… if there is a specific php file that makes the call to wp-admin, I think I could do it…. how many different Woocommerce files act on wp-admin ?
Thanks!
OK.. after more reading I think I figured it out…
Woocommerce is creating a low-level user during checkout/login/etc… so I have to find a way to lock wp-admin from everyone except for the Woocommerce plugin.
Is that a simpler request? Thanks!
GoDaddy doesn’t know what it is either… they suggested that maybe Woocommerce has places some files in wp-admin, although I don’t see how… and then these are prompting the username/password dialogue box…