Show Tech Combs

from 11,90 

(amount of VAT charged depends on destination country)

plus shipping cost

  • Show Tech Greyhound Combs
  • metal combs for dogs
  • two variants
  • for all dog breeds
  • detailed description click

Delivery time: 4-14 business days*

SKU: N/A Category: Tags: , , ,
Share with your friends:
Show Tech Logo
// Add the countdown to the WooCommerce before single product summary hook add_action('woocommerce_before_single_product_summary', 'ts_delivery_countdown'); // Add the countdown timer to the WooCommerce before single product summary hook function ts_delivery_countdown() { date_default_timezone_set('Europe/Berlin'); $deadline = 9; $isWeekend = null; $weekend = array('Saturday', 'Sunday'); $weekdayDeadline = "Friday 9:00"; // 9:00 AM // Get the current day and time $currentDay = date("l"); $currentTime = strtotime("now"); // Check if it's a weekend or past the weekday deadline if (in_array($currentDay, $weekend) || ($currentTime > strtotime($weekdayDeadline))) { $isWeekend = true; } else { $isWeekend = false; } if (!$isWeekend) { echo '

'; } }