Guest User

Untitled

a guest
Nov 21st, 2018
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <?php
  2.  
  3. function remove_switch_link( $switch_link, $item_id, $item, $subscription ) {
  4. $product_to_check = 336;
  5.  
  6. if( $subscription->has_product( $product_to_check ) ){
  7. return '';
  8. }
  9. return $switch_link;
  10. }
  11. add_filter( 'woocommerce_subscriptions_switch_link', 'remove_switch_link', 100, 4 );
Add Comment
Please, Sign In to add comment