minthuram
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Show prices with tax Inclusive in Minicart widgetHi @suvam96
sure,
better make the tax settings in woocommerce as Incluseive
Display prices in the shop
Display prices during basket and checkout -> Including Tax
Display tax totals -> Itemizedthen it checkout it will show total price or product price which you have set in your shop.but by default woocommerce will show includes VAT, you can change it to GST by adding the below code in 2 ways
1. install a plugin called Code Snippets, then add new and add the below code
OR
2. If you are using Child theme along with parent theme, then
Appearance->Theme Editor -> Select theme to edit:(select your child theme name) -> then click on functions.php and at the end add the below codeadd_filter( 'gettext', function( $translation, $text, $domain ) { if ( $domain == 'woocommerce' ) { if ( $text == '(includes %s)' ) { $translation = '(includes. GST)'; } } return $translation; }, 10, 3 );
If you see many E-Commerce website like Amazon,Flipkart etc.. they wont show tax price in checkout, but they show in the invoice bill which they send to customer but in product page they will mention as all prices are tac inclusive.we can also do the same by adding tax including information of total price is tax inclusive, so i m following in the same way.so you can customize your invoice bill by enabling the tax options in invoice settings. for that you can install various free or premium woocommerce invoice PDF plugins and customize it.
here are few free woocommerce PDF invoice
1.https://www.ads-software.com/plugins/print-invoices-packing-slip-labels-for-woocommerce/
2.https://www.ads-software.com/plugins/woocommerce-pdf-invoices-packing-slips/( for now i m currently using the 2nd one as it has various tax enabling options)
you can download and experiment various free PDF invoice plugins and choose which is suitable for you.
I hope through this way it will help you.
- This reply was modified 3 years, 6 months ago by minthuram.
Forum: Plugins
In reply to: [WooCommerce] Show prices with tax Inclusive in Minicart widgetHi @suvam96
sure,
better make the tax settings in woocommerce as Incluseive
Display prices in the shop
Display prices during basket and checkout -> Including Tax
Display tax totals -> Itemizedthen it checkout it will show total price or product price which you have set in your shop.but by default woocommerce will show includes VAT, you can change it to GST by adding the below code in 2 ways
1. install a plugin called Code Snippets, then add new and add the below code
OR
2. If you are using Child theme along with parent theme, then
Appearance->Theme Editor -> Select theme to edit:(select your child theme name) -> then click on functions.php and at the end add the below codeadd_filter( 'gettext', function( $translation, $text, $domain ) { if ( $domain == 'woocommerce' ) { if ( $text == '(includes %s)' ) { $translation = '(includes. GST)'; } } return $translation; }, 10, 3 );
If you see many E-Commerce website like Amazon,Flipkart etc.. they wont show tax price in checkout, but they show in the invoice bill which they send to customer but in product page they will mention as all prices are tac inclusive.we can also do the same by adding tax including information of total price is tax inclusive, so i m following in the same way.so you can customize your invoice bill by enabling the tax options in invoice settings. for that you can install various free or premium woocommerce invoice PDF plugin and customize it.
here are few free woocommerce PDF invoice
1.https://www.ads-software.com/plugins/print-invoices-packing-slip-labels-for-woocommerce/
2. https://www.ads-software.com/plugins/woocommerce-pdf-invoices-packing-slips/
( for now i m currently using the 2nd one as it has various tax enabling options)you can download and experiment various PDF invoice plugin and choose which is suitable for you.
I hope through this way it will help you.
Forum: Plugins
In reply to: [WooCommerce] Show prices with tax Inclusive in Minicart widgetThanks @stuartduff @rainfallnixfig for the suggestions, i have finally found a solution to solve the mentioned issue.
Forum: Plugins
In reply to: [WooCommerce] Show prices with tax Inclusive in Minicart widgetHi @stuartduff
can you provide any doc reference for custom codes to be added ?
i will try from my end a bit, if still not ressolved i will reach out to the developers.Forum: Plugins
In reply to: [WooCommerce] Show prices with tax Inclusive in Minicart widget@suvam96 hope we get some resolution for it in this forum