How to send an automated email to the customers when product is added woocommerce
How to send an automated email to the customers when product is added woocommerce
How to send an automated email to the customers when product is added woocommerce
Things may be slightly different depending on whether you are using the most recent version of wp e-commerce (I think its 3.8 something) – but it’s similar in 3.7 In the shipping settings you can choose Flat Rate and then hit edit and set the shipping rates for continental US as well as other continents. … Read more
This should help you on your way, a similar question was asked just a couple of days ago Colour Selection With Thumbnails, you’l probably need to get a grip on how javascript works using id’s as a selector
We us Event Espresso for our event management. It allows for multiple events as well as multiple payment gateways, even a ticket addon so users can print custom tickets to your events. Seems like it would be perfect for what you need. http://eventespresso.com/
It seems that at least a pair of plugins have been developed for this: http://dev.pathtoenlightenment.net/shop/currency-switcher-woocommerce/ and 11/27/15 Deadlink: http://codecanyon.net/item/woocommerce-currency-converter/4545063 I couldn’t vouch for either as I haven’t used either. I think that some multisite extensions are also in development, which might allow different sub-sites to show the same product in different currencies/prices.
You should be able to generate discount codes within your callback function by using the edd_add_discount() function. You can learn more about this function here on the EDD Codex to see what specific data you need to pass to the function. However, edd_complete_purchase might not be the right action to hook to. If you only … Read more
I finally found there is a hook that someone added: <?php do_action( ‘register_form’ ); ?> I found this in the git repo Hope that line of code will help someone who struggles finding the answer i did —-EDIT—- When i looked into this more carefully the fix i did was add this plugin: https://wordpress.org/plugins/easy-captcha/ This … Read more
It’s a bit hard to tell without knowing what shop theme you are using but I’ll try anyways… The code <?php wc_get_template_part( ‘content’, ‘product’ ); ?> is basically calling the template file content-product.php. I would however not recommend you alter the default file. On a standard woocommerce install you will find that default template file … Read more
Turns out that the new CRUD functionality added in 3.x will allow me to deal to a single point for each data type, in this case it’s Orders https://github.com/woocommerce/woocommerce/wiki/CRUD-Objects-in-3.0
Add the following code to your functions.php add_action(‘woocommerce_after_shop_loop_item_title’,’change_loop_ratings_location’, 2 ); function change_loop_ratings_location(){ remove_action(‘woocommerce_after_shop_loop_item_title’,’woocommerce_template_loop_rating’, 5 ); add_action(‘woocommerce_after_shop_loop_item_title’,’woocommerce_template_loop_rating’, 15 ); } And then after add the following lines also to get the rating count add_filter( ‘woocommerce_product_get_rating_html’, ‘loop_product_get_rating_html’, 20, 3 ); function loop_product_get_rating_html( $html, $rating, $count ){ if ( 0 < $rating && ! is_product() ) { global … Read more