• WP Super Cache’s “Delete Cache” link overlays Blog Title in Adminimize’s admin panel header.

    To solve this minor issue:

    1. Open file /wp-content/plugins/wp-super-cache/wp-cache.php
    2. Go to line # 1088
    3. Replace:
      echo "<li><a href='" . wp_nonce_url( 'options-general.php?page=wpsupercache&wp_delete_cache=1#list', 'wp-cache' ) . "' target='_blank' title='Delete Super Cache cached files (opens in new window)'>Delete Cache</a></li>";
      with:
      echo "<div style='margin-top:-15px;'><li><a href='" . wp_nonce_url( 'options-general.php?page=wpsupercache&wp_delete_cache=1#list', 'wp-cache' ) . "' target='_blank' title='Delete Super Cache cached files (opens in new window)'>Delete Cache</a></li></div>";
    4. Save your changes.

    http://wordpress.org/extend/plugins/adminimize/

  • The topic ‘[Plugin: Adminimize] WP Super Cache’s “Delete Cache” link overlays Blog title’ is closed to new replies.