kursora
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Order status changed from Pending payment to Completed.Maybe you have some plugin which do that. In example some Payment gateways can do that.
- This reply was modified 9 years, 4 months ago by kursora.
Forum: Plugins
In reply to: [WooCommerce] Cannot update some products?Browser cache clear will helps?
Forum: Plugins
In reply to: [WooCommerce] Maximum order amountadd_action( 'woocommerce_checkout_process', 'wc_maximum_order_amount' ); add_action( 'woocommerce_before_cart' , 'wc_maximum_order_amount' ); function wc_maximum_order_amount() { // Set this variable to specify a maximum order value $maximum = 104; if ( WC()->cart->total > $maximum ) { if( is_cart() ) { wc_print_notice( sprintf( 'You must have an order with a maximum of %s to place your order, your current order total is %s.' , wc_price( $maximum ), wc_price( WC()->cart->total ) ), 'error' ); } else { wc_add_notice( sprintf( 'You must have an order with a maximum of %s to place your order, your current order total is %s.' , wc_price( $maximum ), wc_price( WC()->cart->total ) ), 'error' ); } } }Forum: Plugins
In reply to: [WooCommerce] Get all products using api rest v1( wooCommerce version 2.6.11)Try filter[posts_per_page]=-1 or filter[per_page]=-1
- This reply was modified 9 years, 4 months ago by kursora.
Forum: Plugins
In reply to: [WooCommerce] Settings do not workCheck browser console for JavaScript errors.
Forum: Plugins
In reply to: [WooCommerce] ADD A BUTTON TO SPECIFIC CATEGORY PRODUCTS WOOCOMERCEis_product_category ( category_slug )
Forum: Plugins
In reply to: [WooCommerce] Billing form not translatedMaybe billing form has hard coded strings in your theme.
Forum: Plugins
In reply to: [WooCommerce] Cart page blank?Just enable WP_DEBUG and WP_DEBUG_LOG and check what is in debug.log file.
Forum: Plugins
In reply to: [WooCommerce] How to create a hidden checkout field?You must use hooks (actions/filters). woocommerce_checkout_update_order_meta – to store metadata for order, woocommerce_email_order_meta – to include what you want to emails.
Forum: Plugins
In reply to: [WooCommerce] Disabling Registration on Checkout: is it working?Can you switch theme to storefront? Registration possibility will be still showing?
Forum: Plugins
In reply to: [WooCommerce] Access to Orders page from front endUse some role manager plugin to grant/revoke accesss in admin area.
Forum: Plugins
In reply to: [WooCommerce] Mixed shipping options together in cartForum: Plugins
In reply to: [WooCommerce] How can i add weight based shipping method?Try this plugin: https://wordpress.org/plugins/flexible-shipping/
Forum: Plugins
In reply to: [WooCommerce] More than 1 shipping class for a productYou can set additional shipping costs per country with Flexible Shipping PRO and Flexible Shipping Locations plugins.
Forum: Plugins
In reply to: [WooCommerce] Shipping from multiple locationsIt can be done with Flexible Shipping PRO plugin.