Woocommerce产品内同一类别的产品下拉列表简短描述

时间:2018-08-13 13:30:17

标签: wordpress woocommerce dropdown product custom-taxonomy

在Woocommerce中,我想在产品简短描述中添加一个下拉列表,以显示所有具有相同类别的产品。如果可以转到所选产品的产品页面,那就更好了。

我没有看到任何线程可以满足我的要求。

任何帮助将不胜感激。

2 个答案:

答案 0 :(得分:1)

已更新

以下内容将创建一个自定义的简码,您可以在产品的简短说明中(甚至在产品说明中使用),并显示与当前产品相同的产品类别的下拉列表。

代码:

add_shortcode( 'products_dropdown', 'wc_products_from_cat_dropdown' );
function wc_products_from_cat_dropdown() {
    if( ! is_product() ) return;

    ob_start();

    $query = new WP_Query( array(
        'post_type'      => 'product',
        'post_status'    => 'publish',
        'posts_per_page' => '-1',
        'post__not_in'     => array( get_the_id() ),
        'tax_query' => array( array(
                'taxonomy' => 'product_cat',
                'field'    => 'ids',
                'terms'    => wp_get_post_terms( get_the_id(), 'product_cat', array( 'fields' => 'ids' ) ) ,
        ) ),
    ) );

    if ( $query->have_posts() ) :

    echo '<div class="products-dropdown"><select name="products-select" id="products-select">
    <option value="">'.__('Choose a related product').'</option>';

    while ( $query->have_posts() ) : $query->the_post();

    echo '<option value="'.get_permalink().'">'.get_the_title().'</option>';

    endwhile;

    echo '</select> <button type="button" style="padding:2px 10px; margin-left:10px;">'._("Go").'</button></div>';

    wp_reset_postdata();

    endif;

    ?>
    <script type='text/javascript'>
        jQuery(function($){
            var a = '.products-dropdown', b = a+' button', c = a+' select', s = '';
            $(c).change(function(){
                s = $(this).val();
                console.log(s); // just for testing (to be removed)
            });
             $(b).click(function(){
                if( s != '' ) location.href = s;
            });

        });
    </script>
    <?php

    return ob_get_clean();
}

代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试和工作。


用法

只需在产品简短说明中粘贴以下简短代码:

[products_dropdown]

enter image description here

enter image description here

答案 1 :(得分:0)

将其添加到主题的“ functions.php”中,将显示当前产品类别中的所有产品。

function add_products_short_description() {
    $product_cats = wp_get_post_terms( get_the_ID(), 'product_cat' );
    if ( $product_cats ) {
        $single_cat = array_shift( $product_cats );

        $product_args = array( 'post_type' => 'product', 'posts_per_page' => '-1', 'product_cat' => $single_cat->name );
        $products = new WP_Query( $product_args );
        if ( $products->have_posts() ) :  echo '<ul>';
            while ( $products->have_posts() ) : $products->the_post(); global $product; 
                echo '<li><a href="'.get_permalink( $products->ID ).'">'.get_the_title($products->ID).'</a></li>';
            endwhile;
            echo '</ul>';
        endif;
    }
}
add_action( 'woocommerce_single_product_summary', 'add_products_short_description', 15 );