15 lines
448 B
PHP
15 lines
448 B
PHP
<?php
|
|
if (!isset($buttonLabel, $apiToken, $methodId)) {
|
|
return;
|
|
}
|
|
$singleRow = get_option('polkurier_layout_checkout_full_row') === '1';
|
|
?>
|
|
<tr class="polkurier-shippment">
|
|
<?php if (!$singleRow): ?>
|
|
<td class="polkurier-shippment-label"></td>
|
|
<?php endif ?>
|
|
<td class="polkurier-shippment-content" <?= $singleRow ? 'colspan="2"' : '' ?>>
|
|
<?php include 'select_shipping_point.php' ?>
|
|
</td>
|
|
</tr>
|