web-dev-qa-db-ja.com

ラジオボタンとしてのWooCommerceバリエーション

wooCommerce内で、プラグインを操作せずにバリエーションのドロップダウンをラジオボタンに変更することは可能ですか?バリエーションセクションで次の設定を行います。

  • 1リットル(10€)
  • 2リットル(20€)
  • 3リットル(25€)

オプションを選択すると、下部の価格が自動的に変更されます。

ありがとうございました

9
Sam De Decker

私がこれをうまく機能させる最善の方法は、選択ドロップダウンの直後にラジオボタンマークアップを追加し、CSSを使用して選択ドロップダウンを非表示にすることです。また、選択したラジオボタンに応じて価格が変化するように、非表示の選択値の変更をトリガーするカスタムJSが必要になります。

マークアップを追加する方法は次のとおりです。

function variation_radio_buttons($html, $args) {
  $args = wp_parse_args(apply_filters('woocommerce_dropdown_variation_attribute_options_args', $args), array(
    'options'          => false,
    'attribute'        => false,
    'product'          => false,
    'selected'         => false,
    'name'             => '',
    'id'               => '',
    'class'            => '',
    'show_option_none' => __('Choose an option', 'woocommerce'),
 ));

  if(false === $args['selected'] && $args['attribute'] && $args['product'] instanceof WC_Product) {
    $selected_key     = 'attribute_'.sanitize_title($args['attribute']);
    $args['selected'] = isset($_REQUEST[$selected_key]) ? wc_clean(wp_unslash($_REQUEST[$selected_key])) : $args['product']->get_variation_default_attribute($args['attribute']);
  }

  $options               = $args['options'];
  $product               = $args['product'];
  $attribute             = $args['attribute'];
  $name                  = $args['name'] ? $args['name'] : 'attribute_'.sanitize_title($attribute);
  $id                    = $args['id'] ? $args['id'] : sanitize_title($attribute);
  $class                 = $args['class'];
  $show_option_none      = (bool)$args['show_option_none'];
  $show_option_none_text = $args['show_option_none'] ? $args['show_option_none'] : __('Choose an option', 'woocommerce');

  if(empty($options) && !empty($product) && !empty($attribute)) {
    $attributes = $product->get_variation_attributes();
    $options    = $attributes[$attribute];
  }

  $radios = '<div class="variation-radios">';

  if(!empty($options)) {
    if($product && taxonomy_exists($attribute)) {
      $terms = wc_get_product_terms($product->get_id(), $attribute, array(
        'fields' => 'all',
      ));

      foreach($terms as $term) {
        if(in_array($term->slug, $options, true)) {
          $radios .= '<input type="radio" name="'.esc_attr($name).'" value="'.esc_attr($term->slug).'" '.checked(sanitize_title($args['selected']), $term->slug, false).'><label for="'.esc_attr($term->slug).'">'.esc_html(apply_filters('woocommerce_variation_option_name', $term->name)).'</label>';
        }
      }
    } else {
      foreach($options as $option) {
        $checked    = sanitize_title($args['selected']) === $args['selected'] ? checked($args['selected'], sanitize_title($option), false) : checked($args['selected'], $option, false);
        $radios    .= '<input type="radio" name="'.esc_attr($name).'" value="'.esc_attr($option).'" id="'.sanitize_title($option).'" '.$checked.'><label for="'.sanitize_title($option).'">'.esc_html(apply_filters('woocommerce_variation_option_name', $option)).'</label>';
      }
    }
  }

  $radios .= '</div>';

  return $html.$radios;
}
add_filter('woocommerce_dropdown_variation_attribute_options_html', 'variation_radio_buttons', 20, 2);

そして、これが私が使ったJSです:

$(document).on('change', '.variation-radios input', function() {
  $('select[name="'+$(this).attr('name')+'"]').val($(this).val()).trigger('change');
});
6
cfx

プラグインなしでそれを行う方法はわかりませんが、その要件を削除して、 Woocommerce Radio Buttons プラグインを使用することをお勧めします。これはまさにあなたが望むことをします:

見積もり:

これはシンプルで軽量なプラグインで、インストールしてアクティブ化すると、Woocommerceのバリエーションがドロップダウンメニューからラジオボタンに変換されます。ドロップダウンメニューにアクセスしなくても、消費者がすべてのバリエーションを確認できるようにします。
(オプション)商品にバリエーションを使用していることを確認し、商品の編集ページで選択されるデフォルトのバリエーションを設定して、カートに追加ボタンを自動的に表示します。

2
Coder