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?
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.
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?
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]