Pages

Showing posts with label bell. Show all posts
Showing posts with label bell. Show all posts

Friday, July 7, 2017

Displaying Bell Schedule info on admin and teachers pages header of PowerSchool

Displaying Bell Schedule info on admin and teachers pages header of PowerSchool


Its quite useful displaying the bell schedule info of the day on the admin and teachers pagess header in PowerSchool. Here is how to do it:

1. Go to PS Administrator >> Custom Pages

2. Add this following code to wildcards/admin_header_css.txt and wildcards/teacher_header_css.txt

<span id="ssis-date" style="padding-right:20px;">
~[tlist_sql; select b.name as name, listagg(p.ABBREVIATION || ,) WITHIN GROUP ( ORDER BY bi.START_TIME) AS periods
    from ps.calendar_day c inner join ps.BELL_SCHEDULE b on c.BELL_SCHEDULE_ID = b.ID
        inner join ps.BELL_SCHEDULE_ITEMS bi on bi.BELL_SCHEDULE_ID = b.ID
        inner join ps.PERIOD p on p.ID = bi.PERIOD_ID
    where TO_CHAR(c.DATE_VALUE, DD-MM-YYYY) = TO_CHAR(CURRENT_DATE, DD-MM-YYYY)
        and c.SCHOOLID = ~(curschoolid)
    group by b.name; ]
    <span style="color:#195f7d">~(name):</span> ~(periods)
[/tlist_sql]
</span>

Requirement:  you have to setup the calendar for the day with a bellschedule (https://your.ps.addr/admin/schoolsetup/calendarsetup/calendarsetup.html)
Read more »

Friday, June 2, 2017

Disable Chromes Notification bell icon from notification area

Disable Chromes Notification bell icon from notification area



Chrome users may noticed that when they are using Chrome browser in notification area bell icon appears. So there are a way to disable that bell icon, and disappear from notification area.

1. Open Chrome browser and type in chrome://flags and hit enter.
2. Now use Ctrl+F keyboard combination to open search box in Chrome.
3. Search for Enable Rich Notifications and from drop down menu select Disabled.
But in latest version of Chrome there are no Enable Rich Notifications function. 
If you cant find any result from that, then try to find next Enable Google Now notifications support and Enable experimental Synchronized Notifications and select both to Disabled.
Now after that all, at bottom of left side press on the Relaunch Now button.
After Chrome restarted, all settings given from you will be appeared.
Read more »