专研WordPress,外贸B端网站建设及引流

移除FluentForm通知邮件底部的Powered by FluentForm

正常的通知邮件,底部有powered by fluentform

image

移除的办法很简单,在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 '';
}

再去看通知邮件,就只有自己公司的信息了

image 1