Advertisement
developerjustin

Untitled

Jul 10th, 2014
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. //Remove everything but add to cart form from product page shortcode
  2.  function clean_woocommerce_page($html){
  3.  
  4.     $dom = new DOMDocument;
  5.     $dom->loadHTML( $html );   
  6.    
  7.     $xpath = new DOMXPath( $dom );
  8.    
  9.     //Remove Tabs
  10.     $tabs = $xpath->query(".//div[@class='woocommerce-tabs'] | .//div[@class='images'] | .//h1");      
  11.     foreach ( $tabs as $div ) {
  12.         $div->parentNode->removeChild( $div );
  13.     }  
  14.        
  15.     return $dom->saveHTML();
  16.    
  17.  }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement