//////////////////////////////////////////////////////////////////////
//
// MightyMerchant - A shopping cart using PHP and mysql
//
// Copyright (c) 2004 Datahost, Inc.
//
//////////////////////////////////////////////////////////////////////
$base_URL = "http://www.nutritionalchemistry.net"; //base path of the shopping cart NO slash at the end!
$secure_URL = "https://willow.secure-datahost.com/www.nutritionalchemistry.com"; //secure URL
$shop_directory = "shop"; //the name of the directory containing the shop
$shop_path = "/www/htdocs/www.nutritionalchemistry.com";
$site_directory = "www.nutritionalchemistry.com"; //the name of the directory containing the shop
//if not using default templates, comment out this line
$shop_templates = 'hint_cart';
//Set which modules are active
$modules = array('site content','settings');
//This is used on both the site and the admin for the {YOUAREHERE} links.
$top_link_text = 'Top';
$default_home_page = "cpage_7";
//Add any special links desired to the site administrator
$admin_links[0] = array('Site Specific Documentation', 'http://www.nutritionalchemistry.net/shop/user_docs.php "target=new"');
//$admin_links[1] = array('Tips', 'http://datahost.com/');
//$sales_tax_rate = 0;
//$sales_tax_state = "NONE";
//$myob_log = 0; //Set to 1 if this customer wants to download an myob log, if set add adminlink?
//$ecommerce_log = 0; //Set to 1 if this customer wants to ecommerce loggin in urchin
$cookie_id = "nutritionalchemistry";
//if this site uses quantity pricing uncomment this row
//$using_qty_pricing = 1;
$search_items_per_page = 25;
//If account subscriptions are offered set subscription options here
//uncomment these lines
//$subscribe_sku = 'sub';
//$accounts_enabled = 1;
//$accounts_expire = 365; //in days
//$account_group = '429'; //default group, group is used to set access level below
//if offering wholesale or account access set discounts here
//the wholesale price is multiplied by the price factor
//uncomment the line below, you can add more lines
//$access['429'] = array('password' => 'teaching','price_factor' => .5);
//Set sizes that images should be resized to, will be moving this to the categories
$image_size['product_image1'] = array(275,325);
$image_size['th_product_image1'] = array(150,150);
$image_size['product_image2'] = array(275,325);
$image_size['th_product_image2'] = array(150,150);
$image_size['cat_image1'] = array(275,325);
$image_size['th_cat_image1'] = array(150,150);
//move this to the categories
$items_per_page = 6; //The number of products to display on each page
$items_per_row = 3; //The number of items to display on each row of a product listing
$cats_per_page = 15; //The number of categories to display on each page
$cats_per_row = 3; //The number of categories to display on each row of a category listing
$multi_items_per_page = 50; //The number of products to display on each page of multilist
$multi_items_per_row = 1; //The number of items to display on each row of a multilist
//Set special HTML for displaying product flags
$product_flag1 = 'Featured!';
$product_flag2 = 'Sale!';
$product_flag3 = ' ';
$use_pgp = 0; //Set to 1 if secure email should be encrypted, 0 if not
$multipart_email = 1;
//This section is used if a catalog wants to display the items in different
//categories to display differently.
//for each row listed here, there must be a directory in the tpl
//folder of the shop that matches the name listed here containing
//the files that are different than the default
//each row is ($template[directory] = array(items per page, items per row, cat per page, cats per row);
$templates["announcements"] = array(60,1);
$templates["webpages"] = array(10,1,10,1);
$templates["faq"] = array(10,1);
$templates["gallery"]=array(10,1);
$templates["links"]=array(10,1);
$templates["testimonials"] = array(6,1);
$templates["homepage"] = array(20,1);
$templates["casestudies"] = array(20,1);
$templates["withnav"] = array(20,1);
$templates["articles"] = array(20,1);
//////////////////////////////////////////////////////////////////////
?>