Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / How do I remove [more] under reviews?

How do I remove [more] under reviews?

Locked

Views: 568

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
8 Dec 2010, 1:41 AM
#1
nolsowski avatar

nolsowski

Inactive

Join Date:
Aug 2010
Posts:
324
Plugin Contributions:
0

How do I remove [more] under reviews?

I would like to remove the [more] under the reviews sidebox. Is there a way to do that?

You can see it here www.frompropertorocker.com on the right side at the top.

Thanks in advance!

8 Dec 2010, 1:50 AM
#2
get_em_fast avatar

get_em_fast

Totally Zenned

Join Date:
Dec 2006
Location:
Seligman, MO U.S.A.
Posts:
2,072
Plugin Contributions:
1

Re: How do I remove [more] under reviews?

includes/languages/frompropertorocker/english.php at around line 75, you will see:

define('BOX_HEADING_LINKS', '  [more]');

Change to:

define('BOX_HEADING_LINKS', '');

That will make it blank.

8 Dec 2010, 1:53 AM
#3
nolsowski avatar

nolsowski

Inactive

Join Date:
Aug 2010
Posts:
324
Plugin Contributions:
0

Re: How do I remove [more] under reviews?

Get Em Fast:

includes/languages/frompropertorocker/english.php at around line 75, you will see:

define('BOX_HEADING_LINKS', '  [more]');

> 
> Change to:
> 
> ```
define('BOX_HEADING_LINKS', '');

That will make it blank.

Thank you so much!

8 Dec 2010, 2:07 AM
#4
get_em_fast avatar

get_em_fast

Totally Zenned

Join Date:
Dec 2006
Location:
Seligman, MO U.S.A.
Posts:
2,072
Plugin Contributions:
1

Re: How do I remove [more] under reviews?

You're very welcome. No problem at all.