Re: [Radiant] Displaying a specific child's content

2007-01-03 Thread BJ Clark
I figured it out. I was trying to pull a page that was 2 levels below where I was trying to pull it from. I had to call it by url=level1/pagename But that works just dandy. Thanks all, BJ On 1/2/07, Andreas Semt [EMAIL PROTECTED] wrote: @BJ, it works for me. The content tag is also described

Re: [Radiant] Displaying a specific child's content

2007-01-03 Thread Ruben D. Orduz
Not to toot my own horn, but that was explained in the Getting started wiki. BTW, John, I need to get back to finish that off...maybe this weekend if I can find the time. Best, Ruben On 1/3/07, BJ Clark [EMAIL PROTECTED] wrote: I figured it out. I was trying to pull a page that was 2 levels

Re: [Radiant] Displaying a specific child's content

2007-01-02 Thread Andreas Semt
@BJ, it works for me. The content tag is also described here: http://radiantcms.org/blog/2006/05/11/tag-primer/ The example says: --- r:content part=sidebar / → Content from the sidebar part of the page. The part attribute (shown above) allows you to specify which part of the page you would

Re: [Radiant] Displaying a specific child's content

2007-01-01 Thread Andreas Semt
@Clark, --- r:find url=about !-- content of the 'about' page: -- r:content part=body / /r:find --- This includes the content of the page 'about' into your actual page. Alternative you could write 'r:content /', because per default the body page part is shown (or you could include self

Re: [Radiant] Displaying a specific child's content

2007-01-01 Thread Ruben D. Orduz
I suppose I misunderstood his question. I thought he wanted to know how to access the content of a child page, but in retrospect, I realize that he just wanted to show the actual content of a child page somewhere else. I think the r:find tag definitely helps, but I don't know if it is able to

Re: [Radiant] Displaying a specific child's content

2007-01-01 Thread Andreas Semt
@Ruben, perhaps it's necessary to code it this way: --- r:find url=about r:if_content part=special_part !-- should show the page part 'special_part' of page 'about': -- r:content part=special_part / /r:if_content /r:find --- Best regards, Andreas Semt Ruben D. Orduz schrieb:

Re: [Radiant] Displaying a specific child's content

2007-01-01 Thread BJ Clark
@Ruben, I'm just trying to display the content of certain pages in other pages. @Andreas, Are you sure this works for you? It's not putting anything in my page. I don't get an error, but it doesn't do anything either. Thanks 2 everyone, BJ Clark On 1/1/07, Andreas Semt [EMAIL PROTECTED] wrote:

[Radiant] Displaying a specific child's content

2006-12-31 Thread BJ Clark
Hello All, I'm trying to display the content of a specific child page. Is there anyway to do this via radius tags? I realize that I can do all children (or whatever) via r:children:each or :first but I need to do :specificpage and I'm not sure how that is done. Is there a way to do that?

Re: [Radiant] Displaying a specific child's content

2006-12-31 Thread Ruben D. Orduz
I don't really understand your question. You want to display the content of a specific child page, where? If you just want to show that page simply use http://yourURL.com/nameOfChildPage . If you could expound a little more what exactly are you trying to accomplish we should be able to help you a

Re: [Radiant] Displaying a specific child's content

2006-12-31 Thread Jamie Wilkinson
r:find On Dec 31, 2006, at 6:42 PM, Ruben D. Orduz wrote: I don't really understand your question. You want to display the content of a specific child page, where? If you just want to show that page simply use http://yourURL.com/nameOfChildPage . If you could expound a little more what