Skip to content

Instantly share code, notes, and snippets.

@Casper-O
Casper-O / Keybase.md
Created February 6, 2022 17:47
Keybase.md

Keybase proof

I hereby claim:

  • I am casper-o on github.
  • I am casper_o (https://keybase.io/casper_o) on keybase.
  • I have a public key ASDUvVwjbaCMvZEfq9OoeTRbCN50ti3JAyw5LMVQIOgBqwo

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am casper-o on github.
  • I am casper_o (https://keybase.io/casper_o) on keybase.
  • I have a public key ASASKBtUj_lMUDuhssRKwajPQOPynggL2hwpA80Sz389qAo

To claim this, I am signing this object:

@Casper-O
Casper-O / FrontController.php
Created March 19, 2018 08:54
Prestashop 1.6.X - Fix attribute color list doesn't show on product list if turning on smarty cache
<?php
class FrontController extends FrontControllerCore
{
public function addColorsToProductList(&$products)
{
if (!is_array($products) || !count($products) || !file_exists(_PS_THEME_DIR_.'product-list-colors.tpl')) {
return;
}
$products_need_cache = array();