doublestar2014 2017-11-05 12:01
浏览 48
已采纳

WooCommerce:显示循环内的产品变化

How can I display the product variations for each product within a loop such as the one on the Shop page? Is there any function that I can add to the content-product template that retrieves the list of variations and displays them?

  • 写回答

2条回答 默认 最新

  • douxin0251 2017-11-05 12:37
    关注

    Best way to do this is alter the loop. Something like that will help:

       function filter_wc_query($query_args){
          if(is_archive()){ //here you can use any conditional function to show variations on 
            $query_args[] = ['post_parent'=> '*'];
          }
          return $query_args;
       }
       add_filter('woocommerce_get_query_vars','filter_wc_query');
    

    Or if you want to this on view level: https://gist.github.com/lukecav/2470d9fe6337e13da4faae2f6d5fe15f

    In this solution image you can grab by standard WP function:

    get_post_thumbnail($product->ID,'shop_list');
    

    But remeber that variation link will bring user to parent product and force him to select variation once more.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥20 蓝牙耳机怎么查看日志
  • ¥15 R语言 拟时序分析降维图如何减少分支
  • ¥15 Fluent齿轮搅油
  • ¥15 八爪鱼爬数据为什么自己停了
  • ¥15 交替优化波束形成和ris反射角使保密速率最大化
  • ¥15 树莓派与pix飞控通信
  • ¥15 自动转发微信群信息到另外一个微信群
  • ¥15 outlook无法配置成功
  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统