Multiple BOGOs

By default, once a BOGO has been matched for products in the cart, no other BOGOs will apply. Follow these instructions to allow multiple BOGOs to work on the same product.

Note: If you are more comfortable with editing your functions.php you can do that instead of Code Snippets.

1. Download the free Code Snippets plugin: https://wordpress.org/plugins/code-snippets/
2. Create a Snippet with the following code:

function custom_pw_bogo_already_applied_cart_items( $cart_items ) {
    return array();
}
add_filter( 'pw_bogo_already_applied_cart_items', 'custom_pw_bogo_already_applied_cart_items' );
Skip to content