Remove nav bar completely from project to include calendar plugin..

The recommended method of customizing your AppGini-generated application is through hooks. But sometimes you might need to add functionality not accessible through hooks. You can discuss this here.
Post Reply
utony
Veteran Member
Posts: 93
Joined: 2020-04-03 18:37

Remove nav bar completely from project to include calendar plugin..

Post by utony » 2022-01-08 05:35

I have tried this and I can remove nav bar for other pages but can’t figure out how to remove the nav bar completely from the calendar plug-in. I want to iframe the calendar into an existing website and the nav bar just throws the calendar off as if it shouldn’t be on the page. Any help would be greatly appreciated!!!!

User avatar
ronwill
Veteran Member
Posts: 228
Joined: 2015-08-08 10:12
Location: Cheltenham UK +Weatherford USA

Re: Remove nav bar completely from project to include calendar plugin..

Post by ronwill » 2022-01-15 14:19

Don't know if this helps for your case, I have done this before to remove nav bar and/or footers on specific pages etc. There is probably a better way using hooks etc. without modifying the xxxx_view.php files (that regenerate unless you make them read only for edited pages).

To remove the navbar or footer on specific pages or an entire app:
Place in footer of pagename_view.php in main directory

Code: Select all

<style>
  nav {display:none;}
  body {margin-top:-60px !important;}
</style>
<style>
  footer {display:none;}
</style> 
Ron - Gloucestershire, UK: AppGini Pro V 23.15 Rev 1484 - LOVING IT!
Plugins: Mass Update + Search Page Maker + Summary Reports + Calendar + Messages
Bizzworxx: AppGiniHelper + Inline Detail View
Alejandro Landini: To-Do List + MPI + TV Field Editor
Other: Udemy Course

Post Reply