Site Activity Feed Question

derrickhand300
@derrickhand300
10 years ago
1,353 posts
Anyone tell me the url for the activity feed and how to get an RSS feed off of it?
Seen similar questions but a quick search didnt turn them up
Thanks!
updated by @derrickhand300: 05/21/15 05:22:34PM
douglas
@douglas
10 years ago
2,804 posts
yoursite.com/profile-name/timeline

And I believe there is a RSS button on the timeline page.


--

Douglas Hackney
Jamroom Team - Designer/Developer/Support
FAQ-Docs-Help Videos
derrickhand300
@derrickhand300
10 years ago
1,353 posts
Thank you!
Any suggestions on how to make the RSS feed have the profile image also? ( like in the jr Activity feed)
brian
@brian
10 years ago
10,149 posts
derrickhand300:
Thank you!
Any suggestions on how to make the RSS feed have the profile image also? ( like in the jr Activity feed)

I'm not seeing an image in the Activity Timeline RSS feed - is that something you added in?

Thanks!


--
Brian Johnson
Founder and Lead Developer - Jamroom
https://www.jamroom.net
derrickhand300
@derrickhand300
10 years ago
1,353 posts
no I am asking how to add it
michael
@michael
10 years ago
7,800 posts
if you take this code
/modules/jrFeed/templates/rss.tpl
<?xml version="1.0"?>
<rss version="2.0">
    <channel>
        <title>{$rss_title}</title>
        <description>{$rss_desc}</description>
        <link>{$rss_url}</link>
        <lastBuildDate>{$rss_builddate}</lastBuildDate>
        {foreach $_items as $item}
            <item>
                <title>{$item.title}</title>
                <link>{$item.link}</link>
                <description>{$item.description|jrCore_format_string:$item.profile_quota_id|strip_tags}</description>
                <pubDate>{$item.pubdate}</pubDate>
            </item>
        {/foreach}
    </channel>
</rss>
and save it to your skin as:
/skins/(YOUR SKIN)/jrAction_item_rss.tpl

Then you can customize it all you like. Same goes with any module,
/skins/(YOUR SKIN)/jrAudio_item_rss.tpl
/skins/(YOUR SKIN)/jrVideo_item_rss.tpl
etc....

Tags