
ZenCart or Magento, which of them is better for a business? It depends of many factors and it depends of who take the decision. As developer the answer is simple: you will use the one in which you are more …
You will be taken to a registration page - Please write that you wish to get BUSINESS CONNECTION FREE TRIAL
There is no catch, just launching a comprehensive business oriented web marketing tool.
Some of our readers will be lucky. BE ONE OF THEM!

ZenCart or Magento, which of them is better for a business? It depends of many factors and it depends of who take the decision. As developer the answer is simple: you will use the one in which you are more …

It is mobile project done for one of our clients. BlueOnline.com.au As an eCommerce website (money in between) we had to pay more attention to every single side of the project. Mobile development is at the very beginning and even …
When you first time install a Zen Cart your website is looking not quite apple. To make your zencart (online shop) to represent your company / personality you may follow the following steps. 1. Choose e template (if you consider). …
At the end of July 2011 the zen cart 1.5 beta release is on the market. Zen cart 1.5 is the first open source ecommerce cms compliant with security standard. There are no big and relevant improvements regarding with the …
When to use WordPress and when to use Zen Cart A) WordPress is far one of the best CMS on the marked from many points of view including SEO. The single “problem” WordPress has is that Oppress is just missing …
What CMS (content management system) should be choose if the main target is to have the website up in Google Search as soon as possible and as high as possible. Just facts after two years of studying (analyse) evolution of …
Regsiter procedure on Zen Cart based wensites: /includes/modules/pages/create_account/jscript_form_check.php and /includes/modules/YOUR ACCOUNT/tpl_create_account_default.php or /includes/modules/tpl_create_account_default.php and delete the line(s) relevant – do not check filed you do not wish to be mandatory / insert lines for fileds you wish to be. /includes/templates/YOUR_TEMPLATE/templates/tpl_create_account_default.php /includes/templates/YOUR_TEMPLATE/templates/tpl_modules_create_account_dealer.php …
Additional images are not shown – ZenCart Tabbed Products Lite module Cause – file is not found Check if the file exists in your folder – file names array is not built. if you upload files with CAPITAL extensions like …
System: OLALA e-Commerce system – standard version (based on Zen cart) Licence: Commercial Company who request it: The French Organic Company (Melbourne,VIC) How to manage Coupons: Any coupon can be : – used a one or more times by one …
Module name: Product of the day (Deal of the day) Build for: OLALA e-Commerce system – standard and enhanced version (based on Zen cart) Licence: Commercial Company who requested it: The French Organic Company (Melbourne, VIC) Sold in Australia, Europe …
All looks good and it works as long as your ZenCart is imstalled in the root. Problems appear when you have ZenCart installed in /shop folder for example. To understand better I will take and example: website: olalawebsite.com/shop absolute path …
Basic files:used to display categories listing (caegories which have subcategories) /includes/YOUR_TEMPLATE/templates/tpl_index_categories.php Here is displayed categ image and description if exist and are enabled to be displayed. On #35you have: require($template->get_template_dir(‘tpl_modules_category_row.php’,DIR_WS_TEMPLATE, $current_page_base,’templates’). ‘/tpl_modules_category_row.php’); /includes/YOUR_TEMPLATE/templates/tpl_modules_category_row.php From now on is simple, there will …
Most of what you need is located into query_factory.php 1. standard way to browse extracted records ( no pagination): $sql= “YOUR SQL STATEMENT” $result_list = $db->Execute($sql) while (!$result_list->EOF) { …………….. YOUR PHP / HTML CODE …………….. $result_list->MoveNext(); } Eventually set …
1) /includes/languages/english/my_module_name.php must have at least two lines define(‘NAVBAR_TITLE_1′, ‘Module Name’); define(‘HEADING_TITLE’, ‘Module Name more details’); 2) /includes/modules/pages/my_module_name Folder which must contain at least this file: /includes/modules/pages/my_module_name/header.php // This should be first line of the script: $zco_notifier->notify(‘NOTIFY_HEADER_START_MY_MODULE_NAME‘); require(DIR_WS_MODULES . zen_get_module_directory(‘require_languages.php’)); …
There is no init heandler for login / register The file where the user session is created / recreated is : /includes/module/pages/login/header_php.php action = process, around #84 there are interesting lines: $_SESSION['customer_id'] = $check_customer->fields['customers_id']; $_SESSION['customer_default_address_id'] = $check_customer->fields['customers_default_address_id']; $_SESSION['customers_authorization'] = $check_customer->fields['customers_authorization']; …
To create a side box (left or right) for Zen Cart please follow instructions bellow. If you do not know what to write into new created files just open existing files already done. Look for them in the same folders …
Admin area: 1) Add new content which allow you to add/change data in the new fieed admin/includes/modules/product/collect_info.php Add a line, just copy and change all between <tr> …</tr> Consider <tr> …</tr> space as well. 2) Create a function which extract …
Data about Zencart are stored in two tables : YOURPRFIX_configuration_grp YOURPRFIX_configuration For Define page the ID from YOURPRFIX_configuration_grp table is 25 Into admin area the page used to change/save parameters into configuration tables from database is /admin/configuration.php In 1.3.8a it …
The most “interesting” part is the step 2 of 3 – Payment Information because here is computed the order value including any discount, here the user can redeem his code and here the user will choose the payment option. We …
Many articles are written about how to secure your zencart based website. Most of them are focused on “php/zencart” I will try to keep it simple: 1) The hosting company must have installed mod-security (php) How you can check it? …
Currency selector from ZenCart is perfect as long as you are not using any pretty/frendly URL adon. It may work but sometimes it may not baecause currency selector use GET method. To avoid further headache the beset is to capture …
A) Components To create a shipping module two main files are compolsory: /includes/languages/english/modules/shipping/YOUR_SHIPPING_MODULE.php Usually it contains two lines: title and description For example: define(‘MODULE_SHIPPING_YOUR_SHIPPING_MODULE_TEXT_TITLE’ , ‘YOUR_SHIPPING_MODULE‘); define(‘MODULE_SHIPPING_YOUR_SHIPPING_MODULE_TEXT_DESCRIPTION’ , ‘YOUR_SHIPPING_MODULE‘) ; /includes/modules/shipping/YOUR_SHIPPING_MODULE.php It contains a “class” which will be initialised into …
Table used: TABLE_CUSTOMERS_BASKET – customers_basket Structure: customers_basket_id int(11) No None auto_increment customers_id int(11) No 0 products_id tinytext latin1_swedish_ci No None customers_basket_quantity float No 0 final_price decimal(15,4) No 0.0000 customers_basket_date_added varchar(8) TABLE_CUSTOMERS_BASKET_ATTRIBUTES – customers_basket_attributes Structure: customers_basket_attributes_id int(11) No None auto_increment customers_id …
The most complex scenario : zen cart module / add on must have two parts: front end user and admin area 1. Admin area a) To have a new main menu on horizontal bar: – edit and change based on …
Define Pages are used in front user interface / website and display static information. These pages can be easy changed by the owner of the website. Changing them do not require IT knowledge. 1) How to delete / disable pages …
Let’s suppose your Zen Cart module is named MyZenModule To add a module in admin area in order to beable to manage your module from the backend of a zen cart website you need to: 1. Add a page: /admin/mymodule.php …
1. Module Manager “Module manager” allow to manage ZenCart adson very easy. Install it from the begining. Based on author it is alpha (check zen cart for update) and it working on 1.3.8a. To have no problem and errors like …
How to add field in products table and how to search in new field Adding filed in Zen Cart prodcuts table must be done carefully. Please make sure you have a fullbackup of your website: files and database before proceeding. …
a)How items are displayed by default in “News items for …” and how you can control it with no change into the core of ZenCart Sudy case: display New entry in shopping cart page when cart is empty. copy the …
Even if this module is replaced by another one, it may be used on many websites. a) This module computes shipping value and days for delivery based on value retrieved from: http://austpost.vcsweb.com/ From various reasons you may receive an error …
Note: – short tutorial – How To Move a Zen Cart website – does not cover already installed and configured plug-ins – take care of your own changes in your source code added (plug-ins, templates or … the core) 1) …
Categories: – categories – categories_description Manufacturesrs: – manufacturers – manufacturers_info Products: – products – products_description – products_to_categories Attributes: – products_attributes – products_options – products_options_values – products_options_values_to_products_options Stock per Attribute (if module is installed) – sco_products_with_attributes_stock If you create a shop …
Administrators: – admin Customers – customers contains all data including email address and password -md5 format – address_book contains up to 5 (default) addresses for every single customer – shipping and billing address linked to customer on customers_id Related table …
New products tab. Files: 1. include/modules/new_products.php 2. includes/templates/YOUR_TEMPLATE/templates/tpl_modules_whats_new.php Special products tab. Files: 1. include/modules/special_index.php 2. includes/templates/YOUR_TEMPLATE/templates/tpl_modules_special_default.php Featured products tab. Files: 1. include/modules/featured_products.php 2. includes/templates/YOUR_TEMPLATE/templates/tpl_modules_featured_products.php Check that are listed only active products (files under module directory). For more details contact Zen …
Files: 1. include/modules/pages/products_all 2. includes/templates/YOUR_TEMPLATE/templates/tpl_modulse_products_all_listing.php 3. includes/templates/YOUR_TEMPLATE/templates/tpl_products_all_default.php For more details contact Zen Cart Website Design
Files: 1. include/modules/pages/products_new 2. includes/templates/YOUR_TEMPLATE/templates/tpl_modulse_products_new_listing.php 3. includes/templates/YOUR_TEMPLATE/templates/tpl_products_new_default.php For more details contact Zen Cart Website Design
Files: 1. include/modules/pages/specials 2. includes/templates/YOUR_TEMPLATE/templates/tpl_modulse_products_new_listing.php 3. includes/templates/YOUR_TEMPLATE/templates/common/tpl_columnar.php For more details contact Zen Cart Website Design
Files: 1. include/modules/pages/featured_products 2. includes/templates/YOUR_TEMPLATE/templates/tpl_modules_products_featured_listing.php 3. includes/templates/YOUR_TEMPLATE/templates/tpl_featured_products_default.php for more details contact Zen Cart Website Design