Skip to content

Instantly share code, notes, and snippets.

@MrVibe
Created September 13, 2021 06:52
Show Gist options
  • Save MrVibe/f3b68c7b34a71b8423b6c735d3bf714b to your computer and use it in GitHub Desktop.
Save MrVibe/f3b68c7b34a71b8423b6c735d3bf714b to your computer and use it in GitHub Desktop.
Change curriculum Unit Icons
add_filter('wplms_get_element_icon',function($icon,$type){
if($type == 'video'){
$icon = 'YOUR ICON CLASS';
}
return $icon;
},10,2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment