/* ===================================================== FeedShare (SM) - by Lushann Web Technologies ----------------------------------------------------- http://www.FeedShare.com/ ----------------------------------------------------- Copyright (c) 2005 Lushann Web Technologies, LLC. ===================================================== THIS IS COPYRIGHTED SOFTWARE PLEASE READ THE LICENSE AGREEMENT http://www.FeedShare.com/php_license.aspx ===================================================== File: template.php Version: 1.1 Date: 6/1/05 ----------------------------------------------------- Purpose: This page presents products in a grid view. This format is best for showing products on a defualt/home page. ===================================================== */ ///////////////////////////////////////////////////// // // REQUIRED PAGE SETTINGS // // These settings are specific to this page, allowing // you to have different pages with different layouts, // number of products and product images sizes. // ///////////////////////////////////////////////////// // Your Affiliate ID Number for the specified advertisers affiliate program $gs_AffID = "26204"; // What layout mode do you want to use? $gs_LayoutType = 0; // 0 = Grid (shows products in a table with multiple columns); // 1 = Summary (shows products in one column with image to the left) // How Many Products Do You Want To Show Per Page? $gs_DefaultPageSize = 20; // Specify what page sizes will be available $gs_PageSizeOptions = array(16,32,64,128); // Specify the height in pixels of the product images $gs_ImgSize = 120; // What's the maximum number of characters to show in the product description? $gs_DescMaxLen = 400; // How do you want to sort the products by default? $gs_DefaultSort = 3; // 0 = Product Name A-Z; // 1 = Product Name Z-A; // 2 = Low Price; // 3 = High Price // Do you want to show group (category/vendor/etc) dropdown list boxes at the top of the page? $gs_ShowGroups = 1; // 0 = Show none; // 1 = Show categories only (if available); // 2 = Show vendors only (if available); // 3 = Show categories and vendors (if available) // Do you want your links to open in a new window when visitors leave your site? $gs_Target = "_blank"; // "blank" = Show in new window; // "top" = Stay in the same window // Specify the "Buy Now" image to use (path should be absolute or relative from location of the template.php page) $gs_BuyNowImg = "buynow.gif"; // Do you want to show product descriptions? $gs_ShowDesc = 1; // 0 = No; // 1 = Yes ///////////////////////////////////////////////////// // // OPTIONAL SETTINGS // ///////////////////////////////////////////////////// // To show products that match specific words, enter them below, seperated by a space $gs_Keywords = "acronis radmin ultraedit feed_editor spotmau global_mapper vypress poco dvd_ripper_platinum html_editor_2008 acclaim"; // Specify an image to show if a product image is missing or fails to show in the browser $gs_BackupImgURL = "buynow.gif"; ///////////////////////////////////////////////////// // // GRID LAYOUT ONLY SETTINGS // // These settings only apply if this page is set to // display products in the grid format // ///////////////////////////////////////////////////// // How Many Products Do You Want To Show Per Row? $gs_RowSize = 4; ?> include("fs_php/core/system.php"); ?>
|