Disable Email Open Tracking
add_filter('fluentcrm_disable_email_open_tracking', '__return_true');
Disable Email Link Clicks and short URLs
add_filter('fluent_crm/track_click', '__return_false');
Add Custom Contact Status
(Change “Withdrawed” to the custom contact status you want to display.)
add_filter('fluent_crm/contact_statuses', function($statuses){
$statuses[] = "Withdrawed";
return $statuses;
},10, 1);
Add Custom Contact Type
(Replace “Student” with the new contact type and “This is a Student” with the description)
add_filter('fluent_crm/contact_types', function($types){
$types['Student'] = __('This is a Student', 'fluent-crm');
return $types;
}, 10, 1);
Is it possible to change the unsubscribe behaviour: I habve sme transactional emails that users should still receive after unsubscribing, my idea is to NOT unsibscribe them from a list called “Transactional” while they will be unsubscribed from all other lists
Hi Chris, Thanks for your feature request. We don’t know how users use FluentCRM. Many of our users are beginners and having this as an option might result in a lot of spam complaints if not implemented the right way. Do you have any idea how we can counter this?
Is it possible to disable email Link Clicks and short URLs on just a single email or single link in an email?