Shopify Cart
Use the following instructions to integrate Shopify:
- Login to Shopify Admin Panel.
- Go to Apps.
- Click on Private Apps Button.
- Click on Create a Private App.
- Enter Title name under the Description tab and click on Save.
- Click on Title, as you entered earlier.
- Here you will find Shopify API Key, password, Shared Secret.
- Copy the identifiers and integrate the channel.
General Information
Follow these instructions on how to add Channel
{!! Form::label('channel-name', 'Channel Name') !!}
{!! Form::text('channel-name', null, ['class' => 'form-control rounded']) !!}
@if ($errors->has('channel-name'))
{{ $errors->first('channel-name') }}
@endif
Seller Panel
{!! Form::label('store-url', 'Store Url') !!}
{!! Form::text('store-url', null, ['class' => 'form-control rounded', 'placeholder'=>'e.g. http://demo02.myshopify.com']) !!}
@if ($errors->has('store-url'))
{{ $errors->first('store-url') }}
@endif
{!! Form::label('api-key', 'API Key') !!}
{!! Form::text('api-key', null, ['class' => 'form-control rounded', 'placeholder'=>'e.g. XXXXXXXXXXXXX']) !!}
@if ($errors->has('api-key'))
{{ $errors->first('api-key') }}
@endif
{!! Form::label('api-password', 'API Password') !!}
{!! Form::text('api-password', null, ['class' => 'form-control rounded', 'placeholder'=>'e.g. XXXXXXXXXXXXX']) !!}
@if ($errors->has('api-password'))
{{ $errors->first('api-password') }}
@endif
{!! Form::label('shared-secret', 'Shared secret') !!}
{!! Form::text('shared-secret', null, ['class' => 'form-control rounded', 'placeholder'=>'e.g. XXXXXXXXXXXXX']) !!}
@if ($errors->has('shared-secret'))
{{ $errors->first('shared-secret') }}
@endif
{!! Form::label('status-to-fetch', 'Order Status to fetch') !!}
{!! Form::text('status-to-fetch', null, ['class' => 'form-control rounded', 'placeholder'=>'e.g. shipped, partial, unshipped, any']) !!}
@if ($errors->has('status-to-fetch'))
{{ $errors->first('status-to-fetch') }}
@endif
{!! Form::label('auto_sync', 'Auto Sync') !!}
{!! Form::label('inventory_management:', 'Inventory management:') !!}
{!! Form::label('product_sync', 'Product sync') !!}
{!! Form::label('Label', 'Label Setting') !!}
{!! Form::label('logo', 'Store Logo') !!}