2016-11-10 3 views
0

BigCommerce 스텐실날짜 부가으로 분류되어 각 toptier 카테고리에서`최고 사 제품을 얻을 (bigcommerce하는)`

나는 완전히 아래의 조각을 날개. 하지만 올바른 방법으로하는 것에 대한 힌트가 필요합니다. 기본적으로 내가, 내가 사용하는 것이 구문이 다음은 top 4 products from each toptier category sorted by date-added (to bigcommerce)

{{#each categories}} 
     {{#each products sort:date-added limit:4}} 
     {{name}} 
     {{/each}} 
    {{/each}} 

답변

0

추가 할 수 있습니다 얻을 필요가있다. 그러나 그러한 방법이 아직 존재하지 않는다는 어떠한 증거도 없습니다.

home.html을

{{> components/product/all-products grid=products.all default_image=theme_settings.default_image}}' 

사용자 정의 파일에있는 모든 products.html.

모든 products.html

{{#if grid}} 
    <section class="products-new {{theme_settings.background-for-new-products}}"> 
    <div class="layout-container"> 
     <h1 class="section-title">{{lang 'product.product_blocks.new_products.heading'}}</h1> 

     <div class="product-grid"> 
     {{#each grid}} 
      {{> components/product/product-item this show_quickshop=true show_rating=true default_image=../default_image}} 
     {{/each}} 
     </div> 
    </div> 
    </section> 
{{/if}}