Fordson theme - URL for Dashboard different in 2 places

Fordson theme - URL for Dashboard different in 2 places

Michael Buchanan發表於
Number of replies: 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


評比平均分數: -
In reply to 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.