Max Rice
Forum Replies Created
-
Forum: Plugins
In reply to: [Customizer for WooCommerce] Retaining Multilingual SupportHey there,
Sounds like a cool idea and definitely something that’s possible to do with custom code using the filters that WooCommerce providers. The customizer is designed to do really simple replacements vs. more complex stuff. I’d recommend writing a custom plugin if you need to do anything beyond what the Customizer already provides 🙂
Max
Forum: Plugins
In reply to: [Customizer for WooCommerce] Not working on my siteHmm, if it works in the newer version then it does sound like a conflict. I’d contact the theme author to see if there’s any known issues with the older version.
Forum: Plugins
In reply to: [Customizer for WooCommerce] Add to Cart Button on Variable ProductsTry adding this code to your theme’s functions.php and see if it changes the button text:
add_filter( 'woocommerce_product_single_add_to_cart_text', function() { return 'Add me to cart!'; } );Forum: Plugins
In reply to: [Customizer for WooCommerce] Add to Cart Button on Variable ProductsThis should work in the latest version of the customizer, which version of WC are you using? The filter in 2.1+ is here: https://github.com/woothemes/woocommerce/blob/master/includes/abstracts/abstract-wc-product.php#L478-L486
so your code would need to hook into that and return your add to cart text 🙂
You’d need to override the product description template to add your custom field, or use the same action to add a new section before/after the description. Unfortunately this isn’t something you could do with the customizer, as you’ll need some custom code for it 🙂
Forum: Plugins
In reply to: [Customizer for WooCommerce] Not working on my siteCan you take a screenshot of the Plugins > Editor > WooCommerce screen? This should list the plugin as
woocommerce/woocommerce.phpForum: Plugins
In reply to: [Customizer for WooCommerce] Not working on my siteMake sure your WooCommerce plugin directory is named
woocommerce— any other name will cause the customizer to not work properly 🙂Forum: Plugins
In reply to: [Customizer for WooCommerce] Not working on my siteIt sounds like maybe there’s a conflict with your theme? Which theme are you using and is it overriding any templates?
Forum: Plugins
In reply to: [Customizer for WooCommerce] woocommerce newbiewelcome 🙂
Forum: Plugins
In reply to: [Customizer for WooCommerce] Coupon textI wrote a tutorial on this over at Sell With WP, How to Rename or Hide Coupon Code fields with WooCommerce 🙂
The buttons on the homepage can’t be controlled with the Customizer, you have to override the templates to do so, sorry!
I’m not sure the customizer allows for changing that text — can you post a screenshot of where you’re entering this in the customizer settings screen?
Which text are you trying to change?
If you send us an email (support@skyverge.com) we can put you in touch with a good developer 🙂
Hey scweb, you can use the developer documentation to customize the format of the CSV to match what you need 🙂 It might be a bit complicated because you need to dynamically set the number of columns in the export based on the total number of items in each order, but it is very doable.