View Single Post
  #2  
Old 10-01-2007, 04:01 PM
  BCSE's Avatar 
BCSE BCSE is offline
 

X-Guru
  
Join Date: Apr 2003
Location: Ohio - bcsengineering.com
Posts: 3,091
 

Default Re: BCSE Static Page mod & Product Metatags Plus code confusion

How about this as an alternative install instructions.

Find
Code:
<meta name="description" content="{$_meta_descr|truncate:"500":"...":false| escape}" />

BEFORE add:
Code:
{* BCSE Begin *} {if $page_data.metadescr} <meta name="description" content="{$page_data.metadescr|escape}" /> {else} {* BCSE End *}

Find:
Code:
<meta name="keywords" content="{$_meta_keywords|truncate:"500":"":false| escape}" />


BEFORE add
Code:
{* BCSE Begin *} {/if} {if $page_data.metakeywords} <meta name="keywords" content="{$page_data.metakeywords|escape}" /> {else} {* BCSE End *}

AFTER add
Code:
{/if} {* BCSE added *}


That should work.

Hope that helps!

Carrie
__________________
Custom Development, Custom Coding and Pre-built modules for X-cart since 2002!

We support X-cart versions 3.x through 5.x!

Home of the famous Authorize.net DPM & CIM Modules, Reward Points Module, Point of Sale module, Speed Booster modules and more!


Over 200 X-cart Mods available & Thousands of Customizations Since 2002 - bcsengineering.com

Please E-Mail us for questions/support!
Reply With Quote