Fix undefined constant warning
This commit is contained in:
parent
2003f39bad
commit
9f42ab646d
|
|
@ -156,10 +156,10 @@ if ( in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', g
|
|||
'class' => array('form-row-first carrier-name'),
|
||||
'required' => true,
|
||||
'options' => array(
|
||||
'' => __('Select a carrier', carrieracct),
|
||||
'UPS' => __('UPS', carrieracct),
|
||||
'FedEx' => __('FedEx', carrieracct),
|
||||
'DHL' => __('DHL', carrieracct),
|
||||
'' => __('Select a carrier', 'carrieracct'),
|
||||
'UPS' => __('UPS', 'carrieracct'),
|
||||
'FedEx' => __('FedEx', 'carrieracct'),
|
||||
'DHL' => __('DHL', 'carrieracct'),
|
||||
)
|
||||
), WC()->checkout->get_value( 'carrier_name' ));
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue