Admin panel Categories text disappear.
add_filter( 'the_category' , 'enough_remove_ref' );
function enough_remove_ref($content){
preg_match( '!(.+)rel="[^"]+"(.+)!', $content, $regs );
return $regs[1].$regs[2];
}
Please Change below.
//add_filter( 'the_category' , 'enough_remove_ref' );
function enough_remove_ref($content){
preg_match( '!(.+)rel="[^"]+"(.+)!', $content, $regs );
return $regs[1].$regs[2];
}
This bug will be fixed Enough ver 0.42
Thank you.