Existing portal Customisation

hello everyone ,
in the portal i wanted to extend the portal’s existing code through my custom app . I want to add a bell icon on the portal’s navbar . How can i achieve this extension process from hooks ?
any suggestions ?

For overriding navbar you need to create navbar.html in your custom app with same path of frappe then you can make changes into that

For e.g.
Default Path: /home/frappe/frappe-bench/apps/frappe/frappe/templates/includes/navbar/navbar.html

Custom Path: /home/frappe/frappe-bench/apps/custom_app/custom_app/templates/includes/navbar/navbar.html

4 Likes

@sahilsuthar thanks man will give it a go . do i need to define anything on hooks.py for this ?

No just create file on same path it, that’s all required.

2 Likes

@sahilsuthar thanks man . will try this and let you know