Hidden Tab CSS Fix
-
Hi,
The plugin was not working, but if I add this CSS to the admin area it works.
.hidden-by-tab {display:block !important;}
Could you fix this in the plugin?For anyone who reads this: you could add this to your functions.php
add_action(‘admin_head’, ‘my_custom_fonts’);
function my_custom_fonts() {
if( current_user_can(‘administrator’)) {
echo ‘<style>
.hidden-by-tab {display:block !important;}
</style>’;}}
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Hidden Tab CSS Fix’ is closed to new replies.