They added an annoying registration pop-up, that won't allow you save options changes. For this I just found the functions to change to avoid this annoying screen, in the betheme folder search for theme-functions.php.
And find this code blocks
PHP:
function mfn_is_hosted()
{
// changed both values to true
return defined( 'ENVATO_HOSTED_KEY' ) ? true : true;
}
PHP:
function mfn_is_registered()
{
if (mfn_is_hosted()) {
return mfn_is_hosted();
}
if (mfn_get_purchase_code()) {
return strlen(mfn_get_purchase_code());
}
// change this to true
return true;
}
PHP:
function mfn_get_purchase_code()
{
if (mfn_is_hosted()) {
// change this to be a string ""
return "SUBSCRIPTION_CODE";
}
$code = get_site_option('envato_purchase_code_7758048');
if (!$code) {
// BeTheme < 21.0.8 backward compatibility
$code = get_site_option('betheme_purchase_code');
if ($code) {
update_site_option('envato_purchase_code_7758048', $code);
delete_site_option('betheme_purchase_code');
delete_site_option('betheme_registered');
}
}
return $code;
}
enjoy
File attached.