• Resolved gb84

    (@gunbold84)


    Is it possible to display the description for only the selected shipping method? At the moment it displays the description for all the shipping methods at same time.

Viewing 1 replies (of 1 total)
  • Plugin Author thomascharbit

    (@thomascharbit)

    Hi,

    I think it’s best to keep this kind of frontend customization in your theme, but
    yes, sure, it would be easy to do this in CSS:

    .shipping_method + label + div {
        display: none;
    }
    .shipping_method:checked + label + div {
        display: block;
    }

    Something like this…

    Have a try!

Viewing 1 replies (of 1 total)
  • The topic ‘display the description for only selected shipping method’ is closed to new replies.