vigwe
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Service fee shown as VATThank you.
This resolved the issue.
Forum: Plugins
In reply to: [WooCommerce] Service fee shown as VATForum: Plugins
In reply to: [WooCommerce] Service fee shown as VATThanks for your response.
I have done that. see below.plugins deactivated: https://snipboard.io/kb6jQl.jpg
issue persists: https://snipboard.io/fnLAES.jpgForum: Plugins
In reply to: [WooCommerce] Service fee shown as VATForum: Plugins
In reply to: [WooCommerce] Service fee shown as VATForum: Plugins
In reply to: [ALD - Dropshipping and Fulfillment for AliExpress and WooCommerce] error 404Pls close this.
The issue is resolved. A “custom product quantity” plugin caused the issue.- This reply was modified 1 year, 3 months ago by vigwe.
Forum: Plugins
In reply to: [Code Snippets] Could not create snippet. Request failed with status code 500A quick workaround i found is to temporarily disable and snippet where get_cart() is used. This would allow me to save my new snippet and then afterward, re-enable the get_cart() snippet.
The get_cart() snippet is causing the issue. I hope it’s resolved soon.
ok, thank you.
Thank you, @wpzainab.
Forum: Plugins
In reply to: [Code Snippets] Could not create snippet. Request failed with status code 500I’m getting the error as well. pls help.
Could not update snippet. Request failed with status code 500
i’m on the latest version.
The error occurs even when I click “save changes” on an already running snippet without actually editing it.
UPDATE:
I realized the error start after i added below code snippet. The error stops when I remove it. Is there anything wrong with the snippet?
This snippet is needed to add a product to Cart whenever a user visits the website./*
- Automatically adding the product to the cart.
*/
function aaptc_add_product_to_cart() {
if ( ! is_admin() ) {
$product_id = 209; // Product Id of the free product which will get added to cart
$found = false;
//check if product already in cart
if ( sizeof( WC()->cart->get_cart() ) > 0 ) {
foreach ( WC()->cart->get_cart() as $cart_item_key => $values ) {
$_product = $values[‘data’];
if ( $_product->get_id() == $product_id )
$found = true;
}
// if product not found, add it
if ( ! $found )
WC()->cart->add_to_cart( $product_id );
} else {
// if no products in cart, add it
WC()->cart->add_to_cart( $product_id );
}
}
}
add_action( ‘init’, ‘aaptc_add_product_to_cart’ );
Forum: Plugins
In reply to: [WP Hide & Security Enhancer] Site Css breaks after a whileDear Moderator,
Please I would like to remove my site’s link from the issue reported. The essence of the link was to allow for an easy review of the issue by the plugin developer. Now that the issue is fixed I would like the link removed.
Thank you.
Forum: Plugins
In reply to: [WP Hide & Security Enhancer] Site Css breaks after a whileDear support,
Yes, the issue has stopped. It was is probably the cache as you had suspected.
Thanks.
Forum: Plugins
In reply to: [WordPress Multisite User Sync/Unsync] User login syncI have this question too.
- This reply was modified 4 years, 8 months ago by vigwe.
Optimocha.com (@optimocha)
2 months, 1 week ago
We’re working on an infinitely better version of the deferrer @bkwineper, don’t tell anyone yet ?? it will take a month but it’ll be worth the wait!I just installed the plugin 2 months, 1 week later and the Defer Parsing of Javascript option is still not there. Please help us.
- This reply was modified 4 years, 8 months ago by vigwe.
For anyone who might run into this problem, here are some clarifications with an example.
Let’s say the payment system you have on your site are Paypal and Terawallet.
Now when a user tops up his wallet with $10, say via Paypal, $10 leaves his Paypal and goes in the PayPal account set up by the admin. A virtual $10 also goes to the user Wallet (So the user can see his bal as $10).Now the real $10 is in admin’s Paypal account and a virtual $10 to be used for payments on your site is in the user’s account.
When the user makes a $10 purchase on your site and pays from his wallet, the virtual $10 leaves his wallet. No further action/entry is required as the $10 was always in admin’s PayPal account.
I hope this helps.
- This reply was modified 4 years, 10 months ago by vigwe.