This mod will allow you to store the information for your Shipping & Returns, Conditions of Use and Privacy Notice
pages in your database. The information contained in these new tables is easily edited from within the admin area of your site.

Please make sure you BACKUP your site before making any additions.



Heres what you need to do.

Upload all the files into their correct folder.

Add the follwing into the following files

1.  admin/includes/column_left.php

add this line just after:  require(DIR_WS_BOXES . 'tools.php');

require(DIR_WS_BOXES . 'information.php');


2. Add these lines to your database using phpmyadmin or any other mysql editor you have.

CREATE TABLE info_conditions (Id int(1) unsigned NOT NULL default '0', Text blob NOT NULL, PRIMARY KEY  (Id)) TYPE=MyISAM;
CREATE TABLE info_privacy (Id int(1) unsigned NOT NULL default '0', Text blob NOT NULL, PRIMARY KEY  (Id)) TYPE=MyISAM;
CREATE TABLE info_shipping (Id int(1) unsigned NOT NULL default '0', Text blob NOT NULL, PRIMARY KEY  (Id)) TYPE=MyISAM;


Once this is done you have completed your mod.

Hope you find it easy to use and install.

Any questions or comments I can be contacted at osc@cralyn.com