13 lines
501 B
PHP
13 lines
501 B
PHP
<?php /** @var array $shipping_method */ ?>
|
|
<td width="1%" class="integration default">
|
|
<?php
|
|
$tip = __( 'Paczkomaty', 'woocommerce-paczkomaty-inpost' );
|
|
if ( isset( $shipping_method['paczkomaty_usluga'] ) && 'polecony' === $shipping_method['paczkomaty_usluga'] ) {
|
|
$tip = __( 'Paczka E-Commerce', 'woocommerce-paczkomaty-inpost' );
|
|
}
|
|
?>
|
|
<span class="tips" data-tip="<?php echo $tip; ?>">
|
|
<?php echo $shipping_methods['paczkomaty_shipping_method']->method_title; ?>
|
|
</span>
|
|
</td>
|