# woo-postnl/4.4.1/includes/views/html-delivery-options-template.php

PostNL for WooCommerce, version 4.4.1. 12 lines.

- Page: https://pluginprobe.com/plugins/woo-postnl/4.4.1/code/includes/views/html-delivery-options-template.php
- Raw: https://pluginprobe.com/plugins/woo-postnl/4.4.1/raw/includes/views/html-delivery-options-template.php
- Modified: 2021-01-04T09:17:00+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/woo-postnl/4.4.1/code/includes/views/html-delivery-options-template.php#L10-L20`.

```php
<div class="woocommerce-postnl__delivery-options">
    <?php
    // Add custom css to the delivery options, if any
    if (!empty(WCPOST()->setting_collection->getByName(WCPOST_Settings::SETTING_DELIVERY_OPTIONS_CUSTOM_CSS))) {
        echo "<style>";
        echo WCPOST()->setting_collection->getByName(WCPOST_Settings::SETTING_DELIVERY_OPTIONS_CUSTOM_CSS);
        echo "</style>";
    }
    ?>
  <div id="myparcel-delivery-options"></div>
</div>

```
