wpriders
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] How to display payment gateway based on cart subtotalThe name of the payment gateway can be found in the link from Woocommerce->Settings->Payments then edit the desired payment method and get the name from like this: https://www.screencast.com/t/oiYpPn28lZt
Forum: Plugins
In reply to: [WooCommerce] Coupon IssuesHello
From what I see coupon is being tested for each product in the cart and is not having any condition to apply if all products are present in the cart.
I think will be a nice feature to have.
Until then I found this plugin: https://wordpress.org/plugins/woocommerce-auto-added-coupons/ IS NOT tested and I cannot guarantee is ok.- This reply was modified 7 years, 9 months ago by wpriders.
Hello!
BEFORE TRYING ANYTHING, please backup your site!
It should not remove them, you will see them, but it will not appear correctly as a Woocommerce product.One thing you can do is change the custom post type of old products to something else. THEN do 2 things:
– change in database the product type for current products
– change in code the post type from product to the new nameMaking the change in a good way it might work
Forum: Plugins
In reply to: [WooCommerce] Add billing details at register formHello
Admins can edit Customers data from: http://www.sitename.com/wp-admin/users.php (Menu Users)Forum: Plugins
In reply to: [WooCommerce] Coupons with minimum spends not working since the latest updateHello!
Does the coupon have some user limitation? Like n uses/user OR just for logged in user?
Hello!
This function might help you do what you want: https://developer.wordpress.org/reference/functions/in_category/
Forum: Plugins
In reply to: [WooCommerce] WC creates huge amount of transients and cron tasksHello
You can make some test to see which is the cause of problem:
– switch to a twenty* theme
– disable plugins one by one and see which cause the issueForum: Plugins
In reply to: [WooCommerce] single product page image zoom not workingHello
I see JS error on console: https://www.screencast.com/t/MswTUsWdS
Please look into the theme functions, might cause errors.
- This reply was modified 7 years, 9 months ago by wpriders.
Hello
Check this section: https://github.com/woocommerce/woocommerce/wiki/wc_get_orders-and-WC_Order_Query#adding-custom-parameter-support
From what I understand you want to add meta query, that’s why is not working as you wrote
Forum: Plugins
In reply to: [WooCommerce] Prices are displayed with a trailing “N/A”is changing: https://www.screencast.com/t/9Jhi1MZE having any effect? You can find that in Woocommerce settings
Forum: Plugins
In reply to: [WooCommerce] can´t install@eddwood1
Try deleting the folder: /wp-content/plugins/woocommerce (event this folder too) and retry installing the pluginForum: Plugins
In reply to: [WooCommerce] Cart icon URLHello
I think this bit of JavaScript code will help:
jQuery( document ).ready(function($) { $('#site-header div.elementor-widget-woocommerce-menu-cart').on('click', function(event){ event.preventDefault(); window.location.href = wc_add_to_cart_params.cart_url; }) });Forum: Plugins
In reply to: [WooCommerce] Best ways to customize Woo@zhuzh1
Hello
Changing email_order_details.php in child theme SHOULD override the plugin modifications. Just create the file: wp-content/themes/storefront-child/woocommerce/emails/admin-new-order.phpHope it helps!
Forum: Plugins
In reply to: [WooCommerce] Problem with site urlHello
Try a permalink refresh, just go to permalink settings and save the options.
And run this script: https://interconnectit.com/products/search-and-replace-for-wordpress-databases/ MAKE A BACKUP BEFORE running this search-replace.