Files
krolewskie-miody.pl/wp-content/plugins/woocommerce-paczkomaty-inpost/class/views/flexible-shipping-method-integration-col.php
2026-04-28 15:13:50 +02:00

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>