92 comments found.
Hi, is it possible to hide the final price from displaying on certain product pages?
Regards, Bootlip
No bootlip. This plugin has not settings.
Hello,
So in short, does this plug-in allow for the price change dynamically on-the-fly (when adjusting increments, variations, Etc.)?
Thanks, Josh
I think that was meant for the WooCommerce Extra Product Options. I ‘ll answer you there.
I replied to you in the other thread.
As far as this plugin goes, I’m not really sure what it does. Can you explain a scenario?
This is for showing the total price when you increase quantity. Normally when you do that WooCommerece does not show the total price you will pay. Note that, some plugins that alter the default price like dynamic discounts may not be compatible.
Hi there! Does it work with Dynamic pricing? I mean, if I have a discount depending on how many units my customer buys, will it update considering those discounts?
Hey joanboluda, The plugin supports Dynamic Pricing from woothemes. I’m not sure about other dynamic pricing extensions.
Hi there! I purchased the plugin but its not working with Dynamic pricing. Here you can see the product (staging site). There is a discount if you buy more than 10 units, but it’s not working: http://watomic.com/producto/producto-con-descuento/
Due to the way Dynamic pricing works, the discounts that can be calculated are only global category price discounts, like the bulk category discounts. Unless Dynamic pricing provides an api to get product based discounts on the fly I don’t see a way of calculating product based discounts.
Great plugin. How can I edit the words “Final Total” to say “Extended Price”?
Hey teamallball, You can either use the provided .po file if you you some sort of translation or edit line:57 class-tm-final-price.php, though that’s not really recommended.
Thank!
Hi can i make somehow final price will be shown with custom fee what i make by this tutorial http://stackoverflow.com/questions/23615013/add-fee-to-woocommerce-based-on-product-category
add_filter('woocommerce_get_price', 'add_fee_to_price' , 10, 2);
function add_fee_to_price( $price, $product ) {
$category_ID = '23';
$excost = 0;
$product_id=$product->id;
$terms = get_the_terms( $product_id, 'product_cat' );
foreach ($terms as $term){
if($term->term_id == $category_ID){
$excost = 6;
}
}
return ($price+$excost);
}
You can put this code somewhere like your functions.php file.
Please note that this may change the displayed priced on the product page as well. If you find something is not displaying as it should after that code just remove it.
You are avesome but it add fee for every product not for all price 1 fee. example. now is: price + fee x qty ,is it posible price x qty + fee ?
I see what you wanted now. This approach requires a some changes on the plugin. I added 2 filters to the plugin to make that possible. When get the notification that the plugin has been updated replace yours with the new version and then on the above code change:
add_filter('woocommerce_get_price', 'add_fee_to_price' , 10, 2);
to
add_filter('woocommerce_tm_final_price_extra_fee', 'add_fee_to_price' , 10, 2);
If you don’t want to wait for the review queue send me an email through my profile and I’ll sent you the updated file.
Can i manualy insert yours 2 filters because there was no update mesage. I downloadet plugin instaled changed code. but its showing only regular price.
You have to modify some core files..so I think its best if you sent me an email through my file and I’ll sent you the updated file.
Will this work with the product dynamic price woocommerce plug in?
Thanks for pointing this out KoozieHQ. I have added support for the WooCommerce Dynamic Pricing from woothemes and waiting the review. If you are talking about another plugin please let me know.
update with WooCommerce Dynamic Pricing support is live.
Nice Work and Good Luck with the Sale !
Thank wpproducts!
For decimal precision make sure that you set your required precision on WooCommerce Settings -> Currency Options -> Number of Decimals. The plugin uses that setting to conform with the current shop options.
Hi thank you for work but there is a bug. In prduct page price is showing example: 7$ but in cart it showing 7.29$ real price is 7.29$ so your plugin dont showing or calculating numbers after the dot Because in back end product price is 7.287156$
Can you tell the url for that page?
Make sure that you set the Number of Decimals in WooCommerce Currency Options under WooCommerce Settings to the number of decimcals you want. The plugin uses this setting to conform with store options.
Sorry for no reply. The problem in this plugin is not for showing decimals its problem in calculating. Then product price is 0.0728856 and i buy 1000pcs. your final price plugin show 70.00 its not corect and then i add to cart woocomerce cart calculate it 72.89 and its corect. I think in future i will be not onely one who see it so i think it would be nice to fix it.
I changed the product price to 0.0728856 for your example and it is working as intended. Set the quantity to 1000 and the final price box displays 72.8856000. I set the decimals back to default 2 and the final total box displays 72.89. The current setting on the site is 2.
Again, please check your woocommerce setting “Number of Decimals”. The plugin uses that number to display decimals. There is nothing wrong with how the price is calculated.
The only thing I can is that you are using variations and somehow that is miscalculated.
If you can refer me to a url that is not showing the price correctly I could identify that issue for you. Actually, I think that is the case. I’ll see if I can find any work around for that.
I find out. the price is calculating bad then the price is diferent in variations, but its not logical. Then i make all variations diferent price its calculating bad. But i dont now is it yours plugin or woocommerce bug. http://b2bprint.dk/product/test/ this is product with diferent variation price. http://b2bprint.dk/product/test2/ this is product with same variation price and its calculate corect.
I found what the issue is. It is indeed on variations only. As the calculation is JavaScript based it takes into account only what is displayed on the js data provided by woocommerce. I found a workaround for that though and I already issued an update to fix that. If you cannot wait for the update queue please send me an email through my profile page and I will send you the update.
No changes. Same on diferent variation product price.
I have to see you configuration to investigate what is causing the issue for you.
Issue has been corrected.
Exellent work my friend!!! Wish you happy sales 
Thanks EugeneRoiZ!
Nice product! Good luck 
thanks CaptainTheme!
Awesome! GLWS!! 
Thanks TNT-Team!