Page 1 of 1

[Solved]Change radio shipping methods to drop down

Posted: Sun Jul 22, 2018 10:36 pm
by xxvirusxx
Any ideea how to change shipping method code to be like select options from products?

Delivery method name (+$45)

Code: Select all

<?php if ($shipping_methods) { ?>
<p><?php echo $text_shipping_method; ?></p>
<?php foreach ($shipping_methods as $shipping_method) { ?>
<p><strong><?php echo $shipping_method['title']; ?></strong></p>
<?php if (!$shipping_method['error']) { ?>
<?php foreach ($shipping_method['quote'] as $quote) { ?>
<div class="radio">
  <label>
    <?php if ($quote['code'] == $code || !$code) { ?>
    <?php $code = $quote['code']; ?>
    <input type="radio" name="shipping_method" value="<?php echo $quote['code']; ?>" checked="checked" />
    <?php } else { ?>
    <input type="radio" name="shipping_method" value="<?php echo $quote['code']; ?>" />
    <?php } ?>
    <?php echo $quote['title']; ?> - <?php echo $quote['text']; ?></label>
</div>
<?php } ?>
<?php } else { ?>
<div class="alert alert-danger"><?php echo $shipping_method['error']; ?></div>
<?php } ?>
<?php } ?>
<?php } ?>
Tks

OC 2.3.0.2

Until then I will do testings :)

Re: Change radio shipping methods to drop down

Posted: Mon Jul 23, 2018 5:19 am
by thekrotek
Just edit the template code and replace radio input with select. If you know basic coding, this won't be the issue for you.

Re: Change radio shipping methods to drop down

Posted: Mon Jul 23, 2018 3:36 pm
by xxvirusxx
I know that.....
Still learning.