-
Re: MSRP contrib
I need help please! My msrp prices are not showing up on the listings.
In the admin area I have a place to insert the msrp price now. On the cat/products page the price shows as:
TEXT_PRODUCT_MSRP$92.00
TEXT_PRODUCT_SAVE24%
TEXT_PRODUCT_OUR$70.00
with a slash through the msrp. But nothing is appearing on the front end. I have reload this several times, but still can't figure this out. I used mySql and downloaded everything manually. Sorry, I don't know enough code: I'm kind of a monkey see, monkey do.
Thanks in advance.
-
Re: MSRP contrib
What do you have in your \includes\languages\english.php?
Do you this in there?
define('TEXT_PRODUCT_MSRP', 'Retail Price: ');
define('TEXT_PRODUCT_SAVE', 'You save: ');
define('TEXT_PRODUCT_OUR', 'Our Price: ');
-
Re: MSRP contrib
Thanks! Yes, I do.
I tried changing it, but it still shows up the same way in the admin, and nothing still on the front end.
-
Re: MSRP contrib
I have mine located here. includes/languages/english/extra_definitions/your_template/product_info.php
define('TEXT_PRODUCT_MSRP', 'Retail Price: ');
define('TEXT_PRODUCT_SAVE', 'You save: ');
define('TEXT_PRODUCT_OUR', 'Our Price: ');
-
Re: MSRP contrib
One quick question. Are you putting this in the \includes\languages\english.php or are you putting it in the admin\includes\languages\english.php?
The one in the \includes\languages\english.php should be:
define('TEXT_PRODUCT_MSRP', 'Retail Price: ');
define('TEXT_PRODUCT_SAVE', 'You save: ');
define('TEXT_PRODUCT_OUR', 'Our Price: ');
The one in the admin\includes\languages\english\product.php should be:
define('TEXT_PRODUCTS_MSRP', ' MSRP: ');
define('TEXT_PRODUCTS_OUR_PRICE', ' Our Price: ');
define('TEXT_PRODUCTS_SALE', ' Sale Price: ');
define('TEXT_PRODUCTS_SAVINGS', ' You Save: ');
define('TEXT_PRODUCTS_PRICE_MSRP', 'Products MSRP:');
You don't add anything in the admin\includes\languages\english\english.php
-
Re: MSRP contrib
I took a look at everything again. I don't have a includes/languages/english/extra_definitions/your_template/product_info.php.
My \includes\languages\english.php and
admin\includes\languages\english\product.php
are like above. :dontgetit
-
Re: MSRP contrib
Do you have a link to an example of where is is doing it?
-
Re: MSRP contrib
-
Re: MSRP contrib
Hi how can i get the you save price to display including VAT??
my store shows the following
Retail Price: £480.00
You save: £275.00 (69%)
Our Price: £150.00
the 275.00 shown is without VAT as the saving is £330 (275 + 20% vat)
how can I fix this?
-
Re: MSRP contrib
how can i make the you save price display including VAT???
i have tried reinstalling the mod to make sure nothing missing and still the same!