Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 to do but I can not get to my goal, here is my problem:

Suppose you have the category "Tripods" and one attribute "Weight_it_support", meaning how much weight a particular tripod can support without falling down. Then I have another category, "Cameras" and an attribute "Weight", no need to describe it.

Then what I want to accomplish is to have on layered navigation (or any other place) a filter with the attribute "Weight_it_support" and once I click it, show not only the tripods that supports this weight, but also the cameras with a weight less or equal than the one correspoding to the selected filter. Hope it is clear enough.

I thought that this could be accomplished by assigning the "Weight_it_support" to a set of attributes, select YES on the "Use in Layered Navigation" property of the attribute and nothing more. But these actions do not solve my goal as I need to also link the categories "Tripod" and "Camera" and this is not usefull as from this point I will have everything mixed up on those categories and we do not want that.

Any clue? Thanks!

share|improve this question
No answer no nothing? I guess I will start a bounty as this issue is a must for our development and still don't know how to do it. – Yaroslav Sep 7 '12 at 10:50
1  
I may have a clue for you. I will spend let's say 1 hour on this in order to deliver a link to a github repo. If I am successful in this 1 hour, I will post an answer to your question. Otherwise, I will delete this comment. – Hervé Guétin Sep 7 '12 at 11:07
Good to read this, thanks in advance, does not matter if your solution solves the problem or not, just by your comment you deserve some +reputation. We where just commenting this morning how SO can be such rewarding place to ask/answer and how much the communmity is involved. – Yaroslav Sep 7 '12 at 12:11
Happy to help as much as I've been helped :) I thought about 2 solutions, the first one being the easiest and, IMO, the most not-confusing for visitors. 1) Add a block on top of the tripod product list with all cameras fitting the weight so there's no mix in the actual products list (people ask for tripods, why confuse them by adding cameras - let's separate both) - 2) Include cameras in the actual tripod product list which is the most confusing IMO and more difficult to code. I keep you posted anyway. – Hervé Guétin Sep 7 '12 at 12:17
Hmmm...I understand your approach. Just keep in mind that the Tripod/Camera/Weight is just a sample, it can grow exponentially. I mean, we could have a whole bunch of different products with several different attributes that can link to other products. So the solution should propose an easy way of expanding from a "triplet" like the one on the sample to a way bigger number of combinations. – Yaroslav Sep 7 '12 at 12:28
show 2 more comments

1 Answer

up vote 2 down vote accepted
+50

Here is a version that creates an additional block on the "Tripods" category page when a filter regarding weight they support is active.

Repo on Github: https://github.com/herveguetin/Demo_RelatedCamera

Wiki on Github: https://github.com/herveguetin/Demo_RelatedCamera/wiki


[EDIT] GIT Repo has been updated with a version that works with full product list implementation. A block rewrite is mandatory though. It is the Mage_Catalog_Block_Product_List which is a commonly rewritten block.

[EDIT 2] Previous version was making 3 product collection loads instead of one when not mixing products from different categories (tripods + cameras). I made some updates that modify the original mySql query in order to inject statements enabling the addition of camera products. As a result, there is only one collection load even if we are requesting products from the camera category on top of the tripods.

USE WITH CAUTION : it doesn't work when flat catalog for products is enabled. You can turn this feature on or off by setting the constant Demo_RelatedCamera_Block_Collection::USE_MYSQL_UPDATES to true of false;

On a large product base (30 000+), you are very encouraged to use this feature and scratch your head to adapt it to your needs!

share|improve this answer
Man, here you have your upvote. Now will check if it is what we are looking for. Just remember in case this is the correct answer that unitl 48h I can not award the bounty. And evenmore, I'm about to go home and until monday will not check it out. – Yaroslav Sep 7 '12 at 14:37
1  
That's really ok. I'm trying to update the product list with cameras. This request may also be interesting for my own projects so I'd like to see how to make it work. – Hervé Guétin Sep 7 '12 at 14:51
1  
I got a great track on the 2nd option. I am able to inject cameras into the tripods page but the pager is not working properly (new products aren't counted into the whole collection that enables correct paging). The toughest part is done anyway... – Hervé Guétin Sep 7 '12 at 15:02
1  
You are definitely right : no change to the Core must be done. As of Magento best practices, the block is rewritten in the module. Please see the config.xml file. And, as a complement, it is even better to use observers. And if there really is no other way than using observers, one can use Core rewrite which will stand in the module that rewrites the Core - never in the Core itself. As a side note, I took the freedom to edit the question title to make it clearer if you don't mind (waiting for peer review). – Hervé Guétin Sep 7 '12 at 18:38
1  
Ok...perfect, any edit for the sake of better understanding is welcome – Yaroslav Sep 7 '12 at 18:54
show 13 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.