Installare versione null e poi copiare in functions.php
// Add custom Theme Functions here
$site_url = get_site_url();
$domain_name = wp_parse_url($site_url, PHP_URL_HOST);
$update_option_data = array(
'id' => 'new_id_123456',
'type' => 'PUBLIC',
'domain' => $domain_name, // Set the domain to the current domain name
'registeredAt' => '2021-07-18T12:51:10.826Z',
'purchaseCode' => 'abcd1234-5678-90ef-ghij-klmnopqrstuv',
'licenseType' => 'Regular License',
'errors' => array(),
'show_notice' => false
);
update_option('flatsome_registration', $update_option_data, 'yes');