wpriders
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Product page stylesheet not foundhello
is it still a problem?Forum: Plugins
In reply to: [WooCommerce] Word “Shipping” is not translatehello
try a few things:
1) install: https://wordpress.org/plugins/loco-translate/ and try to translate the string using this module
2) make sure it uses the template you point at. Try modifying another module that uses the same function to override it. It might be overwriting default Woocommerce.Forum: Plugins
In reply to: [WooCommerce] Remove an item from carthello
try using it as array, like: lineitems[0][‘product_id’]
Forum: Plugins
In reply to: [WooCommerce] Stock Levels in the Pasthello!
There is not a clear history for that in Woocommerce. It just subtracts the quantity of product ordered and change product quantity.
You can just count how many ordered products of that type you had and add to current product quantity.Forum: Plugins
In reply to: [WooCommerce] Database Size is growing too big!hi there!
I would make a database backup(from Cpanel) and then install one of these plugins:
https://wordpress.org/plugins/wp-optimize/
https://wordpress.org/plugins/advanced-database-cleaner/ – I would go with this one but can delete more dataForum: Plugins
In reply to: [WooCommerce] Language Optionshello
I suggest using one of these plugins:
https://wplang.org/translation-plugins-languages/#1.3.3 – free version is enough
https://wplang.org/translation-plugins-languages/#1.3.2hope it helps
Forum: Plugins
In reply to: [WooCommerce] Discord WebhookHello!
From my knowledge, error 400 most of the time is a code error.
You can try disabling other plugins(one by one) or change to any twenty* theme and see which is interfering with that code.Forum: Plugins
In reply to: [WooCommerce] Discounted subtotal being used to calculate shippingHello
In order to give you a helpful answer, I need a few more information:
What did you use for creating groups?
How is your discount added?thank you
Did you update any plugins OR WordPress?
That access is not enough to make any further investigations.Hello @glauciolacerda.
How were the variations, attributes and gravity forms added to the cart?
From my knowledge, you need to add these data to appear in code(somehow mark them to be visible on checkout/email)Is this issue fixed? @upwriteinstruments
Forum: Plugins
In reply to: [WooCommerce] Refreshing cart on a pagethis article might be helpful:
https://catapultthemes.com/updating-the-woocommerce-mini-cart-via-ajax/Forum: Plugins
In reply to: [WooCommerce] show the submenu only when submenu parent is clicked.Is the issue fixed? I entered the link and it seems ok.
Forum: Plugins
In reply to: [WooCommerce] Sometimes order does not appear in wordpress dashboardHello AlayaTs
I can’t understand very well what’s the problem, but from what I get it looks like some plugins/modifications are making the Woocommerce order creation fail.
Are there specific products in all orders that fail? Or specific payment method? Or specific shipping? Maybe it fails on coupons usage.Looking into these patterns that breaks normal operations might help debug it.
Forum: Plugins
In reply to: [WooCommerce] BACS info shown twiceHi @henningt
I placed your snippet into a stock Storefront theme and got the same error. This issue is caused by the fact that you class WC_Gateway_BACS_custom triggers this action twice ‘woocommerce_thankyou_bacs’. Once it’s triggered by the default WC_Gateway_BACS and then by your custom class.
A fix would be to remove the default BACS payment method since you are already extending it.Here is the updated function that fixed the issue.
function my_core_gateways( $methods ) { $methods[] = 'WC_Gateway_BACS_custom'; $key_of_default_BACS_payment = array_search( 'WC_Gateway_BACS', $methods ); unset( $methods[ $key_of_default_BACS_payment ] ); return $methods; }