WP Bakery woocommerce показать товарную подкатегорию (БЕСПЛАТНО) - PullRequest
0 голосов
/ 03 апреля 2020

Сравнение критериев восточного и среднего бизнеса rnet, правильное решение для всех стран.

Проблема эра проблем с большинством клиентов Mostrar las subcategorías dentro de la categoryor main mediante un шорткод Solo el nombre de las subcategorias, sin miniatura ni cantidad de productos.


Здравствуйте, друзья.

Я хотел бы поделиться этой работой с вами, так как не нашел решения по rnet, поэтому мне пришлось построить свою.

Проблема заключалась в том, что клиент хотел показать подкатегории в основной категории, используя шорткод. Только название подкатегории, без миниатюры или количества товаров.

1 Ответ

0 голосов
/ 04 апреля 2020

Asique cree un archivo llamado "products-subcategory. php" en plugins / дополнения-рамки / vc / шорткоды /. Все включено в плагин / безель-аддоны / vc / шорткоды. php Внедрение новых приложений https://themeforest.net/item/bezel-creative-multipurpose-wordpress-theme/20014332 Перспективы создания приложений для использования Visual Composer o WP Bakery .


Итак, создайте файл с именем "products-subcategory. php" в плагинах / bezel-addons / vc / shortcodes /. И я включил его в plugins / bezel-addons / vc / shortcodes. php В моем случае моим шаблоном является Bezzel https://themeforest.net/item/bezel-creative-multipurpose-wordpress-theme/20014332 Но я думаю, что вы можете реализовать его в любом, использующем Visual Composer или WP Bakery.


продукты-подкатегории. php.

<?php
/* Product subcategory  */
vc_map(
  array(
    'name' => 'Product subcategory',
    'base' => 'bezel_products_subcategory',
    'icon' => 'ti-align-left',
    'description' => 'Product subcategories',
    'category' => __( 'Bezel', 'bezel-addons'),
    'params' => array(
      array(
        'type' => 'dropdown',
        'param_name' => 'orderby',
        'heading' => 'Order BY',
        'value' => array(
          'Name' => 'name',
          'ID' => 'term_id'
        ),
      ),
    array(
        'type' => 'dropdown',
        'param_name' => 'order',
        'heading' => 'Order',
        'value' => array(
            'Upward' => 'ASC',
            'Falling' => 'DESC'
        ),
      ),
        array(
        'type' => 'dropdown',
        'param_name' => 'empty',
        'heading' => 'Show empty subcategories',
        'value' => array(
            'Yes' => 0,
            'No' => 1
        ),
      )

    )
  )
);

add_shortcode( 'bezel_products_subcategory', 'bezel_products_subcategory' );

function bezel_products_subcategory( $atts ) {
 global $wp_query;

    extract( shortcode_atts( array(
        'taxonomy' => 'product_cat',
        'orderby' => 'name',
        'order' => 'ASC',
        'empty' => 0,
        'hierarchical' => 1
  ), $atts ) );

    $cat = get_queried_object();        
    $category_id = ($cat->parent) ? $cat->parent : $cat->term_id;
    $args2 = array('taxonomy' => $taxonomy,'parent' => $category_id,'hierarchical' => $hierarchical, 'orderby' => $orderby, 'order' => $order,'hide_empty' => $empty);
    $categories = get_categories( $args2 );
    $categories_cnt = count(get_categories( $args2 ));

    $selcat[$cat->term_id] = 'current-cat';

    if ($categories_cnt != 0){

        $sub_cats = get_categories( $args2 );
        if($sub_cats) {
            $output = '<div class="vc_wp_categories wpb_content_element">';
            $output .= '<div class="widget widget_categories">';
            $output .= '<ul>';
            foreach($sub_cats as $sub_category) {
                $output .= '<li class="cat-item cat-item-'.$sub_category->term_id.' '.$selcat[$sub_category->term_id].'"><a href="'.get_category_link($sub_category->term_id).'">'.$sub_category->cat_name.'</a></li>';
            }
            $output .= '</ul>';
            $output .= '</div>';
            $output .= '</div>';
        }
    }

  return $output;
}
?>

Espero que le sirva a alguien.

Надеюсь, это кому-нибудь поможет.

...