Woocommerce预订,预订提醒电子邮件编辑

时间:2018-11-28 12:27:23

标签: php wordpress woocommerce woocommerce-bookings

我从昨天开始重新表述了我的问题,因此,对于woocommerce预订,我们会在预订前24小时发送预订提醒,作为标准,从历史上看,我们只有一种可预订的产品,因此共享的信息一样,只是插入一些

标记。

我们现在需要发送两种不同类型的信息,具体取决于所带来的两种产品中的哪一种。

我已将其添加到woocommerce预订提醒电子邮件中:

    String date = "08/21/2018";
    String [] splitDate = date.split("/");
    int month = Integer.valueOf(splitDate[0]);

然后在functions.php文件中,我将其作为操作:

    <?php do_action( 'adl_booking_reminder_product_code' ); ?>

我知道此代码有效,为了对其进行测试,我在“订单表之后”添加了操作,并且该操作没有问题。我只是想把头发放入预订通知电子邮件中。

谢谢, A

0 个答案:

没有答案
相关问题