Skip to content
This repository has been archived by the owner on Jun 7, 2019. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
ショップコインAppの変数を追加
  • Loading branch information
basehibino committed May 14, 2018
1 parent 9aa816a commit 034a37a
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.md
Expand Up @@ -196,6 +196,7 @@ BASE Templateはテンプレート変数を使って編集します。テンプ
| {block:AppsSearch} | 商品検索Appをインストールしている |
| {block:AppsReview} | レビューAppをインストールしている |
| {block:AppsSale} | セールAppをインストールしている |
| {block:AppsCoinFunding} | ショップコインAppをインストールしている |

### BASE

Expand All @@ -216,6 +217,7 @@ BASE Templateはテンプレート変数を使って編集します。テンプ
| {ContactPageURL} | *[必須]* contactページのURL |
| {PrivacyPageURL} | *[必須]* プライバシーポリシーページのURL |
| {LawPageURL} | *[必須]* 特商法ページのURL |
| {CoinFundingPageURL} | ショップコインページのURL |
| {LoadItemsPageURL} | 商品ロードページのURL。ページングのajaxで使用する。 `例) url: "{LoadItemsPageURL}" + next_page + "{LoadItemsPageURLParams}",` |
| {LoadItemsPageURLParams} | 商品ロードページのURLのパラメーター。ページングのajaxで使用する。 `例) url: "{LoadItemsPageURL}" + next_page + "{LoadItemsPageURLParams}",` |
| {IndexPageCategory} | トップページのカテゴリー。 `例) {block:IndexPageCategory}{IndexPageCategory}{/block:IndexPageCategory}` |
Expand Down Expand Up @@ -475,6 +477,7 @@ BASE Templateはテンプレート変数を使って編集します。テンプ
- [レビューApp](samples/review_app.md)
- [セールApp](samples/sale_app.md)
- [関連商品](samples/related_item.md)
- [ショップコインApp](samples/coin_funding.md)

## お問い合わせ

Expand Down
4 changes: 4 additions & 0 deletions check_list.md
Expand Up @@ -63,6 +63,10 @@

- セール価格と%オフの表示

### ショップコインApp

- ショップコインページへのリンク

## デザインオプションの独自設定のチェック

- 独自設定が正常に作動するか
Expand Down
28 changes: 28 additions & 0 deletions samples/coin_funding.md
@@ -0,0 +1,28 @@
# ショップコインAppの対応

ショップコインページへのリンクを表示します。

## 関連するテンプレート変数

### if Apps

| 変数 | 説明 |
|-----|-----|
| {block:AppsCoinFunding} | ショップコインAppをインストールしている |

### ページ

| 変数 | 説明 |
|-----|-----|
| {CoinFundingPageURL} | ショップコインページのURL |

## ショップコインページへのリンクを表示

*例)*

```
{block:AppsCoinFunding}
<div><a href="{CoinFundingPageURL}">coin</a></div>
{/block:AppsCoinFunding}
```

0 comments on commit 034a37a

Please sign in to comment.