October 29th, 2008
Sometimes, you may need to update certain aspects of all products in your catalog. Instead of manually changing the aspect (in this case weight) of each product, you can run a simple SQL command through your Admin –> Install SQL Patches.
Here’s how to update the weight of ALL products in your catalog to 1/2 lb:
1. First, ALWAYS do a data base backup. If you have the Database Backup from Admin mod installed go to Tools -> Database Back Up MySQL and back up your database.
2. Go to Tools -> Install SQL Patches and run the following code:
UPDATE products SET products_weight = 0.5;
All products now have the weight of 1/2 lb. If you want the weight to be different, just change the 0.5 to whatever weight you want. The number should be in pounds.
If you have items in your catalog that are down loadable products, they must have a weight of 0. The most common instance of down loadable products is Gift Certificates. To update the weight of all products EXCEPT your gift certificates, enter the following command in step 2:
UPDATE products SET products_weight = 0.5 WHERE master_categories_id != 26;
This will update ALL products weight EXCEPT those in category 26 (gift certificate category). Change the master_categories_id to your actual number.
Posted in Admin Upgrades | No Comments »
October 27th, 2008
By default, Zen Cart comes with 3 Order Status options; processing, delivered and update. Oftentimes, you may want to add additional options such as “Shipped”. Adding new options is quite easy, just follow the steps below.
1. Go to Localization –> Order Status in your Zen Cart admin area and click on the “Insert” button.

2. Enter your new Order Status in the field provided and click on the “insert” button.

Now when processing orders, you will have “Shipped” as a Order Status option.
Happy Zen Cart!
Posted in Admin Upgrades, Basic Zen Cart Tips | No Comments »
October 24th, 2008
Here’s an easy way to add a “New Product” icon automatically to your product description pages in Zen Cart.
1. Create a small graphic that says New or NEW PRODUCT and name it new.gif. Then upload your image to includes/templates/YOUR_CUSTOM_TEMPLATE/images .
2. Open includes/templates/YOUR_CUSTOM_TEMPLATE/css/stylesheet.css at the bottom add the following lines:
.newProduct {
background-image:url(../images/new.gif);
width: Your image width in px;
height: Your image height in px;
}
Make sure you enter your actual image pixel dimensions.
3. Open includes/templates/YOUR_CUSTOM_TEMPLATE/templates/tpl_product_info_display.php and add the following:
$datesql = “select products_date_added from zen_products where products_id = “. (int)$_GET['products_id'] .” “;
$date_display = $db->Execute($datesql);
$newdate = $date_display->fields['products_date_added'];
$newdate2 = $newdate - 30;
function reformatDate($newdate) {
list($year, $month, $day, $hour, $min, $sec) = split( ‘[: -]‘,
$newdate);
return “$year-$month-$day”;
}
$dateA=$newdate;
$theDate=reformatDate($dateA);
$thirty_days_ago = mktime()-2592000;
if ($theDate >= date(’Y-m-d’, $thirty_days_ago)) { echo ‘<div class=”new”>
</div>’; }
?>
You may have to play with the placement of the code to get the image in the correct place.
Your products will display the new.gif icon you created for 30 days!
Posted in Basic Zen Cart Tips, CSS for Zen Cart, Increase Sales | 6 Comments »
October 22nd, 2008
Offering Free Shipping on orders over a certain dollar amount is a great promotion and is easy to set up!
1. Log in to your Zen Cart admin
2. Go to “Modules -> Order Total”
3. Click on “Shipping”, default installation 6th line. See screen shot, click for full size view.

4. Click on the “edit” button
5. Check “Yes” under “Allow Free Shipping”, enter the minimum dollar amount an order must have to receive free shipping.Select National, international or both for Free Shipping zones. See screen shot, click for full size view.

6. Click “update” for your changes to take effect.
Posted in Basic Zen Cart Tips | No Comments »
October 21st, 2008
Looking for a good way to spruce up your eCommerce site for the holidays?
eSales411.com has new holiday themed checkout button set for Zen Cart. Sets include 7 buttons that guide your customers through the checkout process. At only $5 per set, this is a great way to get your set ready for the holidays.
Here are a few samples:



To purchase the buttons, visit eSales411.com
Posted in Basic Zen Cart Tips, Increase Sales | No Comments »