D
D
DeeUs2019-01-16 11:23:15
WordPress
DeeUs, 2019-01-16 11:23:15

How to hide fields depending on the selected delivery?

How to hide and show fields in the checkout form, depending on the selected delivery? (AJAX form)

Answer the question

In order to leave comments, you need to log in

1 answer(s)
Z
zudogav, 2019-01-16
@zudogav

Write a small jquery script.
More or less like this:

$("input[name='имя_radio_кнопок']").change(function() {
    if ($("input[value='1']").prop("checked")) {
        $(".block1").css("display", "none");
    } else {
        $(".block1").css("display", "block");
    }
});

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question