30 Snippets
<10 Favourites
<10 Downloads

Allow Subscriptions Product on BOGO and Add Product Search Field

add_filter( 'acfw_product_search_allowed_types' , 'acfw_search_add_support_for_subscription_products' ); function acfw_search_add_support_for_subscription_products( $product_types ) { $product_types[] = 'subscription'; $product_types[] = 'variable-subscription';…

Allow Admin to Redeem Customer's Loyalty Points to Store Credits

1. Add it to your site using one of the following methods: - Option A: Add…

1 2