View Single Post
  #10  
Old 10-23-2014, 06:01 AM
 
minfinger minfinger is offline
 

X-Adept
  
Join Date: Apr 2009
Posts: 678
 

Default Re: How to make thumbnails larger in Category view

Do I need to change my Namespace and file path? I went back to using the other Custom Mod and disable Custom Skins.

Current Code:
PHP Code:
<?php

namespace XLite\Module\FasterThanYours\LargerThumbnails\View\ItemsList\Product\Customer;

abstract class 
ACustomer extends \XLite\View\ItemsList\Product\Customer\ACustomer implements \XLite\Base\IDecorator
{
    protected function 
getIconSizes()
    {
        return array(
            static::
WIDGET_TYPE_SIDEBAR '.' . static::DISPLAY_MODE_STHUMB => array(160160),
            static::
WIDGET_TYPE_SIDEBAR '.' . static::DISPLAY_MODE_BTHUMB => array(160160),
            static::
WIDGET_TYPE_CENTER '.' . static::DISPLAY_MODE_GRID => array(250250),
            static::
WIDGET_TYPE_CENTER '.' . static::DISPLAY_MODE_LIST => array(250250),
            
'other' => array(110110),
        );
    }
}
__________________
X-Cart 4.3
Joomla
Among other things
Reply With Quote