how can i insert custom page between others on home

Discussions related to customizing hooks. Hooks are documented at http://bigprof.com/appgini/help/advanced-topics/hooks/
Post Reply
mcvaidas
Posts: 26
Joined: 2019-04-14 17:45

how can i insert custom page between others on home

Post by mcvaidas » 2022-07-06 19:25

how can i insert custom page between others on home ?
Now is custom pages always on buttom. How can i reorder it?

xbox2007
Veteran Member
Posts: 129
Joined: 2016-12-16 16:49

Re: how can i insert custom page between others on home

Post by xbox2007 » 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

mcvaidas
Posts: 26
Joined: 2019-04-14 17:45

Re: how can i insert custom page between others on home

Post by mcvaidas » 2022-07-16 20:38

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

mcvaidas
Posts: 26
Joined: 2019-04-14 17:45

Re: how can i insert custom page between others on home

Post by mcvaidas » 2022-07-20 09:56

I like Tischplan at 1 position, but all custom pages are always at buttom. I i like it just for this group ,,Kasse"
Attachments
Screenshot 2022-07-20 at 11.45.56.jpg
Screenshot 2022-07-20 at 11.45.56.jpg (171.86 KiB) Viewed 1257 times

AhmedBR
AppGini Super Hero
AppGini Super Hero
Posts: 327
Joined: 2013-09-19 10:23

Re: how can i insert custom page between others on home

Post by AhmedBR » 2022-07-27 20:29

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
AppGini 22.14 - xampp 3.3.0 - PHP 7.4.30 - Summary reports - Calendar - Mass update - Messages - AppGiniHelper

mcvaidas
Posts: 26
Joined: 2019-04-14 17:45

Re: how can i insert custom page between others on home

Post by mcvaidas » 2022-08-03 06:09

thank you for your help but question was "between others...". I dont like all custom pages at front.
AhmedBR wrote:
2022-07-27 20:29
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

Post Reply