Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
QUESTION multiple articles in one page
#1
hello guys!
im new to GetSimple CMS and i like it very much. just one simple question - is there a way to make more than one article on page in back-end panel?

i found this way > create new article with new 'slug' an then in template.php add line <?php getPageContent('second'); ?>, but this wil show this article on all pages

is this only one way to do this?
Reply
#2
You want multiple content area's or a blog structure?

You can look here for solutions: http://get-simple.info/wiki/plugins:guide
Reply
#3
(2015-04-29, 05:34:08)datiswous Wrote: You want multiple content area's or a blog structure?

You can look here for solutions: http://get-simple.info/wiki/plugins:guide

i need multiple content area
Reply
#4
There are loads of ways to have multiple content blocks. <?php getPageContent('second'); ?>  is good. If you want it on only one page you can make a new template, or put it in your template with this:

PHP Code:
<?php if (return_page_slug()=='PAGE' getPageContent('second'); ?>

Or you can use components or you can use a plugin to handle it all.

There is stuff in the wiki on components by page
Reply
#5
(2015-04-29, 06:47:20)Timbow Wrote: There are loads of ways to have multiple content blocks. <?php getPageContent('second'); ?>  is good. If you want it on only one page you can make a new template, or put it in your template with this:


PHP Code:
<?php if (return_page_slug()=='PAGE' getPageContent('second'); ?>

Or you can use components or you can use a plugin to handle it all.

There is stuff in the wiki on components by page
thank you very much for your time. i will look at these later on.
Reply




Users browsing this thread: 1 Guest(s)