Tom Couwberghs
|
Wednesday 15 June 2005 2:27:07 pm
Hello Joe, it seems like the best thing you can do, is use a combination of attribute filtering and view parameters. For e.g. when you have /(location)/xxx in your view parameters, you can use the attribute filter in the fetch function to fetch only hotels in that location. Please view the documentation for instructions on how to do this.
-- Tom
|
joe hobbs
|
Wednesday 22 June 2005 1:30:08 am
Tom Thank you for your good suggestion which put me on the right path. I include the code which did the job.
{let
countyvar=ezhttp( 'county', 'get' )
testimonials=fetch('content',list,hash(parent_node_id,123, attribute_filter, array( array( 'partner/location_county', '=', $countyvar ) ) ) )
}
|