Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / How can I make this work?

How can I make this work?

Locked

Views: 1,046

Results 1 to 3 of 3
This thread is locked. New replies are disabled.
25 Feb 2010, 7:03 PM
#1
gaffettape avatar

gaffettape

Zen Follower

Join Date:
May 2009
Posts:
433
Plugin Contributions:
0

How can I make this work?

I'm trying to make the '[help (?)]' link on the Shopping Cart page into an image (the same way I have done on other pages.. for instance the Advanced Search page).

Listed below is my modified code on the Advanced Search page:

define('TEXT_SEARCH_HELP_LINK','<img src="/includes/templates/my_temp/buttons/english/button_link_help.gif" alt="Search Help [?]" />');

I know I have to use the same principal to change the Help link on the Shopping Cart page, but I'm unsure how to because of the Javascript.

Can anyone show me (using the same principle listed above for the 'TEXT_SEARCH_HELP_LINK') how to get this working on the existing Shopping Cart page help link code here:

define('TEXT_VISITORS_CART', '<a href="javascript:session_win();">[help (?)]</a>');

Thanks.

25 Feb 2010, 7:10 PM
#2
gjh42 avatar

gjh42

Black Belt

Join Date:
Jul 2005
Location:
Upstate NY
Posts:
21,876
Plugin Contributions:
8

Re: How can I make this work?

You should just be able to replace the text

[help (?)]

with the image code

<img src="/includes/templates/my_temp/buttons/english/button_link_help.gif" alt="Cart Help [?]" />
25 Feb 2010, 7:16 PM
#3
gaffettape avatar

gaffettape

Zen Follower

Join Date:
May 2009
Posts:
433
Plugin Contributions:
0

Re: How can I make this work?

Exacty what I was after.
Thanks Glenn :smile: