Jump to content

Show text depending on price with or without tax


teralite

Recommended Posts

Hi all!

 

Im trying to display a text in productlist that shows if the price is with or without taxes but i cant get it to work properly.

 

I need to find the $value to use for the proper display.

 

Im trying to do this in category.tpl and using 1.5.3.1

 

The problem i get is that it has to change if you are logged in to your account that could display the prices without tax, otherwise it should be with tax.

 

 

 

{if $products}
<div class="content_sortPagiBar">
<div class="sortPagiBar clearfix">
{include file="./product-sort.tpl"}
{include file="./nbr-product-page.tpl"}
                    
                    <!--Text med moms-->
                                                            
                    {if $something here that show price ex tax == 1}
                    <span id=kategori_exmoms>Alla priser visas exkl. moms</span>
                    {elseif $something here that show price with tax == 0}
                    <span id=kategori_inkmoms>Alla priser visas inkl. moms</span>
                    {/if}
                    
</div>
</div>
 
{include file="./product-list.tpl" products=$products}
 
<div class="content_sortPagiBar onetwo">
<div class="sortPagiBar clearfix hideme">
{include file="./nbr-product-page.tpl"}
</div>
{include file="./pagination.tpl"}
</div>
{/if}
{elseif $category->id}
<p class="warning">{l s='This category is currently unavailable.'}</p>
{/if}
{/if}
 
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...