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

<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/-->
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://help.makeshop.co.kr/faq/mobile/design/undefined-7.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
