【问题标题】:Change the subject of Woocommerce admin email notification for a specific category更改特定类别的 Woocommerce 管理员电子邮件通知的主题
【发布时间】:2018-07-02 16:37:41
【问题描述】:

我正在尝试禁用或更改发送给管理员的 woocommerce 确认电子邮件的主题行。

我只想为一个特定的产品类别执行此操作。

感谢任何帮助。

【问题讨论】:

    标签: php wordpress woocommerce categories email-notifications


    【解决方案1】:

    更新 (与您的评论相关)

    使用挂在woocommerce_email_subject_new_order 过滤器挂钩中的自定义函数将允许您更改特定产品类别的“新订单”管理员电子邮件通知的主题。

    您必须在目标产品类别和自定义主题下方的代码中定义:

    add_filter( 'woocommerce_email_subject_new_order', 'custom_subject_for_new_order', 10, 2 );
    function custom_subject_for_new_order( $subject, $order ) {
        $found = $others = false;
    
        // HERE define your product categories in the array (can be IDs Slugs or Names)
        $categories = array('clothing'); // coma separated for multiples categories
    
        // HERE define your custom subject for those defined product categories
        $custom_subject  = __("My custom subject goes here", "woocommerce");
    
        // Loop through order items
        foreach( $order->get_items() as $item ){
            if( has_term( $categories, 'product_cat', $item->get_product_id() ) && $found )
                $found = true; // Category is found
            else
                $others = true; // Other Categories are found
        }
        // Return the custom subject when targeted product category is found but not others.
        return $found && ! $others ? $custom_subject : $subject;
    }
    

    代码进入活动子主题(或活动主题)的function.php文件中。

    经过测试并且有效。

    【讨论】:

    • 谢谢!这很好用。还有一个问题。如果订单中只有此类别中的商品,是否有办法应用此更改。这意味着,如果一个人拥有“免费下载”类别中的项目,则主题将会改变,但如果他们拥有“免费下载”类别中的一个项目和“小说”或任何其他类别中的项目,则主题不会改变。跨度>
    • 完美运行!感谢您的帮助!
    • @SeanSmith 我从您的问题中删除了代码,因为它与那里无关。这是一个与更新或其他相关的问题……您应该提出一个新问题,在哪里可以使用此代码。这样它就会出现在最近的问题上,并允许其他人回答。谢谢
    • @SeanSmith 没问题,只是告诉你更好的方法……如果你能在完美运行后移除 cmets!这可能会很好,因为您的实际问题可能是由于太多事情造成的。谢谢
    猜你喜欢
    • 1970-01-01
    • 2020-03-11
    • 1970-01-01
    • 1970-01-01
    • 2021-05-02
    • 1970-01-01
    • 2017-02-09
    • 2021-04-19
    • 2018-02-17
    相关资源
    最近更新 更多