View Single Post
  #5  
Old 07-18-2017, 06:45 AM
  cflsystems's Avatar 
cflsystems cflsystems is offline
 

Veteran
  
Join Date: Apr 2007
Posts: 14,190
 

Default Re: 5.3.3.x how to removethe credit card icons on checkout page?

Here are your choices
1. Use CSS
.header-checkout_logos {display: none !important}

2. Upload new image to - keep the name the same
/skins/customer/images/checkout_logos.png

3. In your custom module in Main.php add
PHP Code:
/**
     * Move templates in lists
     *
     * @return array
     */
    
protected static function moveTemplatesInLists()
    {
        
$templates = [
            
'layout/header/header.bar.checkout.logos.twig' => [
                static::
TO_DELETE => [
                    [
'layout.header', \XLite\Model\ViewList::INTERFACE_CUSTOMER],
                ],
            ],
        ];
        return 
$templates;
    } 

Hope that helps.
__________________
Steve Stoyanov
CFLSystems.com
Web Development
Reply With Quote