「STAFF START連携」により、実店舗の販売スタッフが投稿するコーディネートの提案が可能になります。 身長別に検索させて、お気に入りのスタッフを見つけてもらおう。

null

はじめる前に

事前に以下の確認をお願いします。

  • バニッシュスタンダード社のコーディネート投稿サービスSTAFF STARTとの連携が必要となります。ご利用にあたり注意事項がございますので、下記サポートサイトをご一読ください。

利用の手順

接客シナリオのインストール

  • ストアから接客シナリオのインストールを行ってください。

null

接客サービスの設定

アクション

  • 最小化「バナー画像」を必要に応じ設定してください。※必要ない場合は、「最小化を使用」のチェックボックスを外してください。

null

  • コンテンツ(ステート2)の見出しや画像等を必要に応じ設定してください。
    null

  • 身長の選択肢及び、選択時に発火させるイベント(identifyイベント)はカスタマイズ>scriptで直接指定します。

    • コンテンツの選択肢
      null

    • 設定方法(カスタマイズ>Script)

      • label : テキスト表示する選択肢の指定
      • url : 選択肢のリンク先
      • minH : ユーザー情報(identifyイベント)のmin_heightの値
      • maxH : ユーザー情報(identifyイベント)のmax_heightの値
var items = [
        {
            label : '指定しない',
            url   : '/stylings/?action=list&page=1',
            minH  : '',
            maxH  : ''
        }, {
            label : '~145cm',
            url   : '/stylings/?action=list&page=1&height=145',
            minH  : '',
            maxH  : '145'
        }, {
            label : '145cm~150cm',
            url   : '/stylings/?action=list&page=1&height=145',
            minH  : '145',
            maxH  : '150'
        }, {
            label : '150cm~155cm',
            url   : '/stylings/?action=list&page=1&height=150',
            minH  : '150',
            maxH  : '155'
        }, {
            label : '155cm~160cm',
            url   : '/stylings/?action=list&page=1&height=155',
            minH  : '155',
            maxH  : '160'
        }, {
            label : '160cm~165cm',
            url   : '/stylings/?action=list&page=1&height=160',
            minH  : '160',
            maxH  : '165'
        }, {
            label : '165cm~170cm',
            url   : '/stylings/?action=list&page=1&height=165',
            minH  : '165',
            maxH  : '170'
        }, {
            label : '170cm~',
            url   : '/stylings/?action=list&page=1&height=170',
            minH  : '170',
            maxH  : ''
        }
    ];

その他、対象ユーザーや対象イベントを設定してご利用ください。

選択時に発火するユーザー情報(identifyイベント)

ユーザーがアクションの選択をした際に、上記scriptに指定した値がユーザー情報(identifyイベント)に付与されます。

例:165cm~170cm を選択した場合
null