Okay
  Public Ticket #3121286
¿Is it possible to customize those browser tabs?
Closed

Comments

  • jamescow1 started the conversation

    Hi friends. 

    I would like to customize the browser tabs i show you at the image.

    I want to change the name and also set a redirection link. ¿Is it possible?

    Please give me a hand if i need to use code or show me how could i do it.

    I am open to learn. 

    Many thank's in advance.


  • [deleted] replied

    add this code in your wplms-customizer.php file in wplms customizer plugin : 


    add_filter('wplms_get_course_tabs',function($tabs){
    unset($tabs['announcementsnews']);unset($tabs['notes']);

    return $tabs;
    },99999999);