Results 1 to 9 of 9

Hybrid View

  1. #1
    Join Date
    Jun 2006
    Location
    My family and I live in Brighton, England
    Posts
    982
    Plugin Contributions
    0

    Default Re: cutting certain categories from the "featured" and "new" products boxes

    Blocking sold items from being displayed in New Products by inserting and p.products_quantity > 0 did solve that issue. However, I still need to block one, single category from appearing as new. Is this possible?

  2. #2
    Join Date
    Jun 2006
    Location
    My family and I live in Brighton, England
    Posts
    982
    Plugin Contributions
    0

    Default Re: cutting certain categories from the "featured" and "new" products boxes

    OK, I believe that I worked this out, as well. To resolve my issue, I edited includes/modules/pages/products_new/header_php.php (There is no override file - Please save a backup). Find this snippet of code:
    PHP Code:
    WHERE p.products_status 
    and add the following underneath (26 being the number of the category being blocked):
    PHP Code:
    and p.master_categories_id != 26 
    and includes/modules/your_template/new_products.php. Find this snippet of code:
    PHP Code:
    where p.products_id pd.products_id 
    and add the following underneath (26 being the number of the category being blocked):
    PHP Code:
    and p.master_categories_id != 26 
    I've found that you can also block the subcatagories by following the same procedure. Here I've also blocked sub cat 27:
    PHP Code:
    and p.master_categories_id != 26
    and p.master_categories_id != 27 

 

 

Similar Threads

  1. Replies: 4
    Last Post: 16 Oct 2011, 12:58 AM
  2. How to remove ellipses ("...") after "All Products" and "New Products" on home page?
    By jthurman in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 18 May 2010, 03:30 PM
  3. Removing "All Products" & "New Products" from Categories Sidebox
    By MattBUK in forum Templates, Stylesheets, Page Layout
    Replies: 5
    Last Post: 18 Feb 2009, 09:39 AM
  4. Replies: 3
    Last Post: 3 Jun 2008, 11:41 AM
  5. Inside the "Categories" box it says "New Products" and "All Products"...
    By john9 in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 25 Feb 2007, 07:55 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg