Jump to content


Corporate Sponsors


Latest News: (loading..)

RusNN

Member Since 27 May 2008
Offline Last Active Feb 06 2012, 04:18
-----

Posts I've Made

In Topic: Header Tags SEO

21 June 2011, 18:16

Jack!

Please, see on installation instruction for product_info.php line
       <?php echo '<a title="' . $header_tags_array['title'] . '" href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $product_info['products_id'], 'NONSSL') . '"/# ' . $header_tags_array['title'] . '">' . $header_tags_array['title']; ?></a></td>
This shold be redirect user to top of the page without reloading. But '"/# ' breaks the link and validation too. I think it should be
       <?php echo '<a title="' . $header_tags_array['title'] . '" href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $product_info['products_id'], 'NONSSL') . '#' . $header_tags_array['title'] . '">' . $header_tags_array['title']; ?></a></td>
After that the link works properly. Same bug for all versions. Am I wrong?