正常的通知邮件,底部有powered by fluentform
移除的办法很简单,在functions.php或者是code snippets中加入下面这段代码即可
add_filter( 'fluentform_email_template_footer_credit', 'remove_fluentform_footer_credit', 10, 3 );
function remove_fluentform_footer_credit( $poweredBy, $form, $notification ) {
// Return an empty string to remove the footer credit
return '';
}
再去看通知邮件,就只有自己公司的信息了