Hi IceCreamYou,

I've been playing with the new Contexts facility in FBSS 3 and it is pretty cool - particularly as I was looking for a way to organise statuses under taxonomy terms.

What I'd really like is for people to be able to leave a status on a node, but to be able to display that node's status updates on the stream for any taxonomy terms the node is filed under, along with the status updates from other nodes that share that taxonomy too.

Is this possible/intended to be possible or a little bit nuts? Would it make more sense for me to try and automatically add #hashtags based on the current node's taxonomy terms instead?

thanks,
Jonny

Comments

icecreamyou’s picture

Status: Active » Fixed

This isn't possible without writing custom code. The SQL query to generate the list of status updates would need to look something like this:

SELECT * FROM {facebook_status} WHERE type = 'node' AND recipient IN (SELECT nid FROM {term_node} WHERE tid = %d)

Probably the easiest way to do this would be to write a Views filter that adds that WHERE clause. You can take a look at some of FBSS' custom filters for examples.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.