Page 1 of 1

How to add RSS to just one page

Posted: Fri Jul 20, 2007 2:52 am
by soulja90
Hi guys!

I LOVE CMSMS


I just want to add the capability of RSS to one page.

What I mean is this:

User sees this page:

http://www.wdclub.com/resources/articles/

Sees the RSS button.

Clicks on it.

Now everytime I add stuff to it, he gets notified.

RSS just for that page.

I tried it but it only shows this

http://www.wdclub.com/news/rss/

I don't want news section, like how can I show http://www.wdclub.com/resources/articles/

Know what I'm sayin

Re: How to add RSS to just one page

Posted: Fri Jul 20, 2007 12:29 pm
by stopsatgreen
Try this:

{news number='10' category='resources' makerssbutton='true'}

Not sure off the top of my head if that will work, but give it a go.

Re: How to add RSS to just one page

Posted: Fri Jul 20, 2007 10:53 pm
by soulja90
Nope no luck :)

Thanks for the reply though

Re: How to add RSS to just one page

Posted: Sun Jul 22, 2007 12:01 am
by soulja90
Any luck on this friends:)

Love to put rss feeds.

Re: How to add RSS to just one page

Posted: Sun Jul 22, 2007 1:53 am
by Dr.CSS
Right now RSS feed only works with the News module, it can be configured to look like page content, copy the summary template rework it to only show news main content...

Create file modules/News/templates/justcontent.tpl with the following content:


{foreach from=$items item=entry}

        {$entry->title}
{eval var=$entry->content}

{/foreach}


Create a news category 'justcontent'

Make new article use 'justcontent' category, only put content in *Content: edit box...

Call it with this: you need both to get the RSS button...

{news category="justcontent" summarytemplate="justcontent.tpl"}
{news category="justcontent" makerssbutton="true"}

For a look like this...

http://multiintech.com/CMSMSDemo/index.php/just.html

Go to Home page to log into the backend to see... of course styling is up to you... oh and if you put more than one news tag in the page both news will come in the feed...

If you go to Extensions > Modules click on the name of the module or the word Help to the right to get the modules parameters...