Advertisement
verygoodplugins

Untitled

Oct 24th, 2022
1,137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. function breaks_woofunnels() {
  2.  
  3.     WC()->cart->calculate_totals();
  4.  
  5.     foreach ( WC()->cart->get_cart() as $item ) {
  6.         var_dump( get_the_excerpt( $item['product_id'] ) );
  7.     }
  8. }
  9.  
  10. add_action( 'woocommerce_before_checkout_form', 'breaks_woofunnels' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement