Switch Inc Vat/TAX and Ex Vat Pricing

I'd like the inc VAT (TAX) to be the predomanat price on the the page but currently the Ex VAT (Tax) price is. With the price including VAT (Tax) small and underneath.



Is there a simple way to switch these round?



In other words the opposite way round to the image attached. Or just as the hand drawn version.

Untitled-1.jpg

20130605_132424.jpg

I'd also be interested to know if it's possible to configure tax like this.



I know I can:[list]

[]store product pricing as excluding vat/tax

[
]set-up a vat/tax rate (example: 20% for UK)

[/list]

However, I dont know how to get the desired effect which is:[list]

[]product categories/pages to display the calculated INC VAT price as the pimary price (like your diagram)

[
]product categories/pages also display the EXCL VAT price as the secondary price (like your diagram)

[/list]

Here's a few example sites with the sort of price display I'm looking for:

[url=“http://www.soundexposure.com/store/Marantz_PMD661_MK2.html?gclid=CKje64OazbcCFWLHtAodyxUAaw”]Soundexposure.com

[url=“PMT Online | Guitar, Bass & Musical Instrument Shop”]PMT Online | Guitar, Bass & Musical Instrument Shop

seonid have an add on for this:



http://www.cs-cart.seonid.com/cs-cart-addons/display-prices-including-taxes-as-primary.html

[quote name='choicenutrition@gmail.com' timestamp='1370473463' post='163098']

seonid have an add on for this:



http://www.cs-cart.s…as-primary.html

[/quote]



Thanks, there must be a free way. As I understand it Google Shopping requires the inc VAT price to be the primary and we need to show the price excluding VAT.



Another random CS-Cart failing?

Has anyone got any informtaion on this?



I would really like to show the excluded vat price alongside.



I can even find an add on :-(

Anyone know how to get the store to show both prices like Diveboys picture on top? I only get the price including tax on the storefront. Is there some settings in the backend to show both prices?

tick all 3 tax boxes in settings appearance



John

Seonid's module doen't switch the 2 prices (including tax and excluding tax). It just sets the price including tax as main price (which you can do by changing the tax settings in CS-Cart). Simply create a tax rule and select the Price includes tax: http://demo.cs-cart…es.manage&sl=en



To show the price inluding tax as main price and also show the price exluding tax some code changes need to be made to:

/design/themes/responsive/templates/common/product_data.tpl

/design/themes/responsive/templates/blocks/product_templates/default_template.tpl (product page)

/design/themes/responsive/templates/blocks/list_templates/grid_list.tpl (category page)

Seonid's module doen't switch the 2 prices (including tax and excluding tax). It just sets the price including tax as main price (which you can do by changing the tax settings in CS-Cart). Simply create a tax rule and select the Price includes tax: http://demo.cs-cart....es.manage&sl=en

To show the price inluding tax as main price and also show the price exluding tax some code changes need to be made to:
/design/themes/responsive/templates/common/product_data.tpl
/design/themes/responsive/templates/blocks/product_templates/default_template.tpl (product page)
/design/themes/responsive/templates/blocks/list_templates/grid_list.tpl (category page)

Webrunner - I wondered if you could shine a light on this. I have successfully managed to switch the 'Clean Price' (inc Tax) and 'Price' (Ex Tax) in a few areas of the website, see example here - http://212.48.74.115/~ethicalwares/footwear/walking-boots-and-shoes/ranger-walking-boots/also in the product list section, you will see I have updated for the Short List and List without Options toggle. However I cant seem to update the Default Grid List to switch the prices, see here - http://212.48.74.115/~ethicalwares/footwear/walking-boots-and-shoes/

Let me know if I have missed something, I have tired you file location with no luck

Thanks

Webrunner - I wondered if you could shine a light on this. I have successfully managed to switch the 'Clean Price' (inc Tax) and 'Price' (Ex Tax) in a few areas of the website, see example here - http://212.48.74.115/~ethicalwares/footwear/walking-boots-and-shoes/ranger-walking-boots/also in the product list section, you will see I have updated for the Short List and List without Options toggle. However I cant seem to update the Default Grid List to switch the prices, see here - http://212.48.74.115/~ethicalwares/footwear/walking-boots-and-shoes/

Let me know if I have missed something, I have tired you file location with no luck

Thanks

Hi insynch,

You are using a customized theme. Probably the files are in /design/themes/ethical_wares/templates/ or maybe even overruled by a hook. Which would be a better idea, since changing the files I mentioned would be overwritten by an update. More information about hooks can be found here: http://docs.cs-cart.com/4.4.x/developer_guide/addons/hooking/tpl_hooks.html?highlight=hooks

But for now you could check whether the file can be found here:

/design/themes/ethical_wares/templates/addons/my_changes/overrides/blocks/list_templates/grid_list.tpl

or

/design/themes/ethical_wares/templates/addons/my_changes/hooks/products/product_multicolumns_list.override.tpl

Webrunner - I wondered if you could shine a light on this. I have successfully managed to switch the 'Clean Price' (inc Tax) and 'Price' (Ex Tax) in a few areas of the website, see example here - http://212.48.74.115/~ethicalwares/footwear/walking-boots-and-shoes/ranger-walking-boots/also in the product list section, you will see I have updated for the Short List and List without Options toggle. However I cant seem to update the Default Grid List to switch the prices, see here - http://212.48.74.115/~ethicalwares/footwear/walking-boots-and-shoes/

Let me know if I have missed something, I have tired you file location with no luck

Thanks

Hi Insynch,

Just wondered if you figured out how to switch the prices on the grid list (it looks like you did) and if so if you would mind sharing how you did it (as well as how you switched them on the main product page too). Thanks

Hi Insynch,

Just wondered if you figured out how to switch the prices on the grid list (it looks like you did) and if so if you would mind sharing how you did it (as well as how you switched them on the main product page too). Thanks

UK Promotion,

Have only managed to get so far. I managed to customise this on a few templates. In some case the templates can be overridden, for instance my files were locate inside an the Product Badges add on directory, where there were override templates.

Here is the code, I simply swapped the Clean Price to come before the Price:

{assign var="old_price" value="old_price_`$obj_id`"}
{if $smarty.capture.$old_price|trim}{$smarty.capture.$old_price nofilter}{/if}

{assign var=“clean_price” value=“clean_price_$obj_id”}
{$smarty.capture.$clean_price nofilter}

{assign var=“price” value=“price_$obj_id”}
{$smarty.capture.$price nofilter}

{assign var=“list_discount” value=“list_discount_$obj_id”}
{$smarty.capture.$list_discount nofilter}

My price settings in the overall store do no contain TAX.

I switched the Clean Price (including TAX) with the Price (Excluding TAX) in the grid_list.tpl and other product list views, and added a language value to say Excl. Tax next to the price below the Main price (now including tax).

However hit a wall when a product is not taxable, the language value (Excl. Tax) value still displays even though the product is not taxable, I understand that this is down to my customisation, however I wondered if there was a way around this to simply show products which aren't taxable with price only and no text without affecting products which are taxable.

Any help appreciated

Hi Guys
i have also like a VAT Problem, i want that if choose to tick the taxes box in Catalog > Products it would display in Product detail page with Taxes, and Display prices with taxes on cart/checkout pages.
"Price inkl Taxes"
and if i don,t tick the taxes box in Catalog > Products it would display in Product detail page Excluded Taxes, and total Price will calculate on cart/checkout pages with taxes.
"Price Excl Taxes"
Kindly reply if anyone can help about this matter
Many Thanks

Kindly reply if anyone can help about this matter

Additional code changes are required to do it. Feel free to contact us using link from my signature

We are at your service. Drop us a line.

Best regards,

Alt-team.