I want to remove More help link from moodle 3.8 help pop up.

I want to remove More help link from moodle 3.8 help pop up.

by Thiwanka ramesh Senarathna -
အကြောင်းပြန်မှု အရေအတွက်: 7

I am attaching screenshot:


After clicking on more help link, open https://docs.moodle.org/38/en/Feedback_activity page

How to remove More help link from moodle 3.8 help popup?

Attachment moodle more help.PNG
ပျှမ်းမျှအဆင့်သတ်မှတ်ချက်များ: -
Thiwanka ramesh Senarathna ထံသို့ အကြောင်းပြန်ရာတွင်

Re: I want to remove More help link from moodle 3.8 help pop up.

by Thiwanka ramesh Senarathna -
Thiwanka ramesh Senarathna ထံသို့ အကြောင်းပြန်ရာတွင်

Re: I want to remove More help link from moodle 3.8 help pop up.

by Rick Jerz -
Particularly helpful Moodlers ၏ ရုပ်ပုံ Testers ၏ ရုပ်ပုံ
Why do you want to remove "More help?"
Rick Jerz ထံသို့ အကြောင်းပြန်ရာတွင်

Re: I want to remove More help link from moodle 3.8 help pop up.

by Thiwanka ramesh Senarathna -

Dear Rick 

in my case, some teachers confused more help link because we are using the Sinhala language. I am training every teacher so not important more help link. can you help hide or remove more help link?

thanks 

Thiwanka ramesh Senarathna ထံသို့ အကြောင်းပြန်ရာတွင်

Re: I want to remove More help link from moodle 3.8 help pop up.

by Rick Jerz -
Particularly helpful Moodlers ၏ ရုပ်ပုံ Testers ၏ ရုပ်ပုံ
No, I don't know how to hide it. And I am not sure if you can change this to the Sinhala language, either. Everything in your screenshot above this appears to be in English, so More help is also in English. In my own case, I would rather have teachers be able to get more help on their own than to bother me for help.

Sorry that I can't be of "more help" (if you know what I mean.) 🤔
Thiwanka ramesh Senarathna ထံသို့ အကြောင်းပြန်ရာတွင်

Re: I want to remove More help link from moodle 3.8 help pop up.

by Max L. -

I'm also keen to know how to disable or hide the "more help" link.

There was a solution from 2.x

=======

If modifying core is not an issue, the easiest way is to modify the function get_formatted_help_string so that it never looks for the language string ending in _link. You would remove the following block:

$helplink = $identifier . '_link';
if ($sm->string_exists($helplink, $component)) {  // Link to further info in Moodle docs.
    ...
}

=======

But how to do it in 3.9?


Many thanks!

Max L. ထံသို့ အကြောင်းပြန်ရာတွင်

Re: I want to remove More help link from moodle 3.8 help pop up.

by Jon Bolton -
Particularly helpful Moodlers ၏ ရုပ်ပုံ Testers ၏ ရုပ်ပုံ
Thiwanka ramesh Senarathna ထံသို့ အကြောင်းပြန်ရာတွင်

Re: I want to remove More help link from moodle 3.8 help pop up.

by Gebru Gidey -
put this in raw css of both sides it works for me.

a.helplinkpopup{
display:none !important;
}