Akshat Malik
Akshat Malik

Reputation: 31

Magento 1.7 - Move Category & Sub-Category Description After Products

I want to move my Descriptions from existing - Top of the Page to - After Products I have referred to the Solution for this at various Forums but none of them Worked. The Easiest One I could find and implement too was here . But this resolution also did not work. Kindly help in this regard.

PARTIALLY SOLVED: I pasted this at the end of the code in /app/design/frontend/default/XXYY/template/magenthemes/filter/filter_content_wrapper.phtml :

categoryAttribute($_category, $_description, 'description') ?>

Having said this, there is 1 Problem, the Description is now appearing at 2 Locations - Above the products and below the products.

Looking for further resolution on this

Upvotes: 2

Views: 447

Answers (1)

Akshat Malik
Akshat Malik

Reputation: 31

SOLVED

Thanks rajat

Here is how I did it: IMPORTANT: DO NOT USE THE FILE PATH HERE OR GIVEN UNDER ANY POSTS - IT IS THEME DEPENDENT

1) Use Template hints to identify the Category Description File Path 2) Now to shift your Description: Just find and Paste this code from the file towards the end and Save:

getCurrentCategory()->getDescription()): ?> categoryAttribute($_category, $_description, 'description') ?>

NOTE: <?php echo $this->getChildHtml('content'); ?> should be right above the Category Description Code

Upvotes: 1

Related Questions