craftpeak/woocommerce-prevent-repeat-purchases

一个防止客户重复购买的 WooCommerce 插件。仅适用于简单产品。

1.1.0 2020-10-19 17:05 UTC

This package is not auto-updated.

Last update: 2024-10-01 11:48:32 UTC


README

一个防止客户重复购买的 WooCommerce 插件。

仅适用于简单产品!!

要求

  • WooCommerce
  • PHP 7+(实际上不是,但别成为那种人)

安装

composer require craftpeak/woocommerce-prevent-repeat-purchases

(或者用老方法做)

设置

对于简单产品,在“常规”产品元数据框中有一个“防止重复购买?”复选框。如果选中,客户将只能购买一次(每个账户一次)。这是通过 wc_customer_bought_product 函数实现的,并且是针对每个产品单独设置的。

自定义

如果您想更改用户无法重复购买时显示的消息,请使用 wc_repeat_nonpurchaseable_message 过滤器,例如

add_filter( 'wc_repeat_nonpurchaseable_message', function() {
  return "Ya can't have it AGAIN!";
} );