I am trying to add Category image at the top of my category landing page. I am using luxury theme and magento 1.9 version
What i have done so far: I have added image in Admin -> manage categories -> My Category -> in general information tab I added image
Next I tried to change code in page/html/Breadcrumbs.phtml
but it didn't work
This is default code in page/html/Breadcrumbs.phtml
<?php if($crumbs && is_array($crumbs)): ?>
<?php
$bg_image = $this->getLayout()->createBlock('cms/block')->setBlockId('luxury-background-breadcrumbs')->toHtml();
preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $bg_image, $matches);
?>
<div class="breadcrumbs" <?php if($matches[1][0] !=''): ?>style="background-image:url(<?php echo $matches[1][0]?>);"<?php endif;?>>
</div>
Help in how to display image to the top(header) of the page.
Is there any way to just get the image of the categories?