GetSimple Support Forum
Add More Pages - Printable Version

+- GetSimple Support Forum (http://get-simple.info/forums)
+-- Forum: GetSimple (http://get-simple.info/forums/forumdisplay.php?fid=3)
+--- Forum: General Questions and Problems (http://get-simple.info/forums/forumdisplay.php?fid=16)
+--- Thread: Add More Pages (/showthread.php?tid=2188)



Add More Pages - rfuller - 2011-09-16

Can someone tell me how to add more page numbers? The page numbers go up to 20.
I know some people here have said they have many more pages than than 20 so I am sure there must be a way to add pages.

Thanks for any and all help.

Bob


Add More Pages - Connie - 2011-09-16

Bob,

I do not understand your question.
I just created 239 pages at www.zweiterblick.de

what do you mean with "pages numbers"? Please give us an example, an URL


Add More Pages - rfuller - 2011-09-16

Connie

Yes I guess your correct you can still create pages but the where you can number the pages in order in the menu only goes to 20 pages. Is there a way to change the number?

Bob


Add More Pages - ccagle8 - 2011-09-16

Bob, are all your pages going to be added to the menu?


Add More Pages - mvlcek - 2011-09-16

rfuller Wrote:Connie

Yes I guess your correct you can still create pages but the where you can number the pages in order in the menu only goes to 20 pages. Is there a way to change the number?

Bob

Just install the I18N plugin and you get improved page list and edit views (and a view to reorganize your menu structure) with no limitations as to the number of pages in a (sub)menu.

You don't need to use the other functionality of the plugin ;-)


Add More Pages - rfuller - 2011-09-16

Chris

Not all pages are being added to the menu, but I do have more than 20 that need to be in the menu.

The site is a online store with different product lines, with each product have its own place in the menu. Now each product may have 3 of 4 pages but are just linked to the product line that is in the menu first page. ( Did that make sense?)


mvlcek

Thanks for the sugguestion I may have to give it a try if I don't come up with another solution. Only reason I have not tried the I18N Plugin is I thought I remembered reading somewhere in the forum that it did not work with the Exec-PHP plugin well and that plugin is a must.

Thank you all for your replies and as always, the community here at GetSimple is the best!!!

Bob


Add More Pages - cumbe - 2011-09-16

Hi rfuller,
always you can modify /admin/edit.php, +- line 232.
Change the limit 20(<=20).

Code:
while ($i <= 20) {
        echo '<option value="'.$i.'">'.$i.'</option>';
               $i++;
    }

Regards.
PD: i think that it should be able to be changed in the settings ...


Add More Pages - mvlcek - 2011-09-16

rfuller Wrote:Thanks for the sugguestion I may have to give it a try if I don't come up with another solution. Only reason I have not tried the I18N Plugin is I thought I remembered reading somewhere in the forum that it did not work with the Exec-PHP plugin well and that plugin is a must.

I only found a post regarding an incompatibility with I18N Gallery with no specifics, however, a short test did not show any problems.
(of course Exec-PHP crashes on my homepage because the pages describe how to use my plugins and thus include <?php ... ?> as text :-(

Anyway, an alternative to Exec-PHP is the DynPages plugin, where you add your php code in a component and then include the component on the page (here calling a component, which includes the first two paragraphs of page my-page):
Code:
And here we have the first two paragraphs of another page:
{% includepage my-page 2 %}



Add More Pages - rfuller - 2011-09-17

Thanks for all the help.

Cumbe

That is what I been looking for, I just wasn't sure where to look for the correct line of code that needed to be changed. It seems to do what I need.

Thanks again for all the replies.


Bob