Home Forums WoodMart support forum How to set the countdown timer in line with the price on single product page Reply To: How to set the countdown timer in line with the price on single product page

#314310

Artem Temos
Keymaster

Hello,

Please add this code to the functions.php of the child theme.

if ( ! function_exists( 'wd_replacement_price_countdown' ) ) {
   /**
    * Replacement of price and countdown
    */
   function wd_replacement_price_countdown() {
      remove_filter( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 );
      remove_filter( 'woocommerce_single_product_summary', 'woodmart_single_product_countdown', 15 );

      add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 12 );
      add_action( 'woocommerce_single_product_summary', 'woodmart_single_product_countdown', 11 );
   }

   add_action( 'wp', 'wd_replacement_price_countdown', 1001 );
}

Regards.