@if(Session::has('msg'))
×
{!!Session::get('msg')!!}
@endif
Woocommerce
Use the following instructions to integrate woocommerce:
- Please enter your store URL.
- You'll be taken to a page within WooCommerce where you'll need to approve the permissions that Shipjunction needs to operate (i.e. import your orders, push order statuses, etc.). You must click "Approve".
- Once you approve the connection, you will be redirected to Channel page with your consumer key and consumer secret.
- Seller can update the order status s/he wants to pull in Shipjunction.
- Post that, please click on update Channel and test Credentials to create the channel in Shipjunction.
- Note:Enable REST API in your WooCommerce plugin.To enable REST API in Woocommerce, Navigate to Settings>Advanced>Legacy API. Click on Enable Rest API and save the settings
{{ Form::open(array('url' => 'store/create' ,'files'=>true)) }}
{!! Form::hidden('type', 'woo') !!}
{{ Form::close() }}
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('status-to-fetch', 'Order Status to fetch') !!}
{!! Form::text('status-to-fetch', null, ['class' => 'form-control rounded','title'=>'pending, processing, on-hold, completed, cancelled, refunded, failed , trash', 'placeholder'=>'e.g. pending, processing, on-hold, completed, cancelled, refunded, failed , trash']) !!}
@if ($errors->has('status-to-fetch'))
{{ $errors->first('status-to-fetch') }}
@endif
{!! Form::label('auto_sync', 'Auto Sync') !!}
{!! Form::label('Label', 'Label Setting') !!}
{!! Form::label('logo', 'Store Logo') !!}