Отобразить переменные атрибуты продукта и термины в архивах Woocommerce - PullRequest
2 голосов
/ 02 мая 2019

Я пытаюсь составить список атрибутов и терминов на странице магазина, используя хук woocommerce_shop_loop_item_title.Цель состоит в том, чтобы получить атрибут (ы) и термин (ы) для продукта, а затем отобразить его, как показано в этом примере:

Цвет: красный, синий, зеленый

Размер: маленький,Средний, Большой

Размеры: 90 * 90, 100 * 100 и 120 * 120

, но без пробелов между строками.

Он должен "извлекать" все атрибутыиспользуется с продуктом и терминами атрибутов.

Я пробовал это, но получил фатальную ошибку.

add_action( 'woocommerce_shop_loop_item_title', 'variable_att_and_terms_on_loop');
function variable_att_and_terms_on_loop() {

    foreach( $product->get_variation_attributes() as $taxonomy => $terms_slug ) {

    $taxonomy_label = wc_attribute_label( $taxonomy, $product );

    foreach($terms_slug as $term) {
        $term_name  = get_term_by('slug', $term, $taxonomy)->name;
        $attributes_and_terms_names[$taxonomy_label][$term] = $term_name;
    }
}
foreach ( $attributes_and_terms_names as $attribute_name => $terms_name ) {
    $terms_string = implode( ', ', $terms_name );
    echo '<p>' . $attribute_name . ': ' . $terms_string . '</p>';
}
}

Я также пробовал это:

add_action('woocommerce_shop_loop_item_title','add_attribute', 5);
function add_attribute() {
    global $product;

    $product_attributes = array( 'pa_weight', 'pa_quantity', 'pa_length', 'pa_color' );
    $attr_output = array();

    foreach( $product_attributes as $taxonomy ){
        if( taxonomy_exists($taxonomy) ){
            $label_name = get_taxonomy( $taxonomy )->labels->singular_name;
            $value = $product->get_attribute('pa_weight');

            if( ! empty($value) ){
                $attr_output[] = '<span class="'.$taxonomy.'">'.$label_name.': '.$value.'</span>';
            }
        }
    }
    echo '<div class="product-attributes">'.implode( '<br>', $attr_output ).'</div>';
}

без какого-либо результата.После того, как я попробовал новый результат ниже от LoicTheAztec, вот что я получаю: enter image description here

1 Ответ

1 голос
/ 02 мая 2019

В вашем первом фрагменте кода есть несколько ошибок:

  • переменная $product не определена
  • Функция должна быть ограничена только переменными продуктами
  • переменная $attributes_and_terms_names не была инициализирована…

Вот пересмотренный код (без пробелов между строками) :

add_action( 'woocommerce_shop_loop_item_title', 'variable_att_and_terms_on_loop');
function variable_att_and_terms_on_loop() {
    global $product;

    if( ! $product->is_type('variable') ) return; // Only for variable products

    $variation_attributes = $product->get_variation_attributes();

    if( sizeof($variation_attributes ) == 0 ) return; // Exit if empty

    $attributes = array(); // Initializing

    foreach( $product->get_variation_attributes() as $taxonomy => $terms_slug ) {
        $taxonomy_label = wc_attribute_label( $taxonomy, $product );

        $terms_name = array();

        foreach($terms_slug as $term) {
            $terms_name[] = get_term_by('slug', $term, $taxonomy)->name;
        }
        $attributes[] = $taxonomy_label . ':&nbsp;' . implode( ', ', $terms_name );
    }

    echo '<div class="product-attributes">';
    echo '<span>' . implode('</span><br><span>', $attributes) . '</span>';
    echo '</div>';
}

Кодидет в файл function.php вашей активной дочерней темы (active theme).Проверено и работает.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...