【admin】How to add a menu on the student/parent client pages

Minna
Hobbyist

【admin】How to add a menu on the student/parent client pages

Role: admin

I have a link and want to add a menu like"Grade History" and "School bulletin"

when click the menu it can turn to the link page.

menu.png

 

I tried to look in the location shown below,

but did not find the code。

Who knows Where is it?Thanks.@JeffG9 @Reshma 

 

custom page.png

2 Solutions
JeffG9
PowerSchool Champion
PowerSchool Champion

@Minna 

 

Check the Wildcards folder. Something like guardian_header.XXXXXXXX

______________
Full Disclosure: I do not work for PowerSchool

View solution in original post

TinaW4
Achiever

Jeff is correct about the wildcards folder.  There is a custom insertion point in the left nav footer.  If you right click on wildcards and choose "New", "File", you can name your new file

 

guardian_header.YOURFILENAME.leftnav.footer.txt

 

and the code in your file will be added in the custom insertion point.

 

If you place the link elsewhere, you will have to update it every time you update PowerSchool.

View solution in original post

6 Replies
JeffG9
PowerSchool Champion
PowerSchool Champion

@Minna 

 

Check the Wildcards folder. Something like guardian_header.XXXXXXXX

______________
Full Disclosure: I do not work for PowerSchool
Minna
Hobbyist

@JeffG9 thank you so much!

TinaW4
Achiever

Jeff is correct about the wildcards folder.  There is a custom insertion point in the left nav footer.  If you right click on wildcards and choose "New", "File", you can name your new file

 

guardian_header.YOURFILENAME.leftnav.footer.txt

 

and the code in your file will be added in the custom insertion point.

 

If you place the link elsewhere, you will have to update it every time you update PowerSchool.

coughlan
Achiever

How do I get the icon and description to be together on the button?

The code on the guardian.header page doesn't have any images anywhere although the images are all in the images/img folder.

TinaW4
Achiever

Example of one I did for service hours:

 

#btn-cs a {
background: url("/images/btn-cs.png") no-repeat;
}

<ul>

<li id="btn-cs"><a href="/guardian/servicehours.html?frn=~(studentfrn)">Service Hours</a><br></li>

</ul>

coughlan
Achiever

Thanks

steve