shipping_notification.phtml 371 B

1234567891011121314
  1. <?php
  2. $_product = $block->getProduct();
  3. $shipping_category = $_product->getResource()->getAttribute('shipping_category')->getFrontend()->getValue($_product);
  4. if($shipping_category == 'Late'){
  5. $ship_notif_enable = 1;
  6. }
  7. ?>
  8. <?php if($ship_notif_enable) : ?>
  9. <?php echo $block->getChildHtml('cpcommerce_shipping_notification'); ?>
  10. <?php endif; ?>