{{-- @todo Rewrite the JS for choosing event bg images and colours. --}} @extends('Shared.Layouts.Master') @section('title') @parent Customize Event @stop @section('top_nav') @include('ManageEvent.Partials.TopNav') @stop @section('menu') @include('ManageEvent.Partials.Sidebar') @stop @section('page_title') Customize Event @stop @section('page_header') @stop @section('head') {!!HTML::script('https://maps.googleapis.com/maps/api/js?sensor=false&libraries=places')!!} {!! HTML::script('vendor/geocomplete/jquery.geocomplete.min.js')!!} @stop @section('content')
@include('ManageEvent.Partials.EditEventForm', ['event'=>$event, 'organisers'=>\Auth::user()->account->organisers])

Affiliate Tracking

Keeping track of who is generating sales for your event is extremely easy. Simply create a referral link using the box below and share the link with your affiliates / event promoters.

@if($event->affiliates->count())
@foreach($event->affiliates as $affiliate) @endforeach
Affiliate Name Visits Generated Ticket Sales Generated Sales Volume Generated Last Referral
{{{$affiliate->name}}} {{$affiliate->visits}} {{$affiliate->tickets_sold}} {{money($affiliate->sales_volume, $event->currency->code)}} {{{ $affiliate->updated_at->format('M dS H:i A') }}}
@else
No affiliate referrals yet.
@endif
The following short codes are available for use:
Display the event's public URL: [event_url]
Display the organiser's name: [organiser_name]
Display the event title: [event_title]
Display the event description: [event_description]
Display the event start date & time: [event_start_date]
Display the event end date & time: [event_end_date]
{!! Form::model($event, array('url' => route('postEditEventSocial', ['event_id' => $event->id]), 'class' => 'ajax ')) !!}

Social Settings

{!! Form::label('social_share_text', 'Social Share Text', array('class'=>'control-label ')) !!} {{!! Form::textarea('social_share_text', $event->social_share_text, [ 'class' => 'form-control', 'rows' => 4 ]) !!}}
This is the text which will be share by default when a user shares your event on social networks

{!!Form::close()!!}
{!! Form::open(array('url' => route('postEditEventDesign', ['event_id' => $event->id]), 'files'=> true, 'class' => 'ajax customizeForm')) !!} {!!Form::hidden('bg_type', $event->bg_type)!!}

Background Options

@foreach($available_bg_images_thumbs as $bg_image) bg_image_path)}}' class="img-thumbnail ma5 bgImage {{ ($bg_image === str_replace('/thumbs', '', $event->bg_image_path) ? 'selected' : '') }}" style="width: 120px;" src='{{$bg_image}}' data-src="{{str_replace('/thumbs', '', substr($bg_image,1))}}"/> @endforeach {!!Form::hidden('bg_image_path_custom', ($event->bg_type == 'image') ? $event->bg_image_path : '')!!}
{{-- ## Ability to have a custom background image is disbaled for now.
{!! Form::styledFile('bg_image_path') !!}
@if($event->bg_type == 'custom_image') @endif
--}}
{!! Form::close() !!}

Event Page Preview

{!! Form::model($event, array('url' => route('postEditEventFees', ['event_id' => $event->id]), 'class' => 'ajax')) !!}

Organiser Fees

These are optional fees you can include in the cost of each ticket. This charge will appear on buyer's invoices as 'BOOKING FEES'.
{!! Form::label('organiser_fee_percentage', 'Service Fee Percentage', array('class'=>'control-label required')) !!} {!! Form::text('organiser_fee_percentage', $event->organiser_fee_percentage, [ 'class' => 'form-control', 'placeholder' => '0' ]) !!}
e.g: enter 3.5 for 3.5%
{!! Form::label('organiser_fee_fixed', 'Service Fee Fixed Price', array('class'=>'control-label required')) !!} {!! Form::text('organiser_fee_fixed', null, [ 'class' => 'form-control', 'placeholder' => '0.00' ]) !!}
e.g: enter 1.25 for {{$event->currency_symbol}}1.25
{!!Form::close()!!}

Social Settings

{!! Form::label('event_page_show_map', 'Show map on event page?', array('id' => 'customcheckbox', 'class'=>'control-label')) !!} {!! Form::checkbox('event_page_show_map', 1, false) !!}
{!! Form::label('event_page_show_social_share', 'Show social share buttons?', array('class'=>'control-label')) !!} {!! Form::checkbox('event_page_show_social_share', 1, false) !!}
{!! Form::model($event, array('url' => route('postEditEventOrderPage', ['event_id' => $event->id]), 'class' => 'ajax ')) !!}

Order Page Settings

If checked, the buyer will be asked for details of each attendee; as opposed to just himself.
{!! Form::label('pre_order_display_message', 'Message to display to attendees before they complete their order.', array('class'=>'control-label ')) !!} {!! Form::textarea('pre_order_display_message', $event->pre_order_display_message, [ 'class' => 'form-control', 'rows' => 4 ]) !!}
This message will be displayed to attendees immediately before they finalize their order.
{!! Form::label('post_order_display_message', 'Message to display to attendees before after they have completed their order.', array('class'=>'control-label ')) !!} {!! Form::textarea('post_order_display_message', $event->post_order_display_message, [ 'class' => 'form-control', 'rows' => 4 ]) !!}
This message will be displayed to attendees once they have successfully completed the checkout process.
{!!Form::close()!!}

HTML Embed Code

Instructions

Simply copy and paste the HTML provided onto your website where you would like the widget to appear and the widget will appear.

Feel free to contact us if you require any further information regarding using the HTML embed code.

Embed Preview
{!! $event->embed_html_code !!}
@stop