Home / Admin / Remove Manage Sites
Duplicate Snippet

Embed Snippet on Your Site

Remove Manage Sites

Removes the Manage Sites column from the licenses table on the customer purchase history page

Code Preview
php
<?php
function kjm_remove_manage_sites_link() {
	if ( isset( $_GET['action'] ) && $_GET['action'] == 'manage_licenses' ) {
		add_filter( 'edd_sl_force_activation_increase', '__return_true' );
	}
}
add_action( 'wp_head', 'kjm_remove_manage_sites_link' );

Comments

Add a Comment