Friday, September 22, 2017
How to add CSS/Javascript version number in Magento 1
app/code/core(or local)/Mage/Page/Block/Html/Head.php
Change this:
$html .= $this->_prepareStaticAndSkinElements('
' . "\n",
empty($items['js_css']) ? array() : $items['js_css'],
empty($items['skin_css']) ? array() : $items['skin_css'],
$shouldMergeCss ? array(Mage::getDesign(), 'getMergedCssUrl') : null
);
To this:
$html .= $this->_prepareStaticAndSkinElements('
' . "\n",
empty($items['js_css']) ? array() : $items['js_css'],
empty($items['skin_css']) ? array() : $items['skin_css'],
$shouldMergeCss ? array(Mage::getDesign(), 'getMergedCssUrl') : null
);
Subscribe to:
Post Comments (Atom)
Restore xampp database from backup
steps: stop mysql xampp 1 - create some backup folder "data_1" 2 - from your current xampp/mysql/data folder move core folders an...
-
Here is original source that worked for me https://stackoverflow.com/questions/57128891/how-repair-corrupt-xampp-mysql-user-table (1) Fi...
-
jquery focusout does not works in chrome and safari for checkbox and radio elements. example: <input type='checkbox' name=...
-
My situation was: Win 7 x64 xampp 1.7.2 with php 5.2.9 I was trying to install php_oauth.dll into /xampp/php/ext/ But it failed. Afte...
No comments:
Post a Comment