Skip to content

Instantly share code, notes, and snippets.

@joshrogersdesign
joshrogersdesign / wc-disable-any-repeat-purchase.php
Created June 28, 2016 22:50 — forked from bekarice/wc-disable-any-repeat-purchase.php
Disables Repeat Purchase for any WooCommerce product
<?php
/**
* Disables repeat purchase for products / variations
*
* @param bool $purchasable true if product can be purchased
* @param \WC_Product $product the WooCommerce product
* @return bool $purchasable the updated is_purchasable check
*/
function sv_disable_repeat_purchase( $purchasable, $product ) {