在 woocommerce 电子邮件通知中添加用户的简历
Add user´s Bio in woocommerce email notifications
在我的 WooCommerce 网站中,我正在尝试添加用户简介。
关于如何在 Woocommerce 电子邮件通知中添加用户简介的任何想法?
在 woocommerce_email_customer_details
操作挂钩中尝试这个自定义挂钩函数:
add_action ('woocommerce_email_customer_details', 'add_user_bio', 9, 4);
function add_user_bio( $order, $sent_to_admin, $plain_text, $email ){
$user_bio = get_user_meta( $order->get_customer_id(), 'description', true );
$title = __("Biographical Info","woocommerce");
if( empty($user_bio) ) return; // We exit if the user bio doesn't exist
echo '<table id="user-bio" cellspacing="0" cellpadding="0" style="width: 100%; vertical-align: top; margin-bottom: 40px; padding: 0;" border="0">
<tbody>
<tr>
<td style="text-align:left; border: 0; padding: 0;" valign="top" width="100%">
<h2 style="color: #557da1; display: block; font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;">'.$title.'</h2>
</td>
</tr>
<tr>
<td style="text-align:left; border: 0; padding: 0" valign="top" width="100%">
<span style="border:solid 2px #e4e4e4; padding:12px; display:block;">'.$user_bio.'</p>
</td>
</tr>
</tbody>
</table>';
}
代码进入您的活动子主题(或主题)的 function.php 文件或任何插件文件。
这已经过测试并且有效。你会得到类似的东西:
在我的 WooCommerce 网站中,我正在尝试添加用户简介。
关于如何在 Woocommerce 电子邮件通知中添加用户简介的任何想法?
在 woocommerce_email_customer_details
操作挂钩中尝试这个自定义挂钩函数:
add_action ('woocommerce_email_customer_details', 'add_user_bio', 9, 4);
function add_user_bio( $order, $sent_to_admin, $plain_text, $email ){
$user_bio = get_user_meta( $order->get_customer_id(), 'description', true );
$title = __("Biographical Info","woocommerce");
if( empty($user_bio) ) return; // We exit if the user bio doesn't exist
echo '<table id="user-bio" cellspacing="0" cellpadding="0" style="width: 100%; vertical-align: top; margin-bottom: 40px; padding: 0;" border="0">
<tbody>
<tr>
<td style="text-align:left; border: 0; padding: 0;" valign="top" width="100%">
<h2 style="color: #557da1; display: block; font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;">'.$title.'</h2>
</td>
</tr>
<tr>
<td style="text-align:left; border: 0; padding: 0" valign="top" width="100%">
<span style="border:solid 2px #e4e4e4; padding:12px; display:block;">'.$user_bio.'</p>
</td>
</tr>
</tbody>
</table>';
}
代码进入您的活动子主题(或主题)的 function.php 文件或任何插件文件。
这已经过测试并且有效。你会得到类似的东西: