Magento extension Category Banner Link by Klevis Miho

MageCloud partnered with Klevis Miho to offer Category Banner Link in your MageCloud panel for our simple 1-click installation option. To install this extension - create your account with MageCloud and launch a new Magento store. It takes only 3 minutes.

Klevis Miho always provides support for customers who have installed Category Banner Link Magento module. Feel free to leave a review for the company and the extension so we can offer you better products and services in the future.

You may want to check other Klevis Miho Magento extensions available at MageCloud and even get extensions from hundreds of other Magento developers using our marketplace.

Add a link to the category banner image.

Compatible with Magento 1.x

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; }