Envira Gallery: I have a lifetime license key that I want to enter

I checked the link Envira Gallery I have a Lifetime License Key that I want to enter and did the change but this is still not giving me an option to enter the keys. Please help.

Hello Karn,

Thanks for writing in!

Please use this updated PHP code instead in your child theme’s functions.php file.

// Remove License Functionality
// =============================================================================
//

function x_envira_gallery_remove_license_functionality() { 
  if (is_admin() ) {
    remove_action( 'envira_gallery_admin_styles', 'x_envira_gallery_hide_key_box' );
    remove_action( 'admin_print_scripts', 'x_envira_gallery_hide_license_errors', 20 );
	remove_action( 'envira_gallery_admin_styles', 'x_envira_gallery_hide_licensing' );
  }
}
add_action('admin_init', 'x_envira_gallery_remove_license_functionality');

kindly let us know how it goes.

Thanks, this worked for me.

You are most welcome, Karn.

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