View Single Post
  #34  
Old 08-13-2014, 11:10 AM
  tony_sologubov's Avatar 
tony_sologubov tony_sologubov is offline
 

X-Cart team
  
Join Date: Jan 2009
Posts: 2,431
 

Default Re: All Products on front page, similar to featured products

1) You can disable showing New Arrivals and Coming soon products in the Product Advisor settings. Tick on the following settings:
- Display "New arrivals" block on sidebar (otherwise in center area)
- Display "Coming soon" block on sidebar (otherwise in center area)

2) In order to hide All products from category pages, you should edit the ProductsOnHomePage viewer class and add the following method there:

PHP Code:
public static function getAllowedTargets() 
    { 
        
$return = array('main');

        return 
$return
    } 

It should do the trick.
__________________
Found a bug in X-Cart? Post it to our bug tracker!
Know how to make X-Cart better? Suggest an idea!
Reply With Quote