Comments jamescow1 started the conversationSeptember 8, 2022 at 6:50pmHi 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] repliedSeptember 10, 2022 at 6:12amadd 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); Sign in to reply ...
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.
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);