Zen Cart Logo
Forums / General Questions / Price Unavailable

Price Unavailable

Locked

Views: 1,049

Results 1 to 5 of 5
This thread is locked. New replies are disabled.
7 May 2008, 8:54 AM
#1
silentshadow avatar

silentshadow

New Zenner

Join Date:
May 2008
Posts:
16
Plugin Contributions:
0

Price Unavailable

I have my site set up where visitors must create an account and log in to view my prices. The problem is I do not like 'Price Unavailable' under all my products, is there a way to change what this says?

7 May 2008, 9:06 AM
#2
fairestcape avatar

fairestcape

Totally Zenned

Join Date:
Mar 2008
Location:
Cape Town & London (depends on the season)
Posts:
2,957
Plugin Contributions:
0

Re: Price Unavailable

You'll have to edit your english.php file.

The core file is in:-

includes/languages/english.php

Open a COPY of this file on your hard drive, with a proper TEXT EDITOR such as NotepadPlus, or Crimson Editor. Do NOT use editors that format text.

The phrase occurs in two places...

On or near Line #513 : define('TEXT_LOGIN_FOR_PRICE_PRICE','Price Unavailable');

On or near Line #520 : define('TEXT_AUTHORIZATION_PENDING_PRICE', 'Price Unavailable');

Change the text between the two latter single quote marks, making sure to leave the quote marks intact.

On or near Line #513 : define('TEXT_LOGIN_FOR_PRICE_PRICE','YOUR TEXT HERE');

On or near Line #520 : define('TEXT_AUTHORIZATION_PENDING_PRICE', 'YOUR TEXT HERE');

SAVE the file, then you must put it into your CUSTOM template folder. (On a standard install, this is the " classic " folder).

includes/languages/classic/english.php

(If you use another template)...

includes/languages/YOUR_TEMPLATE/english.php

7 May 2008, 9:09 AM
#3
fairestcape avatar

fairestcape

Totally Zenned

Join Date:
Mar 2008
Location:
Cape Town & London (depends on the season)
Posts:
2,957
Plugin Contributions:
0

Re: Price Unavailable

You can search for text and programming strings in the core files using the in-built DEVELOPERS TOOL KIT. This is in your Zencart Admin Panel under TOOLS.

This facility allows you to search for things - typically labels such as you are looking to change - in the core files.

There are many posts on this forum that describe the OVER-RIDES system in Zencart, and you would do well to read these.

7 May 2008, 9:15 AM
#4
silentshadow avatar

silentshadow

New Zenner

Join Date:
May 2008
Posts:
16
Plugin Contributions:
0

Re: Price Unavailable

thanks for the quick responses! You know most of the features and everything is pretty self explainatory but its the little things that I can never figure out! :laugh: