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

***************************************************************************************
1) Apply the following changes to the database:

  ALTER TABLE `headertags` ADD `append_model` TINYINT( 1 ) NOT NULL DEFAULT '0' after append_manufacturer;
  ALTER TABLE `headertags` ADD `sortorder_model` TINYINT( 1 ) NOT NULL DEFAULT '0' after sortorder_manufacturer;

2) Replace the following files:

NOTE: If you use pseudo pages, you will need to edit the includes/header_tags.php file manually.

admin/header_tags_seo.php
admin/header_tags_fill_tags.php
admin/includes/functions/header_tags.php
admin/includes/languages/english/header_tags_seo.php
includes/header_tags.php
includes/functions/header_tags.php
includes/modules/header_tags_social_bookmarks.php

3) In admin/categories.php,

FIND (around 1083):
          if (HEADER_TAGS_ENABLE_HTML_EDITOR == 'No Editor' || HEADER_TAGS_ENABLE_EDITOR_META_DESC == 'false')

REPLACE WITH:

          if (HEADER_TAGS_ENABLE_HTML_EDITOR == 'No Editor' || HEADER_TAGS_ENABLE_EDITOR_CATEGORIES == 'false')

-----------------------------------------------------------------------------------------------
FIND (around 1085):

              $headertags_editor_str = tep_draw_fckeditor('categories_htc_description[' . $languages[$i]['id'] . ']', 600, 300, '');

REPLACE WITH:

              $headertags_editor_str = '<input type="hidden" id="categories_htc_description['. $languages[$i]['id'] . ']" name="categories_htc_description[' . $languages[$i]['id'] . ']" value="" style="display:none" /><input type="hidden" id="categories_htc_description[' . $languages[$i]['id'] . ']___Config" value="" style="display:none" /><iframe id="categories_htc_description[' . $languages[$i]['id'] . ']___Frame" src="fckeditor/editor/fckeditor.html?InstanceName=categories_htc_description[' . $languages[$i]['id'] . ']&amp;Toolbar=Default" width="600" height="300" frameborder="0" scrolling="no"></iframe>';

-----------------------------------------------------------------------------------------------
FIND (around 1125):
          if (HEADER_TAGS_ENABLE_HTML_EDITOR == 'No Editor' || HEADER_TAGS_ENABLE_EDITOR_META_DESC == 'false')

REPLACE WITH:

          if (HEADER_TAGS_ENABLE_HTML_EDITOR == 'No Editor' || HEADER_TAGS_ENABLE_EDITOR_CATEGORIES == 'false')

-----------------------------------------------------------------------------------------------
FIND (around 1127):

              $headertags_editor_str = tep_draw_fckeditor('categories_htc_description[' . $languages[$i]['id'] . ']', 600, 300, tep_get_category_htc_description($cInfo->categories_id, $languages[$i]['id']));

REPLACE WITH:

              $headertags_editor_str = '<input type="hidden" id="categories_htc_description[' . $languages[$i]['id'] . ']" name="categories_htc_description[' . $languages[$i]['id'] .']" value="' . tep_get_category_htc_description($cInfo->categories_id, $languages[$i]['id']) . '" style="display:none" /><input type="hidden" id="categories_htc_description['.$languages[$i]['id'].']___Config" value="" style="display:none" /><iframe id="categories_htc_description['.$languages[$i]['id'].']___Frame" src="fckeditor/editor/fckeditor.html?InstanceName=categories_htc_description['.$languages[$i]['id'].']&amp;Toolbar=Default" width="600" height="300" frameborder="0" scrolling="no"></iframe>';

4) In admin/manufacturers.php

FIND (two times):

 if (HEADER_TAGS_ENABLE_CACHE == 'true') { 

REPLACE WITH:

 if (HEADER_TAGS_ENABLE_CACHE != 'None') { 