• {{piltekk}}

    • about me
    • projects
    • blog
      • Magento 2
      • Ionic & Angular
    • contact

Category: Wordpress

How to remove price range woocommerce product page

  • October 25, 2018
  • piltekk
  • Wordpress

Add the following code in your functions.php add_filter( ‘woocommerce_variable_sale_price_html’, ‘my_remove_variation_price’, 10, 2 ); add_filter( ‘woocommerce_variable_price_html’, ‘my_remove_variation_price’, 10, 2 ); function my_remove_variation_price( $price ) { $price = ”; return $price; }

How to remove product meta on woocommerce product page

  • October 25, 2018
  • piltekk
  • Wordpress

add the following code in functions.php remove_action( ‘woocommerce_single_product_summary’, ‘woocommerce_template_single_meta’, 40 );

  • Copyright © All rights reserved. Designed by Abileweb