Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

pdcelec

Pioneers
  • Posts

    594
  • Joined

  • Last visited

  • Days Won

    3

pdcelec last won the day on March 11 2013

pdcelec had the most liked content!

About pdcelec

  • Birthday 04/22/1966

Profile Information

pdcelec's Achievements

  1. it means that there is no table named "os.discount_coupons" in your database. Do the instructions in the add on mention this ?
  2. Have a look at catalog/privacy.php and use a similar format (also do not forget catalog/includes/languages/english/privacy.php for the defines)
  3. It does not matter whether the lines are added to the beginning or end of the file HOWEVER, the convention is to add them to END of the file BEFORE the closing ?>
  4. Issue 1 catalog/includes/english.php is where these definiitions come from
  5. It means that you already have a column with the name 'products_spec' in the database
  6. Replace SELECT p.products_id as pID, p.products_date_added as date_added, p.products_last_modified as last_mod, p.products_ordered FROM products p, categories c, products_to_categories p2c where c.categories_status='1' and p.products_id = p2c.products_id and p2c.categories_id = c.categories_id and p.products_status='1' ORDER BY products_ordered DESC To SELECT p.products_id as pID, p.products_date_added as date_added, p.products_last_modified as last_mod, p.products_ordered FROM products p, categories c, products_to_categories p2c where p.products_id = p2c.products_id and p2c.categories_id = c.categories_id and p.products_status='1' ORDER BY products_ordered DESC Alternatively, install enable/disable categories
  7. Change that piece of code with if ( (!isset($_GET['sort'])) || (!preg_match('/^[1-8][ad]$/', $_GET['sort'])) || (substr($_GET['sort'], 0, 1) > sizeof($column_list)) ) { for ($i=0, $n=sizeof($column_list); $i<$n; $i++) { if ($column_list[$i] == 'PRODUCT_LIST_NAME') { $_GET['sort'] = $i+1 . 'a'; $listing_sql .= " order by pd.products_name"; break;
  8. Which URL rewriter are you using?
  9. Master products maybe http://addons.oscommerce.com/info/1681 for RC2.2a http://addons.oscommerce.com/info/7738 for 2.3.x
  10. You seem to be creating problems that dont exist. I installed this in about 2 minutes.
  11. As far as I am aware, only products are listed in the feed not articles
  12. In application_top change this bit // add the products model to the breadcrumb trail to // add the products name to the breadcrumb trail and the bit below if (isset($_GET['products_id'])) { $name_query = tep_db_query("select products_name from " . TABLE_PRODUCTS_DESCRIPTION . " where products_id = '" . (int)$_GET['products_id'] . "' AND language_id=" . (int)$languages_id . ""); if (tep_db_num_rows($name_query)) { $name = tep_db_fetch_array($name_query); $breadcrumb->add($name['products_name'], tep_href_link(FILENAME_PRODUCT_INFO, 'cPath=' . $cPath . '&products_id=' . $_GET['products_id'])); } }
×
×
  • Create New...