---
title: 移除FluentForm通知邮件底部的Powered by FluentForm
slug: wordpress-remove-powered-by-fluentform
date: 2024-03-23
author: Frankie 徐
category: wordpress
tags: []
description: 正常的通知邮件，底部有powered by fluentform 移除的办法很简单，在functions.php或者是code snippets中加入下面这段代码即可 add_filter( 'fluentform_email_template_footer_credit', 'remove_fluentform_foot...
permalink: https://www.210k.cc/wordpress-remove-powered-by-fluentform
---

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

![image](./images/wordpress-remove-powered-by-fluentform-img-1.png)

移除的办法很简单，在functions.php或者是code snippets中加入下面这段代码即可

```php
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](./images/wordpress-remove-powered-by-fluentform-img-2.png)