Recent Topics

1 Apr 15, 2007 02:23    

My b2evolution Version: 1.9.x

I hope this is the correct place to ask this. I'm sorry if it isn't but I still hope someone can help.

What I want to do is this:

1. Add a category to my blog called "Daily Horoscope"
2. Make 1 post in it that is a page with the parsed or displayed horoscope feed.

Every way that I've tried to accomplish this has failed. I would appreciate it if someone knows how this can be done.

Thank you,

Gerri

2 Apr 15, 2007 10:23

I'm a tad lost about what you actually want.

Do you want a single post that contains a feed that changes daily or are you wanting to make a post that gets permanently filled with the result of the feed ( ie/ remains the same content ) ?

¥

3 Apr 15, 2007 22:00

A single post that contains the feed content that will change daily. That is what I'm trying (unsuccessfully) to do.

I'm sorry if I'm asking the wrong way..

Thanks,

Gerri

4 Apr 18, 2007 10:44

Probably the easiest way to do this is in your _main.php just replace your normal $Item->content() line with something like this :

if( $Item->ID == 99 ) // change 99 to the posts real ID
{
  // your feed stuff goes here
}
else
{
  $Item->content();
}

¥

5 Apr 18, 2007 11:30

I will try this and see how it goes. I'm quite the n00b but I'll see if I can manage this.

Thanks for your help


Form is loading...