wordpressclasswoocommerce

Woocommerce price custom class


Can someone help me with default woocomerce prices to make it look like this:

<p class="price">
 <span class="woocommerce-Price-amount amount">
      <bdi><span class="woocommerce-Price-currencySymbol">$</span>0.3600</bdi></span> 
        – 
 <span class="woocommerce-Price-amount amount">
      <bdi><span class="woocommerce-Price-currencySymbol">$</span>600.0000</bdi></span>

How can i change this with php hooks or functions to:

<p class="price woo-custom-price">
 <span class="woocommerce-Price-amount amount">
      <bdi class="custom-price-one"><span class="woocommerce-Price-currencySymbol">$</span>0.3600</bdi></span> 
        – 
 <span class="woocommerce-Price-amount amount">
      <bdi class="custom-price-two"><span class="woocommerce-Price-currencySymbol">$</span>600.0000</bdi></span>

Thank for your time.

This is that I want to change.

This is that I want to change.


Solution

  • Woocommerce has hook for this.

    woocommerce_product_price_class

    More information below:

    https://wp-kama.com/plugin/woocommerce/hook/woocommerce_product_price_class