shipping_notification.phtml 329 B

12345678910111213141516
  1. <?php
  2. $shipping_category = $block->getShippingCategory();
  3. $attribute_info = $block->get('shipping_category');
  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; ?>