Chamilo-lms: Remove option "My Certificates"

Created on 30 Nov 2018  路  5Comments  路  Source: chamilo/chamilo-lms

How to remove the "My Certificates" link from the Chamilo platform menu, do not students need to get certificates?

Can someone help me?

Question / Support

All 5 comments

You can find the menu template here: main/template/default/layout/menu.tpl
If you copy that to: main/template/overrides/layout/menu.tpl
Then remove or uncommend:
{% if certificate_url %} <li class="user-body"> <a title="{{ "MyCertificates"|get_lang }}" href="{{ certificate_url }}"> <em class="fa fa-graduation-cap" aria-hidden="true"></em> {{ "MyCertificates"|get_lang }} </a> </li> {% endif %}

AFAIK there no toggle for it in the admin gui.
Assuming your using 1.11.8 since you din't specify a version :)

There's an easier way:

  • edit app/config/configuration.php
  • add this line: $_configuration['hide_my_certificate_link'] = true;
  • save
  • reload the page

Good morning,

Thank you for support @spacecabbie @ywarnier,

In this configuration file I find the option to hide the block of courses_block, which is on the home page on the left, below profile edit?

div class="panel-group" id="courses" role="tablist" aria-multiselectable="true

Sincerely.

Good morning,

Thank you for support @spacecabbie @ywarnier,
In this configuration file I find the option to hide the block of courses_block, which is on the home page on the left, below profile edit?

div class="panel-group" id="courses" role="tablist" aria-multiselectable="true"
div class="panel panel-default" id="courses_block

Sincerely,

Hi @480419140
No, you would have to use the overrides technique mentioned by @spacecabbie to hide the courses block

Was this page helpful?
0 / 5 - 0 ratings