Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

steeevo

Pioneers
  • Posts

    14
  • Joined

  • Last visited

Profile Information

  • Real Name
    steven

steeevo's Achievements

  1. when I view a product, the url is made up of the products title and no categories are listed with it. which is fine. This is what I want. my concern is only with subcategories. the site map is irrelevant being that my main concern is that i want all parent categories used in sub categpry urls.
  2. I've just started reorganizing one of my websites products categories which relies heavily on the order of the categories for SEO purposes. in the SEO URLs config options there is an option in there that says" Add category parent to begining of URLs?" which I have set to true. in the past I've only have 2 levels of categories so it behaved as expected creating URLs as such: http://webiste.com/main-category-sub-category1-c-1.html however I've added another level of categories and would like the URL to read as such: http://webiste.com/main-category-sub-category1-sub-category2-c-1.html but I'm getting: http://webiste.com/sub-category1-sub-category2-c-1.html it only pulls in the parents category name one level up.. not all the way to the top. I have found in the seo.class.php file the following code which I believe controls this url structure which reads as so: case ($this->attributes['SEO_ADD_CAT_PARENT'] == 'true'): $sql = "SELECT c.categories_id, c.parent_id, cd.categories_name as cName, cd2.categories_name as pName FROM ".TABLE_CATEGORIES." c JOIN ".TABLE_CATEGORIES_DESCRIPTION." cd ON c.categories_id = cd.categories_id LEFT JOIN ".TABLE_CATEGORIES_DESCRIPTION." cd2 ON c.parent_id=cd2.categories_id AND cd2.language_id='".(int)$this->languages_id."' WHERE c.categories_id='".(int)$single_cID."' AND cd.categories_id='".(int)$single_cID."' AND cd.language_id='".(int)$this->languages_id."' LIMIT 1"; $result = $this->DB->FetchArray( $this->DB->Query( $sql ) ); $cName = $this->not_null($result['pName']) ? $result['pName'] . ' ' . $result['cName'] : $result['cName']; break; Can anyone help me modify the code so the URL structure is what I'm needing? Thanks ahead of time for the help
  3. Nevermind i got it.... it was a total newb mistake. Works good! but what good does the ecommerce=1 version do?
  4. I just got this contrib installed and operating after using the emu_getallheaders function. Everything seems fine except for the buy now and more info images that arn't showing up... the source of these that is being returned is just the webroot, http://mysite.com/ any help would be appreciated. Thanks, -Steven
  5. HI, i have EP 2.8 installed and is working well except for when i download the complete tab delimited file. it is missing the fields i need for SPPC. i have the SPCC enabled in admin what do i need to do so the fields are included wheni download a complete file? if that is too much work, then what fields do i need to add manualy so it inputs separate prices for each group. i have looked at the documentation but the fields noted in there don't seem to work any suggestions??
  6. maybee you should start over with EP install the entire thing and install the admin menu thing u skipped oh and use 2.8 i have installed EP on 3 servers now and no problems g/l
  7. with EP 2.8 i can import products with specials but when i export it does not have specials column how do i get the "v_specials_price", and "v_specials_expires_date" to also be in the spreadsheet to download?
  8. it would be nice if it could create a EP file based on manufacture or category of choice instead ot having to create an EP file for the whole site to edit...
×
×
  • Create New...