Quote Originally Posted by bonnit View Post
lol no problem, is there a repackaged version that can be downloaded?
it is the one you should have put into the includes/modules/your_template folder

it came with the download of her mod

or in her read me it tells you exactly what to insert into the meta_tags.php file


make a duplicate of the meta_tags.php found in that path then add it to your templates folder...here is the code to add to it:

Code:
 metatags.php

Add this code (line 293 in 1.3.8):



    //bof facebook like button

    if($product_info_metatags->fields['products_image']!='') {

        $FBimgURL = (($request_type == 'SSL') ? HTTPS_SERVER . DIR_WS_HTTPS_CATALOG : HTTP_SERVER . DIR_WS_CATALOG ) . DIR_WS_IMAGES . $product_info_metatags->fields['products_image'];

        define('META_TAG_FBIMG', $FBimgURL); 

    } else {

        define('META_TAG_FBIMG', '');

    }

    define('META_TAG_FBTITLE', str_replace('"','',zen_clean_html($product_info_metatags->fields['products_name'])));

    //eof facebook like button



between this 



 } // CUSTOM META TAGS



and this



  } // EOF

  break;