Use below 2 magneto event to dispatch event in magento <controller_action_predispatch><observers><pioc_backoffice_shipping_observer><class>PIOC_Backoffice_Model_Shipping_Observer</class><method>hookToControllerActionPreDispatch</method></pioc_backoffice_shipping_observer></observers></controller_action_predispatch> <controller_action_postdispatch><observers><pioc_backoffice_shipping_observer><class>PIOC_Backoffice_Model_Shipping_Observer</class><method>hookToControllerActionPostDispatch</method></pioc_backoffice_shipping_observer></observers></controller_action_postdispatch> The below are 2 custom event that we…
Magento
ALTER TABLE `admin_assert` ENGINE=InnoDB;ALTER TABLE `admin_role` ENGINE=InnoDB;ALTER TABLE `admin_rule` ENGINE=InnoDB;ALTER TABLE `admin_user` ENGINE=InnoDB;ALTER TABLE `adminnotification_inbox` ENGINE=InnoDB;ALTER TABLE `api_assert` ENGINE=InnoDB;ALTER TABLE…
//////////////////////////////////// template/catalog/product/list/toolbar.phtml <div class=”demoTarget toolbar”> <span class=”pagingTotal”>Order:</span> <?php /*?><select onchange=”setLocation(this.value)” id=”default-usage-selectdate”> <?php foreach($this->getAvailableOrders() as $_key=>$_order): ?> <option value=”<?php echo $this->getOrderUrl($_key,…
Here is how you could hide the shopping cart side bar when it is empty: 1. Open: app/design/frontend/default/<your template>/template/checkout/cart/sidebar.phtml 2….
<?php // load product /** @var Mage_Catalog_Model_Product $product */ $product = Mage::getModel(‘catalog/product’) ->setStoreId($storeId) ->load($productId); // set length of coupon…
To create the custom attribute for category we have two option 1) Make a copy of your app/code/core/Mage/Catalog/sql/catalog_setup and change…
1)appdesignfrontenddefaultmagikjewellerylayoutcatalog.xml Change <block type=”catalog/product_list_upsell” name=”product.info.upsell” as=”upsell_products” template=”catalog/product/list/upsell.phtml”> <action method=”setColumnCount”><columns>4</columns></action> <action method=”setItemLimit”><type>upsell</type><limit>4</limit></action> </block> With <block type=”catalog/product_list_related” name=”product.info.related” template=”catalog/product/list/related.phtml”…
appcodecoreMageCoreModelSessionAbstractvarien.php comment following line // call_user_func_array(‘session_set_cookie_params’, $cookieParams);
top.phtml in app/design/frontend/default/yourtheme/template/catalog/navigation/
<script> setTimeout(function(){ location.href = ‘<?php echo $this->getUrl() ?>’},5000);</script>