See answers below marked by -
Jim
Don Lundell wrote:
On Mon, 12 Sep 2005 07:50:18 -0700, jim <beeutahful@gmail.com> wrote:
Are you seeing the actual text "PAGE LINK"? I see either the page name
or if the email Tell a Friend is activated from a moreinfo page the
Product name in that location.
I'm inserting the code from the bottom of the tell-a-friend page.
-
In order for the code at the bottom of the page to be useful you need to
follow the instructions on that page which are:
"To create a link to the Tell A Friend popup set your string and url
values, save and then copy and paste the link:"
So you need to enter the text you want in the message and the url for
the page into the two field, then save the page, then come back to the
page and copy the newly create link from the bottom box and paste it
where you want it. Note that this would require you to create a
separate link for each page. This method would be the one to use if you
are hand creating html pages and not using ShopSite to generate the
store pages.
Is it maybe not parsed the same when it's not coming from a product or
moreinfo page?
######
The text from that field is not parsed at all. It is code that you
paste on to a page and is used just like an order anywhere link would be.
The information put there is generated by the tag
[-- TELL_FRIEND_PAGE_LINK --].
Right.
Where can one view/edit this tag?
######
You put the tag [-- TELL_FRIEND_PAGE_LINK --]in a custom page or
moreinfo page template and the appropriate code is magically generated.
There isn't any editing that can be done to its output. Custom
template help can be found for Tell a Friend at:
http://www.shopsite.com/help/8.0/en-US/ ... te.tf.htmlhttp://www.shopsite.com/help/8.0/en-US/ ... ec-tf.htmlThanks,
- dc
I suppose you could build the links using some other method. Here is
the code from the default Link to Tell a Friend field.
<a href="#"
onClick="window.open('http://blister.shopsite.com/cgi-bin/jim/automation/sc/tellfriend.cgi?storeid=*10cbd54c2616d8602e5d&str=Link%20to%20Page&from=http%3A%2F%2Fblister.shopsite.com%2Fautop%2Findex.html','tellfriend','width=560,height=560,resizable=yes,scrollbars=yes,
status=yes');return false;">Link to Page</a>
If you break it apart it would be
AN HREF OPENING A NEW WINDOW RUNNING THE TELLFRIEND.CGI
<a href="#" onClick="window.open('
URL TO TELLFRIEND CGI
http://blister.shopsite.com/cgi-bin/jim ... friend.cgiSTOREID (encrypted or un incrypted)
?storeid=*10cbd54c2616d8602e5d
STRING TO DISPLAY ON PAGE FOR LINK URL ENCODED
&str=Link%20to%20Page
PAGE FROM WHICH THE LINK WAS ACTIVATED
&from=http%3A%2F%2Fblister.shopsite.com%2Fautop%2Findex.html
INFORMATION ABOUT THE WINDOW BEING CREATED
','tellfriend','width=560,height=560,resizable=yes,scrollbars=yes,
FINISH OUT THE HREF WITH THE TEXT FOR THE LINK
status=yes');return false;">Link to Page</a>
So although it would be possible to manually create the links it would
be a lot easier to use the tag in a custom template or enter the text
and url on the Tell a Friend configuration screen and let ShopSite
create the link.
Jim