{ % render_listings |selection options| |domain option| |domain_path option| |display options| |count| % }
note: do NOT include spacing between curly brackets and % sign
|selection options| choose only one:
- mls_no: render listing based on the specified MLS #
- tagged_any: all listings that’s been tagged with ANY of the specified tags
- tagged_all: all listings that’s been tagged with ALL of the specified tags
|domain option| if specified will grab listings from the specified domain
if not specified, listings from own domain will be used
|domain_path option| is used to specified the path of the listing contact
|display options|: two options supported at the moment
- summary: displays listings in small/list format
- medium: displays more info of listings|count option| defaults to 50
can be used to limit the number of listings displayed, if mls_no selection option is used, count will be set automatically to 1
Examples:
{ % render_listings mls_no:”V670733” domain:”rickstonehouse.com” domain_path:”contact” display:”summary” % }
will display one listing with mls_no equals to V670733 from rickstonehouse.com
{ % render_listings tagged_all:”test, xlsuite” domain_path:”contact” display:”medium” count:5 % }
will display 5 listings that’s tagged with test and xlsuite using the medium display format
the contact link will redirect to [current_domain]/contact since |domain option| is not specifiednote: do NOT include spacing between curly brackets and % sign