Home link on moodle logo

Home link on moodle logo

by Teju Yedla -
Number of replies: 1

Hello,

 We are using Moodle 3.1, we changed the theme to bootstrap.The problem we changed the theme was that,while student taking the exams in safe exam browser,by knowingly or unknowingly,if they click on logo on the top of the page,its taking them out of the quiz. and they can come out of the exam and can continue without the password(if the start up key is same). We found out that all the theme have same option.

Is there any way i can deactivate the link on the logo as a administrator, so that there will be better security by the time of exams.

Thank you

Average of ratings: -
In reply to Teju Yedla

Re: Home link on moodle logo

by Rahul Barpha -

Hello Teju,

You can remove link from logo.Please open header.php file and remove link.

Goto >  Theme > Your theme > layout > includes > header.php

you will get code like below line

<div class="logo"><a href="<?php echo $CFG->wwwroot;?>"><img src="<?php echo get_logo_url(); ?>" width="243" height="77" alt="themename"></a></div>

remove  'a'  tag from div.

thanks