Update instructions for updating Header Tags SEO version 3.1.0 to
Header Tags SEO V 3.1.1 by Jack_mcs

1) Upload all of the files in the catalog directory.

2) Run Add missing pages in Page Control to setup the 
new includes/header_tags.php file.


***************** FOR STS USERS ONLY ********************
3) Remove the headertags.php entry from admin->Modules->STS. Be sure to 
remove it from all of the sections.

4) In includes/modules/sts_inc/general.php, 

REPLACE:

    $sts->template['headertags']= "<title>" . TITLE ."</title>";

WITH:

    if (!isset($sts->template['headertags'])) $sts->template['headertags']= "<title>" . TITLE ."</title>";

5) In includes/header.php,

FIND:

  // START STS 4.1
  $sts->restart_capture ('applicationtop2header'); // Capture header from the actual script, needed to take out javascript
  // END STS 4.1

ADD BENEATH:

  /*** Begin Header Tags SEO ***/
  // We include header_tags.php early on to make $header_tags_array available to subsequent scripts
  if ( file_exists(DIR_WS_INCLUDES . 'header_tags.php') ) {
    require(DIR_WS_INCLUDES . 'header_tags.php');
  }
  $sts->restart_capture ('headertags');
  /*** End Header Tags SEO ***/
