Page 1 of 1
how can i insert custom page between others on home
Posted: 2022-07-06 19:25
by mcvaidas
how can i insert custom page between others on home ?
Now is custom pages always on buttom. How can i reorder it?
Re: how can i insert custom page between others on home
Posted: 2022-07-09 05:35
by xbox2007
hello
you can create new php file and add your code on this file
ex. I made panel.php inside folder name report
i add simple code
<?php
echo "Hello ";
?>
this in home.php
you add your new page after this
<?php $current_group = $tgroup;
include_once(__DIR__ . '/report/panel.php');
?>
it work with me
Re: how can i insert custom page between others on home
Posted: 2022-07-16 20:38
by mcvaidas
i just like change button position...
your code opening custom page at top
xbox2007 wrote: ↑2022-07-09 05:35
hello
you can create new php file and add your code on this file
ex. I made panel.php inside folder name report
i add simple code
<?php
echo "Hello ";
?>
this in home.php
you add your new page after this
<?php $current_group = $tgroup;
include_once(__DIR__ . '/report/panel.php');
?>
it work with me
Re: how can i insert custom page between others on home
Posted: 2022-07-20 09:56
by mcvaidas
I like Tischplan at 1 position, but all custom pages are always at buttom. I i like it just for this group ,,Kasse"
Re: how can i insert custom page between others on home
Posted: 2022-07-27 20:29
by AhmedBR
Was searching for something and came across your post.
here is how I do it:
viewtopic.php?f=4&p=19837#p19837
Hope it helps you
Re: how can i insert custom page between others on home
Posted: 2022-08-03 06:09
by mcvaidas
thank you for your help but question was "between others...". I dont like all custom pages at front.