Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

lmassia

Archived
  • Posts

    6
  • Joined

  • Last visited

Profile Information

  • Real Name
    Linda Massia

lmassia's Achievements

  1. This line occurs in catalog/includes/boxes/categories.php. $categories_query = tep_db_query("select c.categories_id, cd.categories_name, c.parent_id from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where c.parent_id = '0' and c.categories_id = cd.categories_id and cd.language_id='" . (int)$languages_id ."' order by sort_order, cd.categories_name"); Check that you have every item as shown. Hope this helps.
  2. Go to catalog/includes/modules/ezier_new_fields.php. Go to: // Uncomment the line that you want below, and comment our the default option if you like, description is to the right // echo TEXT_PRODUCTS_SAVE_INFO . $save2 . '</font>'; //This line is price shown // echo TEXT_PRODUCTS_SAVE_INFO . $save . '%</font>'; //This line is % shown echo TEXT_PRODUCTS_SAVE_INFO . $save2 . ' (' . $save . '%)</font>' As you can see, the default option is both the amount and the percent. Delete the two slashmarks at the beginning of the line for what you want and put two slashmarks at the beginning of the default line. That's it. B)
  3. I also have a "Featured" box where I have my Mother's Day items set out. Any way I could get the Retail Price, Your Price (which is the only price currently showing) and You Save info on both the page listing ALL the products as well as the Individual pages. Thx.
  4. Everything is going well, however... When you click on the New Products box, and go to the page that lists ALL of the products.... We have: Retail Price: $15.95 (with strikethru) Your Price: $10.60 Is there ANY way to get the SAVINGS line below this, e.g. You Save: $5.35 (34%) which DOES show up on the Individual Product Page. Thx.
  5. I installed the contribution Ezier New Fields and everything has gone well. However... Step 3 changes catalog/product_info.php This is what my product_info.php file has in it which is none of the lines listed in Step 3. <?php /* $Id: product_info.php,v 1.1.1.1 2004/03/04 23:38:02 ccwjr Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright ? 2003 osCommerce Released under the GNU General Public License */ require('includes/application_top.php'); require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_PRODUCT_INFO); $product_check_query = tep_db_query("select count(*) as total from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_status = '1' and p.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and pd.products_id = p.products_id and pd.language_id = '" . (int)$languages_id . "'"); $product_check = tep_db_fetch_array($product_check_query); $content = CONTENT_PRODUCT_INFO; $javascript = 'popup_window.js'; require(DIR_WS_TEMPLATES . TEMPLATE_NAME . '/' . TEMPLATENAME_MAIN_PAGE); require(DIR_WS_INCLUDES . 'application_bottom.php'); ?> Any idea where to go to make the changes needed for Step 3. I'm getting the Retail Price on the Sub-Category page like at http://atozbestbargains.chainreactionweb.c...p?cPath=104_105 But, I need it to be on the Individual Page like at http://atozbestbargains.chainreactionweb.c...products_id=288 Thx for the help.
  6. I installed the contribution Ezier New Fields and everything has gone well. However... Step 3 changes catalog/product_info.php This is what my product_info.php file has in it which is none of the lines listed in Step 3. <?php /* $Id: product_info.php,v 1.1.1.1 2004/03/04 23:38:02 ccwjr Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2003 osCommerce Released under the GNU General Public License */ require('includes/application_top.php'); require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_PRODUCT_INFO); $product_check_query = tep_db_query("select count(*) as total from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_status = '1' and p.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and pd.products_id = p.products_id and pd.language_id = '" . (int)$languages_id . "'"); $product_check = tep_db_fetch_array($product_check_query); $content = CONTENT_PRODUCT_INFO; $javascript = 'popup_window.js'; require(DIR_WS_TEMPLATES . TEMPLATE_NAME . '/' . TEMPLATENAME_MAIN_PAGE); require(DIR_WS_INCLUDES . 'application_bottom.php'); ?> Any idea where to go to make the changes needed for Step 3. I'm getting the Retail Price on the Sub-Category page like at http://atozbestbargains.chainreactionweb.c...p?cPath=104_105 But, I need it to be on the Individual Page like at http://atozbestbargains.chainreactionweb.c...products_id=288 Thx for the help.
×
×
  • Create New...