wendywagenmakers
Forum Replies Created
-
Had to dig deep how I fixed it again!
But figured it out.. I added the code://Same price regardless of taxes add_filter( 'woocommerce_adjust_non_base_location_prices', '__return_false' ); add_action( 'woocommerce_product_query', 'custom_pre_get_posts_query' ); // Change the shop / product prices if a unit_price is set function sv_change_product_html( $price_html, $product ) { $unit_price = get_post_meta( $product->id, 'unit_price', true ); if ( ! empty( $unit_price ) ) { $price_html = '<span class="amount">' . wc_price( $unit_price ) . ' /100gr</span>'; } return $price_html; } add_filter( 'woocommerce_get_price_html', 'sv_change_product_html', 10, 2 );
Hope this works for you as well! Good luck!
I will put in a request on your website
I will absolutely do that!
Thank you so much! I will update the plugin.
Thanks for listening and taking action. This is great!
Ofcourse, great! Thank you,
Will you let me know if this feature is working?
Thanks in advance! This will help SO much!
Thanks,
Wendy
Hi Dan,
Thank you so much for your reply.
In my case the shipping price including taxes is always the same. The tax rate which is included depends on the products which are shipped. So if the product which are being shipped have a tax rate of 15%, the shipping price is also being taxed with 15%. If the products have 20%, the shipping is also 20%, and so on… So the final price is always the same. The tax is not…
On the invoce. The right tax rate should be on there… As I understand, this is not an option in weight based shipping of any other plugin?
Then I’ll have to figure something out bookkeeping-wise… ??
Thanks!