solved Displaying events from one Jamroom site in another Jamroom site?

alt=
K_K
@k-k
5 years ago
88 posts
Is it possible to display events from one Jamroom site in an another Jamroom site?

Anyone currently doing this? Using RSS or some other way?

I would like to show some events in another site automatically, using tags to select suitable events. Both sites are mine if that matters.
updated by @k-k: 04/30/19 08:05:35PM
paul
@paul
5 years ago
4,325 posts
RSS might be a good way to go.
Checkout the Jamroom Feed module - The documentation shows you have to create and read feeds. There is also a 'Feed Widget' in SiteBuilder to make reading feeds easier.

https://www.jamroom.net/the-jamroom-network/documentation/modules/277/rss-feed-and-reader

hth


--
Paul Asher - JR Developer and System Import Specialist
brian
@brian
5 years ago
10,136 posts
You could also just use an iframe - i.e.

<iframe src="http://jamroomsite.com/event_iframe.tpl"></iframe>

Then create a template on the source jamroomsite.com in your active skins directory:

skins/ActiveSkin/event_iframe.tpl

and inside put your {jrCore_list} call:

{jrCore_list module="jrEvent" order_by="_item_id desc" limit=12}



--
Brian Johnson
Founder and Lead Developer - Jamroom
https://www.jamroom.net
alt=
K_K
@k-k
5 years ago
88 posts
Thanks for infos, I try them out.