X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Changing design (https://forum.x-cart.com/forumdisplay.php?f=51)
-   -   I can't find where to turn off Newsletter Signup? (https://forum.x-cart.com/showthread.php?t=4346)

shan 12-18-2003 08:57 AM

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}
*}



All times are GMT -8. The time now is 03:57 PM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.