Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

subcategories and root category


Guest

Recommended Posts

Hi,

 

I'm trying to modify the Featured Products contribution this way : I want a featured product only to be shown in his category. It works like a charm when the product is in 2nd level of the category tree, but won't go any further.

 

Here is the part of my featured.php file :

 

	$mystring = $cPath;
$findme = '_';
$pos = strpos($mystring, $findme);
if ($pos == NULL) { 
	$finalcPath = $cPath;
} else { 
	$finalcPath = substr($cPath, 0, $pos);
}
if ($finalcPath != NULL) {
$featured_products_query = tep_db_query("select p.products_id, p.products_image, p.products_quantity, p.products_tax_class_id, s.status as specstat, s.specials_new_products_price, p.products_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c, " . TABLE_CATEGORIES . " c left join " . TABLE_FEATURED . " f on p.products_id = f.products_id where p.products_status = '1' and p.products_id = p2c.products_id and p2c.categories_id = c.categories_id and c.parent_id = $finalcPath and f.status = '1' order by rand($mtm) DESC limit " . MAX_DISPLAY_FEATURED_PRODUCTS); }
else {
$featured_products_query = tep_db_query("select p.products_id, p.products_image, p.products_quantity, p.products_tax_class_id, s.status as specstat, s.specials_new_products_price, p.products_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id left join " . TABLE_FEATURED . " f on p.products_id = f.products_id where p.products_status = '1' and f.status = '1' order by rand($mtm) DESC limit " . MAX_DISPLAY_FEATURED_PRODUCTS);

 

As you can see, I'm playing with c.parent_id and $finalcPath.

 

My question is : how, from the categories table to find the 2nd level category ?

 

Thanks in advance

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...