Fordson theme - URL for Dashboard different in 2 places

Fordson theme - URL for Dashboard different in 2 places

بواسطة - Michael Buchanan
عدد الردود: 1

I'm using Moodle 3.5.4 and Fordson theme 3.5 release 3.  From the home page, there are two places which have links to go to the dashboard - From the My Courses menu at the top of the screen and the Dashboard button below.  I can modify the latter URL in the Fordson Icon Navigation settigns but can't figure out where to modify the link from the My Courses menu.  The reason I am wanting to do this is the link is currently https://mysite.com/my and I need to add a / to make it https://mysite.com/my/ in order to work correctly.


Home page of my site


متوسط التقييمات: -
رداً على Michael Buchanan

Re: Fordson theme - URL for Dashboard different in 2 places

بواسطة - Chris Kenniburg
صورة Plugin developers
Open up fordson/classes/output/core_renderer.php and change this line:
https://github.com/dbnschools/moodle-theme_fordson/blob/master/classes/output/core_renderer.php#L386
Add a trailing slash to this line whereever it might be on your verson:

$dashurl = new moodle_url("/my");

It might be different on your file since I only operate on the current version.