Posts: 4
Threads: 1
Joined: Nov 2013
One thing that I can't seem to find is a way to automatically list sub-pages on a page.
For example, I have a section called ethnomusicology, and that has instruments, music styles, culture. These also have pages. In the past, using wordpress and drupal, I could just list all the articles on the top level page.
Is there a way to do that with GetSimpleCMS?
Thanks
BTW, the site I am trying to get off of WP is salsablanca.com
Posts: 79
Threads: 2
Joined: Feb 2012
You might try I18N Special Pages plug-in, ...i think it may work for you!
http://get-simple.info/extend/plugin/i18...pages/319/
Posts: 4
Threads: 1
Joined: Nov 2013
(2013-11-05, 10:48:38)eatons Wrote: You might try I18N Special Pages plug-in, ...i think it may work for you!
http://get-simple.info/extend/plugin/i18...pages/319/
Thanks, I will check it out.
Posts: 4
Threads: 1
Joined: Nov 2013
Not sure how that works. I am looking for automatic building of a parent page based on child pages. An index if you want to think of it like that.
Posts: 6,267
Threads: 182
Joined: Sep 2011
You can just loop the pages array for items with that parent.
Posts: 2,094
Threads: 54
Joined: Jan 2011
(2013-11-05, 11:49:15)tresero Wrote: Not sure how that works. I am looking for automatic building of a parent page based on child pages. An index if you want to think of it like that.
See
here for how to do it with the
I18N plugin.
Posts: 6,267
Threads: 182
Joined: Sep 2011
yeah i18n makes this stuff trivial for menus.
I got the impression the poster was wanting to load actual contents of sub pages.
I think getChildrenMulti() does this ?
Posts: 2,094
Threads: 54
Joined: Jan 2011
2013-11-06, 01:57:39
(This post was last modified: 2013-11-06, 01:58:16 by mvlcek.)
(2013-11-06, 00:24:49)shawn_a Wrote: I got the impression the poster was wanting to load actual contents of sub pages.
In this case, a combination of I18N
child pages and
Custom Rendering using
get_i18n_content($item->slug); should work.
Or use
I18N Search with
tags=_parent_slug and
numWords=-1 to show all sub pages of page
slug (replace with actual page slug).
Posts: 52
Threads: 2
Joined: May 2013
Maybe this
childList class will be of some use to you.