sportnjerseys Posted October 5, 2010 Share Posted October 5, 2010 Hello All,I am a newbie and not familiar with coding at all... I had to hire someone to fix our paypal issue. I want to fix this issue ASAP to help sales.Now I have a new problem that I would like to resolve. Our company uses the Voucher Codes not only as a discount but as a way to track our Independent Sales Consultants Sales individually. To make the site more Customer friendly and not scare off any potential buyers I want to include the VOUCHER PRICE with the product next to the Retail price on ALL items. It is all based off a percentage of 56.67% off every product as a marketing ploy for our Independent Sales Consultants. THIS IS WHAT IM LOOKING FOR:Retail Price $150 / With Voucher Code $64.99I am currently using Version 1.3.1.1 - 0.322s my website for reference is WWW.SPORTNJERSEYS.COM , so you can see how it is layed out and what Im talking about.PLEASE HELP ME FIX THIS!! Our business Marketing materials say a lower price...if the customer has the voucher code at checkout they get that price. I really Thank you in advance for all those that help..Ive searched the boards and found No post about such a topic. Link to comment Share on other sites More sharing options...
Patric Posted October 5, 2010 Share Posted October 5, 2010 Please, according to the forum rules, rewrite your title using lowercase and remove the "Help" word. Thanks. Link to comment Share on other sites More sharing options...
sportnjerseys Posted October 5, 2010 Author Share Posted October 5, 2010 Fixed the Title!I still cant find anything in Forums or elsewhere on how to do this. I would think others would want this as well...Retail Price $150 / With Voucher Code $64.99 I would like the price centered below or above wordingThat is what I need in price of products Link to comment Share on other sites More sharing options...
sportnjerseys Posted October 5, 2010 Author Share Posted October 5, 2010 Still Looking for a Vocher Code solution to my product display pages. Is there anyone that knows how to do this??Thank you? Link to comment Share on other sites More sharing options...
sportnjerseys Posted October 8, 2010 Author Share Posted October 8, 2010 Can anyone Give me some pointers on how this is done!!! Im lost and could really use the help on this one. Link to comment Share on other sites More sharing options...
rocky Posted October 8, 2010 Share Posted October 8, 2010 Try changing lines 196-209 of product.tpl from: {if !$priceDisplay || $priceDisplay == 2} {convertPrice price=$product->getPrice(true, $smarty.const.NULL)} {if $tax_enabled}{l s='tax incl.'}{/if} {/if} {if $priceDisplay == 1} {convertPrice price=$product->getPrice(false, $smarty.const.NULL)} {if $tax_enabled}{l s='tax excl.'}{/if} {/if} {if $priceDisplay == 2} {convertPrice price=$product->getPrice(false, $smarty.const.NULL)} {l s='tax excl.'} {/if} to: {if !$priceDisplay || $priceDisplay == 2} {convertPrice price=$product->getPrice(true, $smarty.const.NULL)} {if $tax_enabled}{l s='tax incl.'}{/if} {/if} {if $priceDisplay == 1} {convertPrice price=$product->getPrice(false, $smarty.const.NULL)} {if $tax_enabled}{l s='tax excl.'}{/if} {/if} {if !$priceDisplay || $priceDisplay == 2} {convertPrice price=$product->getPrice(true, $smarty.const.NULL)*0.5667} {l s='with voucher code'} {if $tax_enabled}{l s='tax incl.'}{/if} {/if} {if $priceDisplay == 1} {convertPrice price=$product->getPrice(false, $smarty.const.NULL)*0.5667} {l s='with voucher code'} {if $tax_enabled}{l s='tax excl.'}{/if} {/if} Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now