Browse
For agents
About
PostNL for WooCommerce
/
4.4.0
PostNL for WooCommerce
v4.4.0
Switch version
5.9.12
5.9.11
5.9.10
5.9.9
5.9.8
5.9.7
5.9.6
trunk
2.5.0
2.5.1
2.5.2
2.5.3
2.5.4
2.5.5
3.1.4
3.1.5
3.1.6
3.1.7
4.0.0
4.0.1
4.0.2
4.3.2
4.3.3
4.4.0
4.4.1
All 72 releases
Overview
Code
woo-postnl
/
includes
/
views
/
html-delivery-options-template.php
html-delivery-options-template.php
in PostNL for WooCommerce 4.4.0, at includes/views/html-delivery-options-template.php
12 lines
450 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
div
class
=
"
woocommerce-postnl__delivery-options
"
>
2
<
?
php
3
//
Add custom css to the delivery options, if any
4
if
(
!
empty
(
WCPOST
(
)
->
setting_collection
->
getByName
(
WCPOST_Settings
::
SETTING_DELIVERY_OPTIONS_CUSTOM_CSS
)
)
)
{
5
echo
"
<style>
"
;
6
echo
WCPOST
(
)
->
setting_collection
->
getByName
(
WCPOST_Settings
::
SETTING_DELIVERY_OPTIONS_CUSTOM_CSS
)
;
7
echo
"
</style>
"
;
8
}
9
?
>
10
<
div
id
=
"
myparcel-delivery-options
"
>
<
/
div
>
11
<
/
div
>
12