4x Masonry Grid

Style & publish your blog list anywhere on your site using a bunch of Scalia's blog options!

$productId = ‘SOME_PRODUCT_ID’; $product = Mage::getModel(‘catalog/product’)->load($productId); $productMediaConfig = Mage::getModel(‘catalog/product_media_config’); $baseImageUrl = $productMediaConfig->getMediaUrl($product->getImage()); $smallImageUrl = $productMediaConfig->getMediaUrl($product->getSmallImage()); $thumbnailUrl = $productMediaConfig->getMediaUrl($product->getThumbnail());

June 26, 2013 Read more

$entityTypeId = Mage::getModel(‘eav/entity’)->setType(‘catalog_product’)->getTypeId();$attributeSetName = ‘Default’; //Edit with your required Attribute Set Name$attributeSetId = Mage::getModel(‘eav/entity_attribute_set’)->getCollection()->setEntityTypeFilter($entityTypeId)->addFieldToFilter(‘attribute_set_name’, $attributeSetName)->getFirstItem()->getAttributeSetId();$attributesInfo = Mage::getResourceModel(‘eav/entity_attribute_collection’)->setEntityTypeFilter($attributeSetId) //4 = product…

June 26, 2013 Read more

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…

June 26, 2013 Read more

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…

June 26, 2013 Read more

//////////////////////////////////// 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,…

June 26, 2013 Read more

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”…

June 25, 2013 Read more

<?php                                               if(Mage::getSingleton(‘customer/session’)->isLoggedIn()): ?>                                                                                                                          <?php $this->setProduct(Mage::getModel(‘catalog/product’)->setStoreId(Mage::app()->getStore()->getId())->load($_product->getId()))?>                                                             INK<?php echo $this->getTierPriceHtml() ?>VK<?php echo Mage::helper(‘core’)->currency($_product->getFinalPrice());?>                                                                                          <?php else:…

June 25, 2013 Read more

<?php $_helpernew = Mage::helper(‘catalog/category’);  $_subcategories = $_category->getChildrenCategories();?>                 <?php if (count($_subcategories) > 0): ?>                     <ul>                         <?php foreach($_subcategories as…

June 25, 2013 Read more
1 12 13 14