Category Banner Link
Category Banner Link
Sometimes you need to add a promotion banner to a category and link it somewhere else. With this extension you can add a link to the category banner image.
Display on frontend:
Go to app/design/frontend/package_name/theme_name/template/catalog/category/view.phtml Replace this code:echo $_imgHtml;
With this:if($_category->getData('category_image_link')) { echo '<a href="'.$_category-getData('category_image_link').'">'; echo $_imgHtml; echo '</a>'; } else { echo $_imgHtml; }