Показать подкатегорию WooCommerce продуктов с названиями - PullRequest
0 голосов
/ 30 мая 2018

Я изменил отображение продуктов woocommerce для отображения в виде таблицы в цикле магазина, а не элементов с колонками.Когда я иду на страницу «магазин», он отображает все продукты в списке, хотя.У меня проблемы с отображением товаров организованным способом, разделяя их на соответствующие подкатегории.Заранее спасибо!

Ответы [ 2 ]

0 голосов
/ 31 мая 2018
$args = array(
    'taxonomy' => 'product_cat',
    'hide_empty' => false,
    'parent'   => 0
);

$product_cat = get_terms( $args );

foreach ($product_cat as $parent_product_cat)
{
    if ($parent_product_cat->name != 'Company'){
    ?>

    <ul>
        <li><h2><a href='<?= get_term_link($parent_product_cat->term_id) ?>'><?= $parent_product_cat->name ?></a></h2>
            <hr align='left' width='50%'>
            <ul>

                <?php
                $child_args = array(
                    'taxonomy' => 'product_cat',
                    'hide_empty' => false,
                    'parent'   => $parent_product_cat->term_id
                );

                $child_product_cats = get_terms( $child_args );
                foreach ($child_product_cats as $child_product_cat)
                { ?>
                    <li style='padding-left: 2%;'>
                        <h3><a href='<?= get_term_link($child_product_cat->term_id) ?>'><?= $child_product_cat->name?></a></h3>
                    </li>
                    <div style='margin-left: -8%;'>
                        <?php
                        echo do_shortcode("[products category='$child_product_cat->term_id']");
                        ?>
                    </div>
                    <?php
                }
                ?>

            </ul>
        </li>
    </ul>
0 голосов
/ 30 мая 2018
/**
* @snippet       WooCommerce Show Product Subcategories
* @compatible    WooCommerce 3.4
*/

add_action( 
'woocommerce_after_shop_loop_item_title','bbloomer_show_all_subcats', 2 );

function bbloomer_show_all_subcats() {

// Create array with product categories that belong to current product

$cats = get_the_terms( $post->ID, 'product_cat' );

if ( ! empty( $cats ) ) {

// Loop through the product categories...

    foreach ( $cats as $term ) {

                    // If parent cat ID = 116 echo subcat name...
        if( $term->parent == 116 ) { echo $term->name; }

    }

    }

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