Version released to 7.11.9. Thank you
To register, you need
1. Go /wp-content/themes/Avada/includes/lib/inc
2. Open class-fusion-product-registration.php
find the lines and change false to true.
public function is_registered( $product_id = '' ) {
if ( ! $product_id ) {
$product_id = $this->product_id;
}
if ( ! isset( $this->registration_data[ $product_id ] ) ) {
return true;
}
if ( '' === $this->registration_data[ $product_id ]['purchase_code'] ) {
return true;
}
// Is the product registered?
if ( true === $this->registration_data[ $product_id ]['is_valid'] ) {
return true;
}
return true;
}