kursora
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] UPDATE TOTALS – Cart PageCopy file from wp-content/plugins/woocommerce/templates/cart/shipping-calculator.php to wp-content/themes/YOR_THEME/woocommerce/cart/shipping-calculator.php then modify this text in copied file.
Forum: Plugins
In reply to: [WooCommerce] Bulk Edit: addslashes() expects parameter 1 to be string..I think, this is Woocommerce bug and will be fixed in next version: https://github.com/woocommerce/woocommerce/commit/b9757cca0063c88ae8a267a68d6237c7c18ed7b9#diff-b3d7b88316a325e800d84681c0390e78
Forum: Plugins
In reply to: [WooCommerce] Reduce Stock on Pending PaymentYou can use the Hold Stock (minutes) option under WooCommerce > Settings > Product > Inventory to hold products (for unpaid orders) for X minutes.
Forum: Plugins
In reply to: [WooCommerce] Call Function after creating new couponU can use this hook:
woocommerce_new_coupon
https://docs.woocommerce.com/wc-apidocs/source-class-WC_Coupon_Data_Store_CPT.html#76Forum: Plugins
In reply to: [WooCommerce] Payment method BACS only available on minimum order amountIn functions.php:
add_filter('woocommerce_available_payment_gateways', 'my_filter_gateways', 1); function my_filter_gateways($gateway_list) { if (WC()->cart->subtotal < 1000) { unset($gateway_list['bacs']); } return $gateway_list; }Forum: Plugins
In reply to: [WooCommerce] how to remove product description and reviews tabForum: Plugins
In reply to: [WooCommerce] Shipping class, how to set overseas shipping?You can use shipping zones.
Forum: Plugins
In reply to: [WooCommerce] Seperated Tax for shipping and itemsIn Woocommerce->Settings->Tax->Tax Options you must select Tax Class for shipping.
Forum: Plugins
In reply to: [WooCommerce] Exclude Category From Related ProductsHi,
you can use filter: woocommerce_get_related_product_cat_terms
Forum: Plugins
In reply to: [WooCommerce] Set new regular and sale price via MYSQLPrices are stored in postmeta (wp_postmeta) table with meta_key values _sale_price and _regular_price.
Forum: Plugins
In reply to: [WooCommerce] issue with selectboxWhat errors are in browser console?
Forum: Plugins
In reply to: [WooCommerce] Order Emails not sendingYour theme is not compatible with Woo 3.0.x.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce CheckoutTheme or some plugin uses deprecated data structures – maybe is not compatible with Woo 3.0.x.
Forum: Plugins
In reply to: [WooCommerce] Orders Cancelling without causeCheck settings in: WooCommerce->Settings->Products->Inventory->Hold stock (minutes)
Forum: Plugins
In reply to: [WooCommerce] Woocommerce products not showing. Display a 404 error.Settings -> Permalinks -> Save should solve problem. If not solves, show us yours .htaccess file.