View Single Post
  #11  
Old 12-18-2003, 08:57 AM
  shan's Avatar 
shan shan is offline
 

X-Guru
  
Join Date: Sep 2002
Location: Birmingham, UK
Posts: 6,163
 

Default

Find this in home.tpl

Code:
{if $login eq "" } { include file="news.tpl" } {else}

replace with

Code:
{if $conf.news_show and $login eq "" } { include file="news.tpl" } {else}

and run this sql on the database

Code:
INSERT INTO xcart_config VALUES ('news_show', 'Show News', 'N', 'Modules', 11, 'checkbox');

that should give you the option in admin to turn news box on or off

or ....

just comment out the code in home.tpl like this

Code:
{* {if $login eq "" } { include file="news.tpl" } {else} *}
__________________
Looking for a reliable X-cart host ?
You wont go wrong with either of these.

EWD Hosting
Hands On Hosting
Reply With Quote