View Single Post
  #71  
Old 02-16-2015, 12:35 PM
  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

For that, add the following methods to the AllProducts class:

PHP Code:
protected function defineWidgetParams()
    {
        
parent::defineWidgetParams();

        
$this->widgetParams[self::PARAM_SHOW_DISPLAY_MODE_SELECTOR]->setValue(false); 
        
$this->widgetParams[self::PARAM_SHOW_SORT_BY_SELECTOR]->setValue(false); 
    }

    protected function 
setWidgetParams()
    {
        
parent::setWidgetParams();
 
        
$this->widgetParams[static::PARAM_DISPLAY_MODE]->setValue(static::DISPLAY_MODE_LIST);
    } 

Please, let me know if it does the trick for you.
__________________
Found a bug in X-Cart? Post it to our bug tracker!
Know how to make X-Cart better? Suggest an idea!

Last edited by tony_sologubov : 03-10-2015 at 03:53 AM.
Reply With Quote