Update instructions for updating Header Tags SEO version 3.2.4 to Header Tags SEO V 3.2.5 by Jack_mcs - oscommerce-solution.com

***************************************************************************************
1) Upload the following files:

  admin/headertags_seo.php
  admin/header_tags_test.php
  admin/includes/functions/header_tags.php
  admin/includes/functions/header_tags_general.php

---------------------------------------------------------------------------------------
2) Make the following change to product_info.php

REPLACE (around line 266):

       <td class="smallText" align="center"><?php echo TEXT_VIEWING; ?>&nbsp;
       <?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>

WITH

       <td class="smallText" align="center"><?php echo TEXT_VIEWING; ?>&nbsp;
        <?php  if (! tep_not_null($header_tags_array['title'])) $header_tags_array['title'] = $product_info['products_name'];
         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>

---------------------------------------------------------------------------------------
3) In includes/column_left.php (or column_right.php if that is where the code is),

FIND:

if (HEADER_TAGS_DISPLAY_COLUMN_BOX == 'true' && basename($PHP_SELF) == FILENAME_PRODUCT_INFO)

REPLACE with

if (HEADER_TAGS_DISPLAY_COLUMN_BOX == 'true' && basename($_SERVER['PHP_SELF']) == FILENAME_PRODUCT_INFO)

---------------------------------------------------------------------------------------
4) In admin/includes/functions/general.php,

FIND

  /*** Begin Header Tags SEO ***/

AND

  /*** End Header Tags SEO ***/

REPLACE (the above two lines and all code in between them) WITH

  /*** Begin Header Tags SEO ***/
  require('includes/functions/header_tags_general.php');
  /*** End Header Tags SEO ***/