Friday, May 17, 2013

Magento - Browse by Price Option in Left Navigation Using Custom Code

Here we mentioned about Browse By Price in the left nav. Price option incremented multiples of 1000 <?php             $minPrice    =    Mage::getSingleton('catalog/layer')->setCurrentCategory(Mage::registry('current_category'))->getProductCollection()->getMinPrice();    $maxPrice   ...

By PHP with No comments

Magento - Check Current page is Category | DETERMINE IF CURRENT PAGE IS A CATEGORY

After a great deal of frustration and numerous tantrums I discovered the solution is to wrap the code in a loop that checks if it’s a category page. //LOOP TO CHECK IF ITS A CATEGORY PAGE //INNER LOOP getId() == 5):?> Shows this paragraph is the category id="5" Else show this for different category pages > //SHOW THIS CONTENT IF ITS A CMS PAGE Else show this paragraph for all...

By PHP with No comments

Thursday, May 16, 2013

Magento - Get tier price with mini price display / Tier Lowest Price Display

Magento get tier price with minimum price display <?php$product_tier_prices = $this->getTierPrices($_product);if(count($product_tier_prices) > 0){ $product_tier_prices = (object)$product_tier_prices; $product_price = array(); foreach($product_tier_prices...

By PHP with 4 comments

Magento - Get Min and Max product price in current category / Display lowest / highest price from current product collection

Display minium / lowest product price from current category in magento. get min price from current product collection. Fine the below code to get min price value. echo $minPrice=Mage::getSingleton('catalog/layer') ->setCurrentCategory(Mage::registry('current_category')) ->getProductCollection() ->getMinPrice(); Display maximum / Highest product price from current category in magento....

By PHP with No comments

Monday, May 13, 2013

Magento - Advanced Search Category Lists In Select Box

How to Place the Category Lists in advanced Search page., Search by category in magento. n the advanced search page, “search by category” is not an option by default, but can be very helpful. To add this, you will need to edit the following files: app/code/core/Mage/CatalogSearch/Block/Advanced/Form.php app/code/core/Mage/CatalogSearch/Model/Advanced.php app/design/yourdesign/yourdesign/template/catalogsearch/advanced/form.phtml At...

By PHP with No comments

    • Popular
    • Categories
    • Archives