Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

constantine247

Pioneers
  • Posts

    9
  • Joined

  • Last visited

Profile Information

  • Real Name
    Constantin Neacsu

constantine247's Achievements

  1. Good day, I have installed this contribution and I have a question. My category structure is something like: Top › Catalog › APRILIA › AF1 FUTURA 125 › 1990-1992 › All years ›Body the category url is like: website/all-years/body-c-25_51_52_53_54.html it contains only the parent for the body category. I would like the url to contain more parents so the url to look like: website/aprilia/af1-futura-125/1990-1992/all-years/body-c-25_51_52_53_54.html Is that possible? Also, the product page, now it is: website/fuel-tank-white/body-p-575.html I would like to have a url like: website/fuel-tank-white/aprilia/af1-futura-125/1990-1992/all-years/body-p-575.html If anyone could point me to the right direction to make the modifications I would be greatful! Thank you, Constantin
  2. Hi, if I have the optional Product List Filter installed, can you provide with correct code to filter products for selecte model by manufacturer? Original code follows: // optional Product List Filter if (PRODUCT_LIST_FILTER > 0) { if (isset($HTTP_GET_VARS['manufacturers_id'])) { $filterlist_sql = "select distinct c.categories_id as id, cd.categories_name as name from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c, " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where p.products_status = '1' and p.products_id = p2c.products_id and p2c.categories_id = c.categories_id and p2c.categories_id = cd.categories_id and cd.language_id = '" . (int)$languages_id . "' and p.manufacturers_id = '" . (int)$HTTP_GET_VARS['manufacturers_id'] . "' order by cd.categories_name"; } else { $filterlist_sql= "select distinct m.manufacturers_id as id, m.manufacturers_name as name from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c, " . TABLE_MANUFACTURERS . " m where p.products_status = '1' and p.manufacturers_id = m.manufacturers_id and p.products_id = p2c.products_id and p2c.categories_id = '" . (int)$current_category_id . "' order by m.manufacturers_name"; } .........
  3. Hello, how can I have the user redirected to cPath=0 (main category list) when he selects the model when he already browsed and he is in a subcategory? thank you, constantin
  4. Hey Pupstar, thank you for the quick reply. Tried to do that but I start to get lost when java starts..
  5. Hello, I have a website running osc 2.3.1 with YMM installed. Everything works well but for the site I only need Make / Model filter (without the year range). Before I go ahead and destroy everything, I am asking for a more experienced programmer for help as to what needs to be deleted/modified. My knowldege is limited. Any advice is welcomed. Thank you!
×
×
  • Create New...