Skip to content

Instantly share code, notes, and snippets.

View Maksold's full-sized avatar

Maksim Soldatjonok Maksold

  • Latvia
View GitHub Profile
@Maksold
Maksold / list.phtml
Last active October 25, 2018 12:49
#magento - remove product_list_toolbar
<?php if (!$this->getHideToolbar()): ?>
<?php echo $this->getToolbarHtml() ?>
<?php endif ?>
@Maksold
Maksold / mysql4-install-1.0.6.php
Last active October 25, 2018 12:50
#magento - Interakting slider fix bug with installation
<?php
/**
* Interakting Slider
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
@Maksold
Maksold / gist:3873543
Last active October 25, 2018 12:49
#magento - block caching
protected function _construct()
{
parent::_construct();
$this->addData(array(
'cache_lifetime' => 86400,
'cache_tags' => array(Mage_Catalog_Model_Product::CACHE_TAG),
));
}