Skip to content

Instantly share code, notes, and snippets.

@KaineLabs
Created June 11, 2018 18:00
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KaineLabs/52703399f1646593f931e3d29f8953a6 to your computer and use it in GitHub Desktop.
Save KaineLabs/52703399f1646593f931e3d29f8953a6 to your computer and use it in GitHub Desktop.
Change Mycred History Icon
<?php
/**
* # Change Mycred History Icon
*/
function yz_mycred_set_history_icon( $options ) {
// Options.
$option = array(
'yz_mycred-history_tab_icon' => 'diamond',
);
$options = array_merge( $options, $option );
return $options;
}
add_filter( 'yz_default_options', 'yz_mycred_set_history_icon', 20 );
@footmob
Copy link

footmob commented May 8, 2020

Does not work. The default icon remains.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment