Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save spythemes/28a7a5a48a420aea063365b02b71d932 to your computer and use it in GitHub Desktop.
Save spythemes/28a7a5a48a420aea063365b02b71d932 to your computer and use it in GitHub Desktop.
Prevent Membership 2 Pro from taking over the "Add new" button on "My Sites" page on Multisite;
<?php
// use this code as MU Plugin
function wpmu_dont_override_add_new_site_dash_button() {
if (is_user_logged_in() AND is_admin())
return network_site_url() . 'wp-signup.php';
}
add_action('wp_signup_location','wpmu_dont_override_add_new_site_dash_button',1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment