can anyone help?
-
Can anyone help here? I think the admin is too busy to reply all issues.
I was told to add below code to solve the problem that add on items are not show up at submenu of “Points”. Can anyone tell which file I should put below code on in order to show up the submenu of “Points” at admin?
add_action(‘admin_head’, ‘mycred_custom_display’);
function mycred_custom_display() {
global $mycred_types;?>
<style type=”text/css”>
<?php foreach ( $mycred_types as $type => $label ) { if ( $type == ‘mycred_default’ ) $name = ”; else $name = ‘_’ . $type; ?>
#adminmenu .toplevel_page_mycred<?php echo $name;?> .wp-submenu li:not(:first-child){display:block !important;}
#adminmenu .toplevel_page_mycred<?php echo $name;?> .wp-submenu li:not(:first-child) a{display:block !important;}
<?php } ?>
</style>
<?php
}
The topic ‘can anyone help?’ is closed to new replies.