Recogida en tienda local Dorrego 1487 PB «B», 2000, Rosario, AR
jQuery(document).ready(function ($) {
// Select2 Enhancement if it exists.
if ($().select2 && (yoast_wcseo_local_translations.select2 == 'enabled')) {
$('#shipping_method_select').select2({width: 'resolve'});
}
$('input.shipping_method').on('change', function (e) {
$('#shipping_method_select').remove();
});
// Init change toggle on our radio-btn.
$('#yoast-local-seo-shipping_method_toggle').on('change', function (e) {
$this = $(this);
var checked = $this.prop('checked');
var $subset = $this.parent().find('.shipping_method_subset');
if (checked) {
// If it is checked...
if ($subset.find('input').length > 0) { // Look for inputs inside the subset.
// Look for a checked item in the subset radiolist.
if ($subset.find('input:checked').length == 0) {
/*
* If no checked items are found, make sure the first item is
* checked and triggered ( so Woo's calculator fires correctly ).
*/
$subset.find('input:first').trigger('click');
}
} else {
if ($subset.find('input:selected').length == 0) {
$subset.find('option:first').prop('selected', true);
}