This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0"?> | |
| <config> | |
| <adminhtml> | |
| <cms> | |
| <browser> | |
| <extensions> | |
| <media_allowed> | |
| <mp4>1</mp4> | |
| </media_allowed> | |
| </extensions> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Amasty_Shopby Extension: js\amasty\amshopby\amshopby-ajax.js | |
| <script type="text/javascript"> | |
| //Line 116 | |
| /*$$('div.amshopby-overlay').each(function(e){ | |
| e.show(); | |
| });*/ | |
| //Call function at here | |
| jQuery(document).configurationAjax('createLoading'); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| To manually specify which tab that you would like highlighted in the customer | |
| account section, you will need to specify the setActive method with reference | |
| to the customer_account_navigation block. | |
| <?xml version="1.0"?> | |
| <layout version="0.1.0"> | |
| <dealers_orders_orderdetails> | |
| <!--HERE--> | |
| <reference name="customer_account_navigation"> | |
| <action method="setActive"><path>dealers/orders/</path></action> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| protected function addState($ids) | |
| { | |
| /** @var Mage_Catalog_Model_Resource_Category_Collection $categories */ | |
| $categories = Mage::getModel('catalog/category')->getCollection(); | |
| $categories->addIdFilter($ids); | |
| $categories->addAttributeToSelect('name'); | |
| //$names = $categories->getColumnValues('name'); | |
| /** |