slimcatdesign
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] database error CommandsIs this now resolved or you still having issues?
Forum: Plugins
In reply to: [WooCommerce] WooCommerce make wordpress database errors?Is this now resolved?
Forum: Fixing WordPress
In reply to: Message in error logwas this resolved now? Seems many users having same errors
Forum: Plugins
In reply to: [WooCommerce] wc blocks api errorwas this resolved now?
hi @ckadenge, staging site does not produce these errors as it needs live data (orders). live website i cannot switch the themes, nor disabling any plugins. it is clearly something with woocoomerce, i start seeing these errors for few months now. i have updated all plugins again, so all upto date, and still errors in logs.
Thanks Saif.
Just to make clear, by hardcoded I meant I have created separate templates for all pages (and it’s basic html/php).
All worked great until very recently.
Swapping theme for testing is not an option, as it’s live (and pretty busy) e-commerce.
I have disabled any cache (LScache on cPanel) and removed any files it had in lscache folder. Will need a bit of time to observe.
Will update tomorrow.
Thanks!
also just started to see these errors:
[23-Nov-2023 22:11:52 UTC] The Automattic\WooCommerce\Admin\API\Options::get_options function is deprecated since version 6.3. [23-Nov-2023 22:11:52 UTC] The Automattic\WooCommerce\Admin\API\Options::get_options function is deprecated since version 6.3. [23-Nov-2023 22:11:52 UTC] The Automattic\WooCommerce\Admin\API\Options::get_options function is deprecated since version 6.3. [23-Nov-2023 22:11:52 UTC] The Automattic\WooCommerce\Admin\API\Options::get_options function is deprecated since version 6.3. [23-Nov-2023 22:18:17 UTC] The Automattic\WooCommerce\Admin\API\Options::get_options function is deprecated since version 6.3. [23-Nov-2023 22:18:17 UTC] The Automattic\WooCommerce\Admin\API\Options::get_options function is deprecated since version 6.3. [23-Nov-2023 22:18:17 UTC] The Automattic\WooCommerce\Admin\API\Options::get_options function is deprecated since version 6.3. [23-Nov-2023 22:18:17 UTC] The Automattic\WooCommerce\Admin\API\Options::get_options function is deprecated since version 6.3.
I have currently WC Admin disabled via:
add_filter( ‘woocommerce_admin_disabled’, ‘__return_true’ );
Forum: Plugins
In reply to: [WooCommerce] wc blocks api errorI a getting this error too
WordPress database error Commands out of sync; you can’t run this command now for query SHOW FULL COLUMNS FROM
wp_options
made by shutdown_action_hook, do_action(‘shutdown’), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Blocks\Assets\Api->update_script_data_cache, set_transient, update_optionWodrpess/WooCoomerce and all other plugin updated. I do not use any WC blocks as theme simply hardcoded in (and its not been a issue until very recently). 4x CPU 4x GB RAM all allocated to single website (not very busy, say 100-200 orders per week).
I realised that some shop products get their stock messed up, say if I had 10 items after ordering 5, I will still have like 8 left, or 2 (just as an example). Does not happen to all products, just random product/random time.
Thanks
- This reply was modified 1 year, 3 months ago by slimcatdesign. Reason: spelling
Forum: Plugins
In reply to: [Pay With Ether for WooCommerce] Ether exchange rate in GBPThanks Lee.
Forum: Themes and Templates
In reply to: [Shapely] Appearance -> customize not working anymore?fixed now
Forum: Plugins
In reply to: [Custom Order Status for WooCommerce] Bulk actions?Hi Tom,
for some reason didn’t get notification. Thanks for prompt response.
will leave feedback
thanks
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Shipping methodyes it works a treat ??
//remap shipping method titles add_filter('woe_get_order_value_shipping_method_title','woe_rename_shipping_method_title', 10, 4); function woe_rename_shipping_method_title($value, $order, $item, $product) { if($value == 'UK Standard Shipping') // copy these 2 lines for other mappings return 'STANDARD'; // copy these 2 lines for other mappings return $value; }
- This reply was modified 8 years, 2 months ago by slimcatdesign.
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Shipping methodjust found this:
//remap shipping method titles
add_filter(‘woe_get_order_value_shipping_method_title’,’woe_rename_shipping_method_title’, 10, 4);
function woe_rename_shipping_method_title($value, $order, $item, $product) {
if($value == ‘UK Standard Shipping’) // copy these 2 lines for other mappings
return ‘STANDARD’; // copy these 2 lines for other mappings
return $value;
}will give a try