View Single Post
  #58  
Old 12-17-2014, 01:49 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

@juancho and @minfinger, you should not use construction like this:

PHP Code:
unset($this->widgetParams[self::PARAM_SHOW_DISPLAY_MODE_SELECTOR]); 

instead you have to use it like this:
PHP Code:
$this->widgetParams[self::PARAM_SHOW_SORT_BY_SELECTOR]->setValue(false); 

Again, setting your own values for widget parameters must be done in the setWidgetParams() method, not in the defineWidgetParams() one.

@juancho, if you have more questions about your task, let us discuss it in this thread:
http://forum.x-cart.com/showthread.php?t=70749

I would prefer this thread to be dedicated to @minfinger's task.
__________________
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