Home / Admin / Show link assistant suggestions
Duplicate Snippet

Embed Snippet on Your Site

Show link assistant suggestions

This snippet fixes a conflict of a custom theme with the default WordPress class called 'fixed'. The theme defines this class separately and hides our Link Assistant suggestions since we use this default WordPress class.

<10
Code Preview
php
<?php
add_action('admin_head', 'show_link_assistant_suggestions');
function show_link_assistant_suggestions() {
  echo '<style>
    .aioseo-tab-content.aioseo-link-assistant .wp-table .wp-list-table.widefat.fixed{
	  position: unset !important;
    } 
  </style>';
}

Comments

Add a Comment