Zen Cart Logo
Forums / Bug Reports / [Done 1.3.5] Tell a Friend display Error

[Done 1.3.5] Tell a Friend display Error

Locked

Views: 4,233

Results 1 to 6 of 6
This thread is locked. New replies are disabled.
27 Sep 2006, 02:43
#1
hazza avatar

hazza

New Zenner

Join Date:
Jul 2006
Posts:
11
Plugin Contributions:
0

[Done 1.3.5] Tell a Friend display Error

Hi everyone.....I'm a new zenner, and am really enjoying the power of this software. I have been working on my first shopping cart, and have managed to change the css layout, add my own logos, edit pages, use overrides, taglines etc... all with the good help of your great forum and support......big thanks. Still some work to do editing emails, and I am struggling with shipping modules that refuse to recognise zones that I have set up. I still have some learning to do here. (But I will ask for help on this one in another part of the forum.)

I am using Zen version 1.3.5 and have loaded from scratch, and I was testing some orders, and came across the "tell a friend" icon, and clicked on it. While a very cool function, the html output from the php code, seems to have lost a right hand boundary. (Please see attached pic of the problem) and blows the text box right out to the right hand side, and under the side boxes.
Does anyone else have this problem.? or do I have a corrupt file.?
This appears to be the only page that has this problem.

Can I fix this by replacing a file, and if so which one would be the culprit.?
Your help would be appreciated.

(he bows humbly, and crawls back across the rice paper...)

Hazza

27 Sep 2006, 05:58
#3
seethrou avatar

seethrou

Totally Zenned

Join Date:
May 2004
Location:
Hong Kong
Posts:
1,156
Plugin Contributions:
0

Re: [Done 1.3.5] Tell a Friend display Error

Also anthor reference for tell a friend,
in page 2 of Stylesheet Bug applies to most contributed templates

put the following to the stylesheet.

#tellAFriendDefault textarea { 
   float: none; 
}
27 Sep 2006, 07:53
#4
hazza avatar

hazza

New Zenner

Join Date:
Jul 2006
Posts:
11
Plugin Contributions:
0

Re: [Done 1.3.5] Tell a Friend display Error

Thank you both for your prompt replies....and yep that fixed it nicely.
I simply commented out the line as suggested by Dr. Byte

Thank you both Gentlemen.

04 Oct 2006, 04:49
#5
etrader avatar

etrader

New Zenner

Join Date:
Dec 2005
Posts:
62
Plugin Contributions:
0

Re: [Done 1.3.5] Tell a Friend display Error

I'm still having a problem with the tell a friend display. The solution above fixed part of the problem but for products that have a long title, the tell a friend box is still being cut off because of title in the legend box. You can see an example here. http://undergroundmusic.com.au/index.php?main_page=tell_a_friend&to_email_address=&products_id=92&x=10&y=7

Does anyone have a solution to this?

21 Oct 2006, 19:07
#6
website_rob avatar

website_rob

Inactive

Join Date:
Oct 2006
Location:
Alberta, Canada
Posts:
4,572
Plugin Contributions:
0

Re: [Done 1.3.5] Tell a Friend display Error

Apply the following changes (v1.3.5).

includes/templates/template_default/templates/tpl_tell_a_friend_default.php

line 18

from

<fieldset>
<legend><?php echo sprintf(HEADING_TITLE, $product_info->fields['products_name']); ?></legend>

to

<fieldset>
<legend><?php echo 'Tell A Friend'; ?></legend>

This does not change the Product Info / Description and other information provided within the eMail sent, so no problem there.