1
我WooCommerce模板默認cart-shipping.php
看到:WooCommerce車-shipping.php模板 - 單選按鈕,而不是選擇框
<select name="shipping_method[<?php echo $index; ?>]" data-index="<?php echo $index; ?>" id="shipping_method_<?php echo $index; ?>" class="shipping_method">
<?php foreach ($available_methods as $method) : ?>
<option value="<?php echo esc_attr($method->id); ?>" <?php selected($method->id, $chosen_method); ?>><?php echo wp_kses_post(wc_cart_totals_shipping_method_label($method)); ?></option>
<?php endforeach; ?>
</select>
我怎樣才能改變它從選擇框單選按鈕?