Show layered subcategories on the left of the subcategories page
I am having an issue. I need to show the sub-category layered navigation on the SUBCATEGORY page of a store that I am working on. You guys already know that on the subcategory layered navigation is already shown on the MAIN Category page(s). Please understand that I want it to show on both the Category(s) and Sub-Category(s) pages. Please view the images to see what I have already.
Main Category Page!
Main Category Layered navigation
Sub Category Page! with Layered Navigation (Limited sub category list)
Sub Category Layered Navigation (Limited list)
But to in getting the limited sub category layered navigation I tried this:
https://stackoverflow.com/questions/8795810/magento-showing-sibling-categories-in-layered-navigation
All I need is help with is editing:
app/code/core/Mage/Catalog/Model/Layer/Filter/Category.php
For this line of code to show the full sub category on the sub category page and highlight the current/active category
if(count($categoty->getChildrenCategories())){
$categories = $categoty->getChildrenCategories();
}else{
$categories = $categoty->getParentCategory()->getChildrenCategories();
}
php magento-1 layered-navigation cms
add a comment |
I am having an issue. I need to show the sub-category layered navigation on the SUBCATEGORY page of a store that I am working on. You guys already know that on the subcategory layered navigation is already shown on the MAIN Category page(s). Please understand that I want it to show on both the Category(s) and Sub-Category(s) pages. Please view the images to see what I have already.
Main Category Page!
Main Category Layered navigation
Sub Category Page! with Layered Navigation (Limited sub category list)
Sub Category Layered Navigation (Limited list)
But to in getting the limited sub category layered navigation I tried this:
https://stackoverflow.com/questions/8795810/magento-showing-sibling-categories-in-layered-navigation
All I need is help with is editing:
app/code/core/Mage/Catalog/Model/Layer/Filter/Category.php
For this line of code to show the full sub category on the sub category page and highlight the current/active category
if(count($categoty->getChildrenCategories())){
$categories = $categoty->getChildrenCategories();
}else{
$categories = $categoty->getParentCategory()->getChildrenCategories();
}
php magento-1 layered-navigation cms
add a comment |
I am having an issue. I need to show the sub-category layered navigation on the SUBCATEGORY page of a store that I am working on. You guys already know that on the subcategory layered navigation is already shown on the MAIN Category page(s). Please understand that I want it to show on both the Category(s) and Sub-Category(s) pages. Please view the images to see what I have already.
Main Category Page!
Main Category Layered navigation
Sub Category Page! with Layered Navigation (Limited sub category list)
Sub Category Layered Navigation (Limited list)
But to in getting the limited sub category layered navigation I tried this:
https://stackoverflow.com/questions/8795810/magento-showing-sibling-categories-in-layered-navigation
All I need is help with is editing:
app/code/core/Mage/Catalog/Model/Layer/Filter/Category.php
For this line of code to show the full sub category on the sub category page and highlight the current/active category
if(count($categoty->getChildrenCategories())){
$categories = $categoty->getChildrenCategories();
}else{
$categories = $categoty->getParentCategory()->getChildrenCategories();
}
php magento-1 layered-navigation cms
I am having an issue. I need to show the sub-category layered navigation on the SUBCATEGORY page of a store that I am working on. You guys already know that on the subcategory layered navigation is already shown on the MAIN Category page(s). Please understand that I want it to show on both the Category(s) and Sub-Category(s) pages. Please view the images to see what I have already.
Main Category Page!
Main Category Layered navigation
Sub Category Page! with Layered Navigation (Limited sub category list)
Sub Category Layered Navigation (Limited list)
But to in getting the limited sub category layered navigation I tried this:
https://stackoverflow.com/questions/8795810/magento-showing-sibling-categories-in-layered-navigation
All I need is help with is editing:
app/code/core/Mage/Catalog/Model/Layer/Filter/Category.php
For this line of code to show the full sub category on the sub category page and highlight the current/active category
if(count($categoty->getChildrenCategories())){
$categories = $categoty->getChildrenCategories();
}else{
$categories = $categoty->getParentCategory()->getChildrenCategories();
}
php magento-1 layered-navigation cms
php magento-1 layered-navigation cms
edited 1 min ago
mlunt
626
626
asked Jun 22 '14 at 17:47
Rudy JessopRudy Jessop
12616
12616
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
As you already know the real category filtering is taking place in app/code/core/Mage/Catalog/Model/Layer/Filter/Category.php, more specifically in _getItemsData(). Let us inspect that method.
<?php
$categoty = $this->getCategory();
$categories = $categoty->getChildrenCategories();
$this->getLayer()->getProductCollection()
->addCountToCategories($categories);
$data = array();
foreach ($categories as $category) {
if ($category->getIsActive() && $category->getProductCount()) {
$data = array(
'label' => Mage::helper('core')->escapeHtml($category->getName()),
'value' => $category->getId(),
'count' => $category->getProductCount(),
);
}
}
As you can see, the method loads child categories of $categoty in layered navigation filter. That means we need to set this variable to a parent category in level 2 (Every main categories lies in level 2), according to the current category that we stands.
We can achieve this in many ways. In my method, I dig into the codes further and find the exact position where the category is set for layered navigation.
It resides here app/code/core/Mage/Catalog/Model/Layer.php in getCurrentCategory(). The method look like this.
<?php
public function getCurrentCategory()
{
$category = $this->getData('current_category');
if (is_null($category)) {
if ($category = Mage::registry('current_category')) {
$this->setData('current_category', $category);
}
else {
$category = Mage::getModel('catalog/category')->load($this->getCurrentStore()->getRootCategoryId());
$this->setData('current_category', $category);
}
}
return $category;
}
In short, it loads the current category to the variable $categoty (variable that I mentioned in _getItemsData()) if it set, otherwise loads the root-category to variable categoty. Replace this method with this code
<?php
/**
* Retrieve current category model
* If no category found in registry, the root will be taken
*
* @return Mage_Catalog_Model_Category
*/
public function getCurrentCategory()
{
$category = $this->getData('current_category');
if (is_null($category)) {
$category = Mage::registry('current_category');
if ($category) {
/*
* Check whether the current category is in level 2.
* If yes set it as current category.
* Else check for any parent categories with level 2
*/
if($category->getLevel() != 2) {
//gets all parent categories
$parentCategories = Mage::registry('current_category')->getParentCategories();
/*
* If parent categories exist,search for parent categories in level 2.
* If exist set it as current category.
*else set root category as current category.
*/
if(count($parentCategories) > 0)
{
foreach ( $parentCategories as $parentCategory ) {
if($parentCategory->getLevel() == 2 ) {
$category = Mage::getModel('catalog/category')->load($parentCategory->getId());
$this->setData('current_category', $category);
break;
}
}
}
else {
$category = Mage::getModel('catalog/category')->load($this->getCurrentStore()->getRootCategoryId());
$this->setData('current_category', $category);
}
}
else {
$this->setData('current_category', $category);
}
}
else {
$category = Mage::getModel('catalog/category')->load($this->getCurrentStore()->getRootCategoryId());
$this->setData('current_category', $category);
}
}
return $category;
}
What we are doing here is, we get the parent category in level 2 from the current category and set it to $categoty, so that we can see all child categories in layered navigation.
As I already mentioned, you can achieve it in many ways. All you need to do is to set $categoty variable with parent category in level 2. Above I have altered the root files. It is not a good practice. You have to create a module that rewrites the model file app/code/core/Mage/Catalog/Model/Layer.php and then overwrite the method getCurrentCategory().
Hope it helps
Have you know issue, magento.stackexchange.com/questions/112266/…, plz update me for this, if you know, thanks
– Rakesh Jesadiya
Apr 23 '16 at 11:58
add a comment |
One more option is to not rewrite any class, but remove the category filter from the layered navigation block at all in the category layout file. And then add a new custom block, that will show categories as you wish. This block can use custom caching and show better performance. This is more time consuming approach for sure, but it gives you more flexibility and saves from conflicts resolving in the future.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "479"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f24654%2fshow-layered-subcategories-on-the-left-of-the-subcategories-page%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
As you already know the real category filtering is taking place in app/code/core/Mage/Catalog/Model/Layer/Filter/Category.php, more specifically in _getItemsData(). Let us inspect that method.
<?php
$categoty = $this->getCategory();
$categories = $categoty->getChildrenCategories();
$this->getLayer()->getProductCollection()
->addCountToCategories($categories);
$data = array();
foreach ($categories as $category) {
if ($category->getIsActive() && $category->getProductCount()) {
$data = array(
'label' => Mage::helper('core')->escapeHtml($category->getName()),
'value' => $category->getId(),
'count' => $category->getProductCount(),
);
}
}
As you can see, the method loads child categories of $categoty in layered navigation filter. That means we need to set this variable to a parent category in level 2 (Every main categories lies in level 2), according to the current category that we stands.
We can achieve this in many ways. In my method, I dig into the codes further and find the exact position where the category is set for layered navigation.
It resides here app/code/core/Mage/Catalog/Model/Layer.php in getCurrentCategory(). The method look like this.
<?php
public function getCurrentCategory()
{
$category = $this->getData('current_category');
if (is_null($category)) {
if ($category = Mage::registry('current_category')) {
$this->setData('current_category', $category);
}
else {
$category = Mage::getModel('catalog/category')->load($this->getCurrentStore()->getRootCategoryId());
$this->setData('current_category', $category);
}
}
return $category;
}
In short, it loads the current category to the variable $categoty (variable that I mentioned in _getItemsData()) if it set, otherwise loads the root-category to variable categoty. Replace this method with this code
<?php
/**
* Retrieve current category model
* If no category found in registry, the root will be taken
*
* @return Mage_Catalog_Model_Category
*/
public function getCurrentCategory()
{
$category = $this->getData('current_category');
if (is_null($category)) {
$category = Mage::registry('current_category');
if ($category) {
/*
* Check whether the current category is in level 2.
* If yes set it as current category.
* Else check for any parent categories with level 2
*/
if($category->getLevel() != 2) {
//gets all parent categories
$parentCategories = Mage::registry('current_category')->getParentCategories();
/*
* If parent categories exist,search for parent categories in level 2.
* If exist set it as current category.
*else set root category as current category.
*/
if(count($parentCategories) > 0)
{
foreach ( $parentCategories as $parentCategory ) {
if($parentCategory->getLevel() == 2 ) {
$category = Mage::getModel('catalog/category')->load($parentCategory->getId());
$this->setData('current_category', $category);
break;
}
}
}
else {
$category = Mage::getModel('catalog/category')->load($this->getCurrentStore()->getRootCategoryId());
$this->setData('current_category', $category);
}
}
else {
$this->setData('current_category', $category);
}
}
else {
$category = Mage::getModel('catalog/category')->load($this->getCurrentStore()->getRootCategoryId());
$this->setData('current_category', $category);
}
}
return $category;
}
What we are doing here is, we get the parent category in level 2 from the current category and set it to $categoty, so that we can see all child categories in layered navigation.
As I already mentioned, you can achieve it in many ways. All you need to do is to set $categoty variable with parent category in level 2. Above I have altered the root files. It is not a good practice. You have to create a module that rewrites the model file app/code/core/Mage/Catalog/Model/Layer.php and then overwrite the method getCurrentCategory().
Hope it helps
Have you know issue, magento.stackexchange.com/questions/112266/…, plz update me for this, if you know, thanks
– Rakesh Jesadiya
Apr 23 '16 at 11:58
add a comment |
As you already know the real category filtering is taking place in app/code/core/Mage/Catalog/Model/Layer/Filter/Category.php, more specifically in _getItemsData(). Let us inspect that method.
<?php
$categoty = $this->getCategory();
$categories = $categoty->getChildrenCategories();
$this->getLayer()->getProductCollection()
->addCountToCategories($categories);
$data = array();
foreach ($categories as $category) {
if ($category->getIsActive() && $category->getProductCount()) {
$data = array(
'label' => Mage::helper('core')->escapeHtml($category->getName()),
'value' => $category->getId(),
'count' => $category->getProductCount(),
);
}
}
As you can see, the method loads child categories of $categoty in layered navigation filter. That means we need to set this variable to a parent category in level 2 (Every main categories lies in level 2), according to the current category that we stands.
We can achieve this in many ways. In my method, I dig into the codes further and find the exact position where the category is set for layered navigation.
It resides here app/code/core/Mage/Catalog/Model/Layer.php in getCurrentCategory(). The method look like this.
<?php
public function getCurrentCategory()
{
$category = $this->getData('current_category');
if (is_null($category)) {
if ($category = Mage::registry('current_category')) {
$this->setData('current_category', $category);
}
else {
$category = Mage::getModel('catalog/category')->load($this->getCurrentStore()->getRootCategoryId());
$this->setData('current_category', $category);
}
}
return $category;
}
In short, it loads the current category to the variable $categoty (variable that I mentioned in _getItemsData()) if it set, otherwise loads the root-category to variable categoty. Replace this method with this code
<?php
/**
* Retrieve current category model
* If no category found in registry, the root will be taken
*
* @return Mage_Catalog_Model_Category
*/
public function getCurrentCategory()
{
$category = $this->getData('current_category');
if (is_null($category)) {
$category = Mage::registry('current_category');
if ($category) {
/*
* Check whether the current category is in level 2.
* If yes set it as current category.
* Else check for any parent categories with level 2
*/
if($category->getLevel() != 2) {
//gets all parent categories
$parentCategories = Mage::registry('current_category')->getParentCategories();
/*
* If parent categories exist,search for parent categories in level 2.
* If exist set it as current category.
*else set root category as current category.
*/
if(count($parentCategories) > 0)
{
foreach ( $parentCategories as $parentCategory ) {
if($parentCategory->getLevel() == 2 ) {
$category = Mage::getModel('catalog/category')->load($parentCategory->getId());
$this->setData('current_category', $category);
break;
}
}
}
else {
$category = Mage::getModel('catalog/category')->load($this->getCurrentStore()->getRootCategoryId());
$this->setData('current_category', $category);
}
}
else {
$this->setData('current_category', $category);
}
}
else {
$category = Mage::getModel('catalog/category')->load($this->getCurrentStore()->getRootCategoryId());
$this->setData('current_category', $category);
}
}
return $category;
}
What we are doing here is, we get the parent category in level 2 from the current category and set it to $categoty, so that we can see all child categories in layered navigation.
As I already mentioned, you can achieve it in many ways. All you need to do is to set $categoty variable with parent category in level 2. Above I have altered the root files. It is not a good practice. You have to create a module that rewrites the model file app/code/core/Mage/Catalog/Model/Layer.php and then overwrite the method getCurrentCategory().
Hope it helps
Have you know issue, magento.stackexchange.com/questions/112266/…, plz update me for this, if you know, thanks
– Rakesh Jesadiya
Apr 23 '16 at 11:58
add a comment |
As you already know the real category filtering is taking place in app/code/core/Mage/Catalog/Model/Layer/Filter/Category.php, more specifically in _getItemsData(). Let us inspect that method.
<?php
$categoty = $this->getCategory();
$categories = $categoty->getChildrenCategories();
$this->getLayer()->getProductCollection()
->addCountToCategories($categories);
$data = array();
foreach ($categories as $category) {
if ($category->getIsActive() && $category->getProductCount()) {
$data = array(
'label' => Mage::helper('core')->escapeHtml($category->getName()),
'value' => $category->getId(),
'count' => $category->getProductCount(),
);
}
}
As you can see, the method loads child categories of $categoty in layered navigation filter. That means we need to set this variable to a parent category in level 2 (Every main categories lies in level 2), according to the current category that we stands.
We can achieve this in many ways. In my method, I dig into the codes further and find the exact position where the category is set for layered navigation.
It resides here app/code/core/Mage/Catalog/Model/Layer.php in getCurrentCategory(). The method look like this.
<?php
public function getCurrentCategory()
{
$category = $this->getData('current_category');
if (is_null($category)) {
if ($category = Mage::registry('current_category')) {
$this->setData('current_category', $category);
}
else {
$category = Mage::getModel('catalog/category')->load($this->getCurrentStore()->getRootCategoryId());
$this->setData('current_category', $category);
}
}
return $category;
}
In short, it loads the current category to the variable $categoty (variable that I mentioned in _getItemsData()) if it set, otherwise loads the root-category to variable categoty. Replace this method with this code
<?php
/**
* Retrieve current category model
* If no category found in registry, the root will be taken
*
* @return Mage_Catalog_Model_Category
*/
public function getCurrentCategory()
{
$category = $this->getData('current_category');
if (is_null($category)) {
$category = Mage::registry('current_category');
if ($category) {
/*
* Check whether the current category is in level 2.
* If yes set it as current category.
* Else check for any parent categories with level 2
*/
if($category->getLevel() != 2) {
//gets all parent categories
$parentCategories = Mage::registry('current_category')->getParentCategories();
/*
* If parent categories exist,search for parent categories in level 2.
* If exist set it as current category.
*else set root category as current category.
*/
if(count($parentCategories) > 0)
{
foreach ( $parentCategories as $parentCategory ) {
if($parentCategory->getLevel() == 2 ) {
$category = Mage::getModel('catalog/category')->load($parentCategory->getId());
$this->setData('current_category', $category);
break;
}
}
}
else {
$category = Mage::getModel('catalog/category')->load($this->getCurrentStore()->getRootCategoryId());
$this->setData('current_category', $category);
}
}
else {
$this->setData('current_category', $category);
}
}
else {
$category = Mage::getModel('catalog/category')->load($this->getCurrentStore()->getRootCategoryId());
$this->setData('current_category', $category);
}
}
return $category;
}
What we are doing here is, we get the parent category in level 2 from the current category and set it to $categoty, so that we can see all child categories in layered navigation.
As I already mentioned, you can achieve it in many ways. All you need to do is to set $categoty variable with parent category in level 2. Above I have altered the root files. It is not a good practice. You have to create a module that rewrites the model file app/code/core/Mage/Catalog/Model/Layer.php and then overwrite the method getCurrentCategory().
Hope it helps
As you already know the real category filtering is taking place in app/code/core/Mage/Catalog/Model/Layer/Filter/Category.php, more specifically in _getItemsData(). Let us inspect that method.
<?php
$categoty = $this->getCategory();
$categories = $categoty->getChildrenCategories();
$this->getLayer()->getProductCollection()
->addCountToCategories($categories);
$data = array();
foreach ($categories as $category) {
if ($category->getIsActive() && $category->getProductCount()) {
$data = array(
'label' => Mage::helper('core')->escapeHtml($category->getName()),
'value' => $category->getId(),
'count' => $category->getProductCount(),
);
}
}
As you can see, the method loads child categories of $categoty in layered navigation filter. That means we need to set this variable to a parent category in level 2 (Every main categories lies in level 2), according to the current category that we stands.
We can achieve this in many ways. In my method, I dig into the codes further and find the exact position where the category is set for layered navigation.
It resides here app/code/core/Mage/Catalog/Model/Layer.php in getCurrentCategory(). The method look like this.
<?php
public function getCurrentCategory()
{
$category = $this->getData('current_category');
if (is_null($category)) {
if ($category = Mage::registry('current_category')) {
$this->setData('current_category', $category);
}
else {
$category = Mage::getModel('catalog/category')->load($this->getCurrentStore()->getRootCategoryId());
$this->setData('current_category', $category);
}
}
return $category;
}
In short, it loads the current category to the variable $categoty (variable that I mentioned in _getItemsData()) if it set, otherwise loads the root-category to variable categoty. Replace this method with this code
<?php
/**
* Retrieve current category model
* If no category found in registry, the root will be taken
*
* @return Mage_Catalog_Model_Category
*/
public function getCurrentCategory()
{
$category = $this->getData('current_category');
if (is_null($category)) {
$category = Mage::registry('current_category');
if ($category) {
/*
* Check whether the current category is in level 2.
* If yes set it as current category.
* Else check for any parent categories with level 2
*/
if($category->getLevel() != 2) {
//gets all parent categories
$parentCategories = Mage::registry('current_category')->getParentCategories();
/*
* If parent categories exist,search for parent categories in level 2.
* If exist set it as current category.
*else set root category as current category.
*/
if(count($parentCategories) > 0)
{
foreach ( $parentCategories as $parentCategory ) {
if($parentCategory->getLevel() == 2 ) {
$category = Mage::getModel('catalog/category')->load($parentCategory->getId());
$this->setData('current_category', $category);
break;
}
}
}
else {
$category = Mage::getModel('catalog/category')->load($this->getCurrentStore()->getRootCategoryId());
$this->setData('current_category', $category);
}
}
else {
$this->setData('current_category', $category);
}
}
else {
$category = Mage::getModel('catalog/category')->load($this->getCurrentStore()->getRootCategoryId());
$this->setData('current_category', $category);
}
}
return $category;
}
What we are doing here is, we get the parent category in level 2 from the current category and set it to $categoty, so that we can see all child categories in layered navigation.
As I already mentioned, you can achieve it in many ways. All you need to do is to set $categoty variable with parent category in level 2. Above I have altered the root files. It is not a good practice. You have to create a module that rewrites the model file app/code/core/Mage/Catalog/Model/Layer.php and then overwrite the method getCurrentCategory().
Hope it helps
answered Jun 23 '14 at 2:52
Rajeev K TomyRajeev K Tomy
14.5k54588
14.5k54588
Have you know issue, magento.stackexchange.com/questions/112266/…, plz update me for this, if you know, thanks
– Rakesh Jesadiya
Apr 23 '16 at 11:58
add a comment |
Have you know issue, magento.stackexchange.com/questions/112266/…, plz update me for this, if you know, thanks
– Rakesh Jesadiya
Apr 23 '16 at 11:58
Have you know issue, magento.stackexchange.com/questions/112266/…, plz update me for this, if you know, thanks
– Rakesh Jesadiya
Apr 23 '16 at 11:58
Have you know issue, magento.stackexchange.com/questions/112266/…, plz update me for this, if you know, thanks
– Rakesh Jesadiya
Apr 23 '16 at 11:58
add a comment |
One more option is to not rewrite any class, but remove the category filter from the layered navigation block at all in the category layout file. And then add a new custom block, that will show categories as you wish. This block can use custom caching and show better performance. This is more time consuming approach for sure, but it gives you more flexibility and saves from conflicts resolving in the future.
add a comment |
One more option is to not rewrite any class, but remove the category filter from the layered navigation block at all in the category layout file. And then add a new custom block, that will show categories as you wish. This block can use custom caching and show better performance. This is more time consuming approach for sure, but it gives you more flexibility and saves from conflicts resolving in the future.
add a comment |
One more option is to not rewrite any class, but remove the category filter from the layered navigation block at all in the category layout file. And then add a new custom block, that will show categories as you wish. This block can use custom caching and show better performance. This is more time consuming approach for sure, but it gives you more flexibility and saves from conflicts resolving in the future.
One more option is to not rewrite any class, but remove the category filter from the layered navigation block at all in the category layout file. And then add a new custom block, that will show categories as you wish. This block can use custom caching and show better performance. This is more time consuming approach for sure, but it gives you more flexibility and saves from conflicts resolving in the future.
answered Jul 23 '14 at 8:14
AmastyAmasty
6,12711354
6,12711354
add a comment |
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f24654%2fshow-layered-subcategories-on-the-left-of-the-subcategories-page%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown