-
-
Save govindak/d2a15223b994ac16b22b to your computer and use it in GitHub Desktop.
This file contains 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 | |
// Magento: Getting categroy from product | |
$categoryIds = $_product->getCategoryIds(); | |
if(count($categoryIds) ){ | |
$firstCategoryId = $categoryIds[0]; | |
$_category = Mage::getModel('catalog/category')->load($firstCategoryId); | |
echo $_category->getData('categorysecondimage'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment