添加段落到Woocommerce简介电子邮件

时间:2017-08-28 16:03:27

标签: php email woocommerce

我正在努力学习php,但在需要进行必要的更改之前没有时间。

我附上了Woocommmerce发送给新供应商的当前欢迎电子邮件的图片。我想直接添加一个段落(包括一个网址)(之间有空格)“谢谢您创建帐户...”

新行会说“对于卖家资源,点击此处(带有指向页面的链接)”。

enter image description here

以下是我将覆盖的Wooocommerce的php电子邮件模板中的当前代码。

if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly

}

>

<p><?php printf( __( 'Thanks for creating an account on %1$s. Your username is %2$s.', 'woocommerce' ), esc_html( $blogname ), '<strong>' . esc_html( $user_login ) . '</strong>' ); ?></p>
<p><?php printf( __( 'Your password has been automatically generated: %s', 'woocommerce' ), '<strong>' . esc_html( $user_pass ) . '</strong>' ); ?></p>
<p><?php printf( __( 'You can access your account area to view your orders and change your password here: %s.', 'woocommerce' ), make_clickable( esc_url( wc_get_page_permalink( 'myaccount' ) ) ) ); ?></p>

谢谢!

1 个答案:

答案 0 :(得分:1)

在第一个printf下方添加此行。

void calculations(double first[], int& n)
{
    int k = 0;
    double max1= first[0];

    for (int i = 0; i < n; i++)
    {
        if (first[i] > max1)
        {
            max1 = first[i];
        }
            if (first[i] == max1)
            {
            k++;
            }
            if (k < 2)
            {
                for (int i = max1; i < n - 1; i++)
                {
                first[i] = first[i + 1];
                n--;
                }
            }
    }

    for (int i = 0; i < n; i++)
    {
        if (first[i] == 0)
        {
            first[i] = first[i + 1];
            n--;
        }
    }

    for (int i = 0; i < n; i++)
    {
        cout << first[i] << endl;
    }
}