Petruss Posted April 7, 2016 Share Posted April 7, 2016 (edited) Hi, I have a challenge and I hope someone can help. I need to display "Per Case" next to every price on our store. We sell wine and it's always per case. We do write this in the descriptions etc. but many people have told us it's to confusing. At first glance at our website they only see the price and decide it's too expensive and didn't realise it was per case. Thus it needs to be very clear everywhere on the website where a price is that it's "Per Case". How can we do this? Thanks in advance. Petrus Edited April 7, 2016 by Petruss (see edit history) Link to comment Share on other sites More sharing options...
shokinro Posted April 8, 2016 Share Posted April 8, 2016 (edited) You can change the price displaying to have both price/bottle and price/case, but make price/bottle more highlighted. $15/bottle : $90/case (6 bottles) Edited April 8, 2016 by shokinro (see edit history) 1 Link to comment Share on other sites More sharing options...
Petruss Posted April 8, 2016 Author Share Posted April 8, 2016 Hi, That is a fantastic idea! How can I do this? Will it show everywhere throughout website where prices are displayed? Kind Regards, Petrus You can change the price displaying to have both price/bottle and price/case, but make price/bottle more highlighted. $15/bottle : $90/case (6 bottles) Link to comment Share on other sites More sharing options...
shokinro Posted April 8, 2016 Share Posted April 8, 2016 you need to modify related theme files to make this changes. /themes/YourThemeFolder/product.tpl /themes/YourThemeFolder/product-list.tpl I assume you know how to make change to theme files. 1 Link to comment Share on other sites More sharing options...
Petruss Posted April 8, 2016 Author Share Posted April 8, 2016 you need to modify related theme files to make this changes. /themes/YourThemeFolder/product.tpl /themes/YourThemeFolder/product-list.tpl I assume you know how to make change to theme files. Yes I'll be able to modify those files. I just had a quick look... Can you help me with what to modify and coding please? Link to comment Share on other sites More sharing options...
shokinro Posted April 9, 2016 Share Posted April 9, 2016 Sorry, I can only give you some guidance. assume you 6 bottles in one case, and can change it in this way Assume this is code before change {$product->price} Then you would have following code after changes {$product->price/6} / {l s='Bottle'} : {$product->price} / {l s='Case'} 1 Link to comment Share on other sites More sharing options...
Petruss Posted April 10, 2016 Author Share Posted April 10, 2016 Sorry, I can only give you some guidance. assume you 6 bottles in one case, and can change it in this way Assume this is code before change {$product->price} Then you would have following code after changes {$product->price/6} / {l s='Bottle'} : {$product->price} / {l s='Case'} This is a brilliant solution to the challenge I'm facing, thank you! I was wondering, is there a way I could rather insert code that will do this on the back office at the theme's Custom CSS? Link to comment Share on other sites More sharing options...
shokinro Posted April 10, 2016 Share Posted April 10, 2016 No, I do not think you can do that at back office at theme's customer CSS. 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