If you purchased the template via the X-Cart Marketplace, download the latest zip file via your X-Cart Marketplace account.
Prior to installing the template, we recommend making a backup of your existing store files and database.
Unzip the zip file, to your local computer.
Then upload the files and folders in the /UPLOAD
folder to your store root folder (where config.php
resides).
This step enables your Smarty debug console to be private. A new IP address field will be added to Admin > General Settings.
In /init.php
REPLACE...
WITH...
This step loads the reBOOT related code for various functions.
In /postauth.php
BEFORE...
INSERT...
This step loads the product related code for custom fields etc.
In /product.php
BEFORE...
INSERT...
This step ensures that all tables are exported when performing a database backup in X-Cart.
In /admin/db_backup.php
REPLACE...
WITH...
This step populates the manufacturers dropdown in the admin 'Quick Find' panel.
In /admin/auth.php
AND /provider/auth.php
BEFORE....
INSERT...
This step saves all the custom product fields and gets the maximum file upload size.
In /include/product_modify.php
BEFORE...
INSERT...
THEN BEFORE...
INSERT...
This step adds custom product fields to the $trusted_post_variables
array.
In /admin/product_modify.php
AFTER...
INSERT...
This step adds custom product fields to the $trusted_post_variables
array.
In /provider/product_modify.php
AFTER...
INSERT...
This step adjusts the products 'per page' dropdown options.
In /include/search.php
REPLACE....
WITH...
This step loads the templates for custom pages.
In /skin/common_files/common_templates.tpl
BEFORE....
{else}
INSERT...
{* Reboot Template *}
{elseif $main eq 'reboot_faq'}
{include file='custom/faq/faq.tpl'}
{elseif $main eq 'reboot_glossary_admin'}
{include file='admin/reboot_glossary.tpl'}
{elseif $main eq 'reboot_glossary'}
{include file='custom/glossary.tpl'}
{elseif $main eq 'reboot_page_views'}
{include file='admin/reboot_page_views.tpl'}
{elseif $main eq 'reboot_order_stats'}
{include file='admin/reboot_order_stats.tpl'}
{elseif $main eq 'reboot_manager'}
{include file='admin/reboot_manager.tpl'}
{elseif $main eq 'reboot_testimonials_admin'}
{include file='admin/reboot_testimonials.tpl'}
{elseif $main eq 'reboot_testimonials'}
{include file='modules/Testimonials/testimonials.tpl'}
{elseif $main eq 'reboot_testimonial_add'}
{include file='modules/Testimonials/testimonial_add.tpl'}
{elseif $main eq 'reboot_coupons_main'}
{include file='modules/Discount_Coupons/coupons_main.tpl'}
{elseif $main eq 'reboot_product_videos'}
{include file='custom/product_videos.tpl'}
{elseif $main eq 'reboot_products_trending'}
{include file='custom/products_trending.tpl'}
{elseif $main eq 'wordpress'}
{include file='custom/wordpress.tpl'}
{elseif $main eq 'reboot_lookbook_admin'}
{include file='admin/reboot_lookbook.tpl'}
{elseif $main eq 'reboot_lookbook'}
{include file='custom/lookbook/lookbook.tpl'}
{elseif $main eq 'reboot_visitors'}
{include file='admin/reboot_visitors.tpl'}
{elseif $main eq 'reboot_blocked_ips'}
{include file='admin/reboot_blocked_ips.tpl'}
{elseif $main eq 'reboot_webp'}
{include file='admin/reboot_webp.tpl'}
{elseif $main eq 'reboot_blog'}
{include file='blog/blog.tpl'}
{elseif $main eq 'xgallery_admin'}
{include file='admin/main/xgallery.tpl'}
{elseif $main eq 'xgallery'}
{include file='modules/XGallery/xgallery.tpl'}
{elseif $main eq 'xfaq_admin'}
{include file='admin/main/xfaq.tpl'}
{elseif $main eq 'xfaq'}
{include file='modules/XFaq/xfaq.tpl'}
{* /Reboot Template *}
This step adds the assets for the new HTML editors.
In /skin/common_files/single/home.tpl
AND /skin/common_files/admin/home.tpl
(if using X-Cart Platinum)
BEFORE....