I have tried many hooks for showing the minimum price but not working (like https://support.woothemes.com/hc/en-us/community/posts/202794676-Showing-only-1-price-for-variable-product and so many hooks). I have tried WooCommerce 2.1 variation price, revert to 2.0 format (https://gist.github.com/kloon/8981075) which also not working.
add_filter( 'woocommerce_variable_sale_price_html', 'get_min_variation_price_format', 10, 2 );
add_filter( 'woocommerce_variable_price_html', 'get_min_variation_price_format', 10, 2 );
function get_min_variation_price_format( $price, $product ) {
$min_variation_price = $product->get_variation_regular_price( 'min');
return wc_price($min_variation_price);
}
Please help me to solve the problem for showing the minimum price for the variable products instead of maximum price.
Regards.
https://www.ads-software.com/plugins/woocommerce/
]]>I’m using DELI theme and Woocommerce for my site www.papercupsplates.co.uk
I think is an excellent theme, very nice looking and super-customizable.
I think that is the best what you can get free of charge.
So, my issue:
On the Product page I want to show both the “price” and the “price+tax” (VAT-in my case.
Is there any option or css or plugin that could help?
Can anyone help me with this, actually i found one solution to display price attributes on each product like : here
or any other code to achieve it
Mrp : $20
Sale Price : $10
This filter doesn’t strike the MRP price, any solutions for that,
https://www.ads-software.com/plugins/woocommerce/
]]>I want to change plain MRP & sale price label’s on single products, I want to show the label & price together
Mrp : $199
Sale : $50
Please any one can help me with the code to achieve that,
Thanks & Regards
https://www.ads-software.com/plugins/woocommerce/
]]>Changing the language on the frontend doesn’t update this text. Only after reloading again the site does change the label text into the correct language.
Any ideas?
best regards
Michael
https://www.ads-software.com/plugins/woocommerce-jetpack/
]]>I need assistance with this as soon as possible, I have install the WooCommerce Jetpack version 1.0.6 which is the only one I found compatible with my Woocommerce install which is version 2.0.20. Can’t update right now because I have some multiple customizations around there that I need to take care of moving them first.
I guess version 1.0.6 should work also just fine, can’t find why it is not.
https://www.ads-software.com/plugins/woocommerce-jetpack/
]]>I’m having 2 problems with Woocommerce and was hoping for any help. I’m not a programmer, so idiot-proof answers would be appreciated. I can follow directions very well
1) I need to temporarily turn off prices across the board to all users and subsequently be able to turn them back on at a later date. Whether this be removing a string of code or whatever, it doesn’t matter to me as long as the answer is not to purchase that Woo-plugin. This should have been an option in Woo from the start…
2) I am using Woocommerce in addition to my theme and would love to change those ugly circles that they use as the price backdrop. A Charcoal bar with opacity of .75 for example would be perfect.
Thanks in advance guys!
]]>I’ve browsed around, and the closest solution I could find was a topic where the user wanted to remove “from” out of their product page.
I want to remove the entire graphic. (and the text)
I am creating the page for an art gallery, and sell mostly “grouped” products. The graphic and label can be a bit misleading, considering a poster print is $20, but original pieces can range from hundreds to thousands of dollars.
I worked with this code, but can only remove the text. (I pasted it in functions.php as instructed by user “bheadrick” from another thread w/ a similar issue.
add_filter('woocommerce_variable_price_html','custom_from',10);
add_filter('woocommerce_grouped_price_html','custom_from',10);
add_filter('woocommerce_variable_sale_price_html','custom_from',10);
function custom_from($price){
$new_from = "Deposit";
$price = str_replace('From',$new_from,$price);
return $price;
}
This is all I was able to do. It only removed the text (but not the graphic)
add_filter('woocommerce_variable_price_html','custom_from',10);
add_filter('woocommerce_grouped_price_html','custom_from',10);
add_filter('woocommerce_variable_sale_price_html','custom_from',10);
function custom_from($price){
$new_from = "Deposit";
$price = str_replace();
return $price;
}
Any help would be awesome,
Thanks!
https://www.ads-software.com/extend/plugins/woocommerce/
]]>