> For the complete documentation index, see [llms.txt](https://help.makeshop.co.kr/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.makeshop.co.kr/faq/mobile/design/undefined-7.md).

# 쇼핑몰에 베스트 상품을 노출할 수 있나요?

<mark style="color:blue;">상품 프로모션 기능설정을 통하여 베스트 상품 50 노출이 가능해요.</mark>

***

`디자인` > `디자인 관련 기능 설정` > `상품 프로모션 기능 설정` \
위 메뉴에서는 베스트 상품 50 / 베스트 리뷰 50 / 베스트 분류를 설정할 수 있어요.\
설정된 상품은 아래 경로에서 확인하실 수 있어요.

> 베스트 상품 50 /shop/bestseller.html?xcode=BEST> \
> 베스트 리뷰 50 /shop/bestseller.html?xcode=REVIEW> \
> 베스트 분류 /shop/bestcodeseller.html?xcode=BEST

이런 별도 페이지뿐만 아니라 메인화면에도 베스트 상품을 노출할 수 있어요!\
디자인 편집화면의 `중앙디자인` > `메인` > `메인` 항목에서\
메인 신규상품은 아래와 같은 형태로 보여져요.

```
<!--/loop_new_product(8)/-->
<dl class="item-list">
<dt class="thumb"><a href="<!--/new_product@link/-->"><img src="<!--/new_product@image_l/-->" alt="<!--/new_product@name/-->" /></a></dt>
~~~~~~중략~~~~~~
<li class="prd-subname"><!--/new_product@subname/--></li>
</ul>
</dd>
</dl>
<!--/if_step(4)/-->
</div><div class="item-cont">
<!--/end_if/-->
<!--/end_loop/-->
```

위 소스에서 아래 예시와 같이 <mark style="color:blue;">new\_product</mark> 를 모두 <mark style="color:blue;">best\_product</mark> 로 변경하면 베스트 50 상품이 노출돼요!

```
<!--/loop_best_product(8)/-->
<dl class="item-list">
<dt class="thumb"><a href="<!--/best_product@link/-->"><img src="<!--/best_product@image_l/-->" alt="<!--/best_product@name/-->" /></a></dt>
~~~~~~중략~~~~~~
<li class="prd-subname"><!--/best_product@subname/--></li>
</ul>
</dd>
</dl>
<!--/if_step(4)/-->
</div><div class="item-cont">
<!--/end_if/-->
<!--/end_loop/-->
```
