Forums / Templates, Stylesheets, Page Layout / Products URL not showing

Products URL not showing

Locked
Results 1 to 8 of 8
This thread is locked. New replies are disabled.
17 Aug 2007, 11:32
#1
kpax avatar

kpax

New Zenner

Join Date:
Apr 2007
Posts:
18
Plugin Contributions:
0

Products URL not showing

Hi there,

I've got some problems implementing the link (Products URL) to another page with more information on my tpl_product_info_display.php page.
Basically, the code is all there and looks good and in Admin under 'Product Types' -> 'Product - General' I've made sure that the 'Show Product URL' option is enabled.

In the DB I can see my inserted URL just fine and the #productInfoLink style shows in the correct spot on the product info page, unfortunately just without any content though..

Is there any other file I would have to amend to make that Products URL link show up?

thanks
17 Aug 2007, 13:00
#2
kpax avatar

kpax

New Zenner

Join Date:
Apr 2007
Posts:
18
Plugin Contributions:
0

Re: Products URL not showing

I've just found the answer myself.

Under includes/languages/english/my_template/product_info.php I had, for whatever reason.., removed the text for TEXT_MORE_INFORMATION.
Put it back in and everything's looking fine now.

thanks to all for looking into this anyway.

kpax
23 Aug 2007, 14:03
#3
cozmic avatar

cozmic

New Zenner

Join Date:
Apr 2006
Posts:
24
Plugin Contributions:
0

Re: Products URL not showing

I have the same problem but my TEXT_MORE_INFORMATION have not been changed and still the link which says: "For more information, please visit this product's web page" doesn't show up.

I've entered a valid url in the products page also. Is there somewhere else where I configure to display this info?

Please help, pretty frustrated here :)

Running 1.3.7

Thanks!
23 Aug 2007, 14:16
#4
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Posts:
62,757
Plugin Contributions:
1

Re: Products URL not showing

Check in the Catalog ... Product Types ... click on EDIT LAYOUT and ensure that the URL is turned on for display ...
23 Aug 2007, 15:15
#5
cozmic avatar

cozmic

New Zenner

Join Date:
Apr 2006
Posts:
24
Plugin Contributions:
0

Re: Products URL not showing

Thanks for the reply but unfortunately this was already set to true.

Any more ides Ajeh?

Kind regards
23 Aug 2007, 15:19
#6
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Posts:
62,757
Plugin Contributions:
1

Re: Products URL not showing

Check your template and see if it has removed the code for displaying the URL ...
[PHP]<!--bof Product URL -->
<?php
if (zen_not_null($products_url)) {
if ($flag_show_product_info_url == 1) {
?>
<p id="productInfoLink" class="productGeneral centeredContent"><?php echo sprintf(TEXT_MORE_INFORMATION, zen_href_link(FILENAME_REDIRECT, 'action=url&goto=' . urlencode($products_url), 'NONSSL', true, false)); ?></p>
<?php
} // $flag_show_product_info_url
}
?>
<!--eof Product URL -->
[/PHP]
24 Aug 2007, 08:37
#7
cozmic avatar

cozmic

New Zenner

Join Date:
Apr 2006
Posts:
24
Plugin Contributions:
0

Re: Products URL not showing

My custom template doesn't override tpl_product_info_display.php in templates_default. I'll keep searching if i can find other modifications...
24 Aug 2007, 14:41
#8
cozmic avatar

cozmic

New Zenner

Join Date:
Apr 2006
Posts:
24
Plugin Contributions:
0

Re: Products URL not showing

I've found the error at last. It was another product_info.php under my template dir that had the TEXT_MORE_INFORMATION removed.

Thanks for help, now I can go home :)