1
vote
1answer
31 views

Change default position of product in categories from 1 to product ID in Magento 1.7.0.2

In Magento 1.7.0.2, I am adding a lot of products from the backend but the positions of these new items in their corresponding categories are 0 or 1. So when sorting on the frontend, I get arbitrary ...
0
votes
1answer
12 views

Magento 1.7 All Categories and respective Thumbnails

I need to list all categories and respective thumbnails. The problem is that I can't display the thumbnails. I have tried all tutorials and nothing. Here is a list of posts explaning different ...
0
votes
1answer
75 views

Magento: using categories for brands

I'm starting to build a new Magento site and its primarily focused on clothing brands. Launching with around 25 each one providing a range of products in categories. so some will have everything from ...
0
votes
1answer
75 views

Issue with Magento Categories

I am having issues arranging the categories in magento. The system has more than 3000 categories. There are 4 level categories which means: Parent>Level1>Level2>Level3>Level4. All the products are ...
1
vote
2answers
217 views

Creating categories and sub-categories in Magento Extension

I am new to Magento Extension Development and wondering which is the best way to create categories and sub-categories from within an extension. The Extension I am working on is synchronizing ...
1
vote
1answer
58 views

magento cant create categories

Recently I can not edit or add new categories in my magento shop. The whole layout seems destroyed. I really do not know what's wrong. I've already googled a bit and also I've been able to find ...
3
votes
2answers
403 views

I need to get a list of sibling categories in magento 1.7

So far I think i am working at something like this <?php $parentId = $_category->getParentId(); $cats = Mage::getModel('catalog/category')->load($parentId)->getChildred(); $catIds = ...
0
votes
0answers
160 views

how to display all sub-categories upto last level in sidebar, each should be collapsible and expandable

How to display all sub-categories upto last level, including the Top-level categories at sidebar navigation, all Indenting to their parent category. (In hierarchical structure) Notice, there is a ...
1
vote
2answers
233 views

how to fetch root category of one magento store into another?

I'll tell in short what I'm trying to do so there's no point of confusion. My website is a daily deal website and city oriented. In starting I'll be launching my website only for 2 cities. ( includes ...
0
votes
0answers
268 views

How to show sub categories with images and links instead of products in main content area

Upon clicking Categories, I want to show up Sub-Categories (instead of products) in the main content area in GRID format (in the middle) with their respective links and clickable images. As the one ...
1
vote
1answer
538 views

Inject specific additional products in product listing based on layered navigation active filters

we are setting up a small online store on Magento 1.7.0.2, so far so good importing categories, attributes and products from XML and CSV files. Then I tried to implement what seemed to be an easy task ...