Disable empty downloads redirection in Download Monitor

Disable empty downloads redirection in Download Monitor on child sites.

Snippet Type

Execute on Child Sites

Snippet

function dlm_disable_empty_download_redirect( $b ) {
	return false;
}
add_filter( 'dlm_empty_download_redirect_enabled', 'dlm_disable_empty_download_redirect' );

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.