Hello!
I wanted to know if there is a way to add a tag to a contact if a checkbox is checked.
i tried doing it like this but it didn’t work, only TAG1 is assigned.
if($cf7_form_id == 1)
{
$subscriber->tags[] = 'TAG1';
if(isset($_POST['mc4wp_checkbox']) && $_POST['mc4wp_checkbox'] == 1)
{
$subscriber->tags[] = 'TAG2';
}
}
Thanks!