Tag: events calendar

  • Kwik Experience Calendar (Calendars)

    Kwik Event Calendar

    Is an flexible and easy to integrate jQuery plugin to display events on your website in calendar that syncs events from either a .json file or your database.

    • Responsive layout
    • 3 views available either ‘on site’ or as ‘full screen’
      1. Month
      2. Agenda
      3. List (month compact)
    • Promote featured event/s
    • Enable event booking screen
    • Display event location – Google Maps API key required
    • Customisable colours
    • Calendar available in 107 languages
    • Free support
    • Ongoing Free updates for registered users (free registration) upon release
    • Twitter Bootstrap (3+) compatible

    Kwik Event Calendar – Support

    We offer our customers ongoing ‘lifetime’ full product support via our ticketing help desk.

    Our aim is to reply to all tickets within 1 working day.

    Customers can use the submit the support form on our website or simply email: kwikbitz@estreamdesk.com

    Kwik Event Calendar – Integration

    Kwik Event Calendar is based around Twitter Bootstrap the popular HTML, CSS, and JS framework. It may be silly to point out but Kwik Event Calendar is a jQuery plugin so jQuery is a requirement :)

    OK so how do you get started?

    After downloading Kwik Event Calendar (here) upload the files to your host server. Logically stylesheet CSS files go into your css folder, and the javascript files into your js folder. The Kwik Event Calendar download is structured like this:

    • kwik_event_calendar_v1_0_0
      • CSS
        • bootstrap.min.css
        • font-awesome.min.css
        • kwik-events-calendar-style.css
      • Fonts
        • FontAwesome.otf
        • fontawesome-webfont.eot
        • fontawesome-webfont.svg
        • fontawesome-webfont.ttf
        • fontawesome-webfont.woff
        • fontawesome-webfont.woff2
      • JS
        • bootstrap.min.js
        • jquery.min.js
        • kwik-events-calendar.js
        • moment-with-locales.js
        • tether.min.js
      • example.html

    Copy-paste the stylesheet <link>’s into the <head> of your web page. Make sure they are in the following order:

    • <link rel=”stylesheet” type=”text/css” href=”path_to/css/bootstrap.min.css”>
    • <link rel=”stylesheet” type=”text/css” href=”path_to/css/font-awesome.min.css”>
    • <link rel=”stylesheet” type=”text/css” href=”path_to/css/any other style sheets you currently use”>
    • <link rel=”stylesheet” type=”text/css” href=”path_to/css/kwik-events-calendar-style.css”>

    Add the JavaScript pages near the end of your pages, right before the closing </body> tag. Make sure they are in the following order:

    • <script type=”text/javascript” src=”path_to/js/jquery.min.js”></script>
    • <script type=”text/javascript” src=”path_to/js/tether.min.js”></script>
    • <script type=”text/javascript” src=”path_to/js/bootstrap.min.js”></script>
    • <script type=”text/javascript” src=”path_to/js/>moment-with-locales.js”></script>
    • <script type=”text/javascript” src=”path_to/js/any other JavaScript pages/jQuery plugins you currently use”></script>
    • <script type=”text/javascript” src=”path_to/js/kwik-events-calendar.js”></script>
    • <script type=”text/javascript” src=”path_to/js/your site javascript page.js”></script>

    And that’s it all you need to do now is create an HTML element on your page to display your Kwik Event Calendar – example:

    <div id=”my_kwik_event_calendar_HTML_element”></div>

    You add the Kwik Event Calendar plugin to the appropriate HTML element just by adding this code:

    jQuery(’#my_kwik_event_calendar_HTML_element’).kwikEventsCalendar();

    Alter the behaviour and appearance of your Kwik Event Calendar just by adding options to the code:

    jQuery(’#my_kwik_event_calendar_HTML_element’).kwikEventsCalendar(options)

    Easilly syncronise events to Kwik Event Calendar from either a .json file or the database of your choice via Ajax by using the events option:

    jQuery(’#my_kwik_event_calendar_HTML_element’).kwikEventsCalendar( eventsList: // an array of events // )

    Example syntax to obtain data from a php page query

    jQuery.getJSON(“http://your url/script_page_name.php?callback=?”,function(data)

    var events = data

    )

    Example php page query (using PDO & assuming the eventdate field is a ‘standard’ Unix Timestamp )

    if(isset($_GET[‘callback’] ))

    $stmt = $dbh->prepare(“SELECT id_field AS eventid, as UNIX_TIMESTAMP_MS(eventdate_field) AS eventdate,title_field AS title,image_field AS image,text_field AS text,class_field as Class,location AS location,bookable AS bookable FROM events_list_table”);

    $stmt->execute();

    $row = $stmt->fetchAll(PDO::FETCH_ASSOC);

    $data = json_encode($row);

    echo $_GET[‘callback’] . ‘(’ . $data . ‘)’;

    Please note – the use of jsonP callback – e.g. callback=? This is included as sometimes Chrome depending on version and your host/database connection does not like getJSON without.

    Example syntax to obtain data from a .json file

    events:[ false’,

    ‘bookable’:’true ]

    You can also make your Kwik Event Calendar interactive by adding actions to Kwik Event Calendar via Callbacks:

    jQuery(’#my_kwik_event_calendar_HTML_element’).kwikEventsCalendar(

    callback:function() // action in here //

    )

    Kwik Event Calendar – Options

    Note: Options listed on this page are alphabetical.

    The correct syntax (example):

    jQuery(‘yourselector’).kwikEventsCalendar(

    defaultView:’month’,

    startDate:’1360013296123’,

    headerBackground:’#19B3E9’
    list

    data.eventcost, data.eventdate, data.title

    This data could be passed to a form for processing – may be a modal the choice is yours.

    eventBookingText

    Type:String

    Default: Book now

    Options: Any text

    Description: If eventBookingCallBack enabled the text for the ‘booking button’

    featuredEvent

    Type: Object

    Default: undefined

    Options:
    The featuredEvent object format

    ‘eventid’:’the event id’,

    ‘eventdate’:’Unix Millisecond Timestamp for the event start time and date’,

    ‘title’:’The event title’,

    ‘image’:’An event image (.jpg,.jpeg,.gif,.png)’,

    ‘text’:’The event description’,

    ‘eventcost’:’12.25’

    Description: Displays the featured event in the Calendar header

    featuredEventCallback

    Type: Function

    Default: false

    Options: function

    data.eventcost, data.eventdate, data.title

    This data could be passed to a form for processing – may be a modal the choice is yours.

    eventCurrency

    Type: String

    Default: €

    Options: Any valid currency in HTML format;

    Descriptions: Sets the default currency for chargeable events

    eventsList

    Type: Function

    Default: undefined

    Options: function


    Description: Passes a valid events list to the calendar.

    Valid field dates as on object for the eventsList:

    ‘eventid’:’the event id’,

    ‘eventdate’:’Unix Millisecond Timestamp for the event start time and date’,

    ‘title’:’The event title’,

    ‘image’:’An event image (.jpg,.jpeg,.gif,.png)’,

    ‘text’:’The event description’,

    ‘class’:’A CSS ‘colour’ selector to to heightlight the event on the calendar’

    ‘location’:’false ,

    ‘bookable’:’false false

    Description: Sets a minimum calendar datee.g. -1 = 1 previous month from the month set in startDate option
    false = no minimum month

    monthRowHeight

    Type: Number

    Default: 100

    Options: Any numberic value

    Descriptions: Sets the row height in pixels month view

    startDate

    Type: Number

    Default: 0

    Options: 0, a positive or negative whole number

    Description: e.g.0 = current month, -1 = last month, 1 = next month

    Text, buttons and icons

    backText

    Type: String

    Default: <i class=”fa fa-chevron-left”></i>

    Options: Any icon/text

    Description: Sets either the icon or text for the back button on the event single view page

    buttonClass

    Type: String

    Default: .btn.btn-sm

    Options: Any valid CSS class

    Description: Sets the default css class for buttons

    nextText

    Type: String

    Default: <i class=”fa fa-chevron-left”></i>

    Options: Any icon/text

    Description: Sets either the icon or text for the calendar next date button

    prevText

    Type: String

    Default: <i class=”fa fa-chevron-left”></i>

    Options: Any icon/text

    Description: Sets either the icon or text for the calendar previous date button

    Colours

    blockBackground

    Type: String

    Default: #FFFFFF

    Options: Any valid HEX colour

    Description: Sets the colour of the calendar body

    blockText

    Type: String

    Default: false;

    Options: Any valid HEX colour

  • Tiva Situations Calendar For wordpress (Calendars)

    Tiva Situations Calendar For wordpress (Calendars)

    Description

    Tiva Events Calendar For WordPress is plugin which help you to manage and display all events on calendar.

    Tiva Events Calendar - Full Layout

    Management events in admin site

    Tiva Events Calendar - Admin

    With many styles and options, you can customize your calendar easily. There are 2 layout for your choice : full layout and compact layout. You can also set initial view as calendar or event list.

    Tiva Events Calendar - Compact Layout

    With nice popup, user can quick-view event for each day, view event list and event detail. Your events will be displayed lively and logically.

    Tiva Events Calendar - List View

    Why choose Tiva Events Calendar For WordPress ?

    • Display your events friendly.
    • View events via calendar or list style.
    • Quick view event’s info with tooltip.
    • Many options to customize.
    • Full layout or Compact layout.
    • Fully responsive.

    See demo for Tiva Events Calendar For WordPress here!

    If you like our product, please don’t forget to review and rate it . We will support you as soon as possible.

    Changelog

    Version 1.0 (26 May 2016)
        - Initial release.
    

    Follow us on :

    Facebook  
    Google+  
    Twitter

  • Fb Occasions Calendar For WordPress (Calendars)

    Fb Occasions Calendar For WordPress (Calendars)

    Description

    Now, there are more and more people who use facebook for their business. One of information they want to inform facebook fan is event.

    Facebook Events Calendar For WordPress will display all events from your facebook page on calendar. There are 2 layout for your choice : full layout and compact layout.

    This plugin can be used on 2 ways : Widget or Shortcode. So you can put it on sidebar as widget with compact layout, or put into post as plugin with full layout.

    Facebook Events Calendar Full Layout

    Facebook Events Calendar Compact Layout

    With nice popup, user can quick-view event for each day. Facebook events will be displayed on your website lively and logically. It can also display event list and detail of each event.

    Event list

    Facebook Events Calendar Full Layout

    Why choose Facebook Events Calendar For WordPress ?

    • Display your facebook events friendly.
    • View events via calendar or list style.
    • Quick view event’s info with tooltip.
    • User friendly interface.
    • Full layout or Compact layout.

    See Facebook Events Calendar For WordPress here!

    Event detail

    Facebook Events Calendar Full Layout

    Now let try Facebook Events Calendar For WordPress !

    If you like our product, please don’t forget to review and rate it . We will support you as soon as possible.

    Changelog

     Version 1.0 (31 Mar 2016)
        - Initial release.
    

    Follow us on :

    Facebook  
    Google+  
    Twitter

  • Psychologist – Psychological Observe WordPress Theme (Miscellaneous)

    Psychologist – Psychological Observe WordPress Theme (Miscellaneous)

    Psychologist – Psychological Practice WordPress Theme

    Clean and responsive WordPress theme for psychological practice personal or business
    websites, or any other websites that needs Events calendar or Appointment calendar.
    design and lot of features.

    If you like PSYCHOLOGIST WordPress theme please rate it five stars.





    how to rate template



    or send message for more details.

    Features


    – SLIDER REVOLUTION premium plugin ( save $18 )
    – ALL AROUND premium plugin ( save $17 )
    – Events list TIMELINE for events calendar.
    – Compatible with EVENTS CALENDAR plugin
    – Compatible with APPOINTMENT CALENDAR plugin
    – Drag and drop PAGE BUILDER
    – Extensive HTML documentation with attached screenshots


    • Clean design
    • Responsive and retina ready
    • Slider Revolution premium plugin ( save $18 )
    • All Around slider premium plugin ( save $17 )
    • Events calendar with Timeline list.
    • Drag and drop page builder
    • Shortcodes and custom post types
    • Bootstrap 3 framework
    • Optimized for all screen sizes
    • One page or multi page website
    • Inner pages, page templates, blog
    • LESS file for easy color change
    • Translation ready ( po and mo files included )
    • Child theme included
    • Extensive HTML documentation and step by step guide how to set your website to be like theme demo
    • Custom post types and shortcodes are separated in plugin
    • And more

    Do you have questions?

    If you have pre-sale question feel free to ask through
    Themeforest contact form

    If you already bought theme/template, before you ask for support please read
    additional
    information for buyers about support.

    Thank you

    Plugins

    – Rt psychologisttheme functions ( theme’s custom post types and shortcodes )

    – Slider revolution ( premium, bundled with theme )

    – All Around slider ( premium, bundled with theme )

    – Metaboxes ( bundled with theme )

    – Class TGM plugin activation ( bundled with theme )

    – The events calendar

    – Contact form 7

    – Aqua page builder ( updated for new WP version, bundled with theme )

    – CP Appointment calendar plugin

    – WP less

    – Polylang

    – Video lightbox

    – Post types order

    Fonts

    Raleway ( Google font )

    Changelog

    Credit

    Images are not included for download. Images are slightly transformed to fit design.
    Images and icons credit: Photodune, Dreamstime, Flickr, Unsplash, http://flaticon.com/
    http://www.flaticon.com/free-icon/timeline_1407
    http://www.flaticon.com/free-icon/wordpress-logo-of-a-letter-in-a-circle_33619
    http://www.flaticon.com/free-icon/screens-modern-variety_36120
    http://www.flaticon.com/free-icon/calendar-icon_26012
    http://www.flaticon.com/free-icon/time-planning_14276
    http://www.flaticon.com/free-icon/website-optimization_69035
    http://www.flaticon.com/free-icon/basic-tick_62025
    http://www.flaticon.com/free-icon/push-pin_69667

  • EVENTICA: Adventure Calendar & Ecommerce For WordPress (eCommerce)

    EVENTICA: Adventure Calendar & Ecommerce For WordPress (eCommerce)

    Eventica is Event Calendar and eCommerce WordPress Theme. Ready to use for events listing and online store.

    COMPATIBILITY:

    • WordPress 4.1+ (self-hosted)
    • The Evens Calendar 3.9+
    • WooCommerce 2.2+

    FEATURES

    This theme is straightforward, no bloated options!

    DOCUMENTATION

    • (VIDEO) WordPress Basics Tutorial

      • How to Buy a Domain Name
      • How to Buy a Web Hosting Account
      • How to Connect your Domain to a Web Hosting Account
      • Automatic WordPress Install using Cpanel, Softaculous VS Fantastico
      • Installing WordPress Automatically Using cPanel (Fantastico)
      • Installing WordPress Automatically Using cPanel (Softaculous)
      • Installing WordPress Manually via FTP
      • Get a New WordPress Blog Ready
      • How to Change Permalinks Structure
      • How to Create New Posts in WordPress
      • How to Create New Pages in WordPress
      • How to Install Themes
      • How to Install Plugins
      • Control How Visitors Comment
      • Understanding Different User Permissions
      • Use WordPress Widgets Effectively
      • Create Navigation Menus and Sort Them
    • (PDF) Documentation for Eventica, usefull to replicate our theme demo
    • (PDF) Documentation for The Events Calendar plugin
    • (PDF) Documentation for WooCommerce plugin

    CREDITS

    IMAGES

    Images are not included in theme download package.

    • Shutterstocks
    • Photodune
  • WordPress Situations Calendar Reserving & Registration (Calendars)

    WordPress Situations Calendar Reserving & Registration (Calendars)

    Events Explorer provide a great platform to create and manage events through WordPress. Allow users to register and pay online for events, manage attendees, discount coupons, export attendees list, and much more.

    Key Features:

    • WordPress 4.0 ready
    • Create discount coupons for your events
    • Add your own header image
    • Add your own colors to the calendar
    • Register & Pay via Paypal or Authorize.net
    • Create ticket prices for your events
    • Limit amount of seats per event
    • Create custom fields for the Registration form
    • Sidebar widget ready
    • Colored Categories
    • Export Events List
    • Export attendees list
    • Wait List
    • Keep track of payments
    • Accept donations for your events
    • Close registrations on start or end of event
    • Send confirmation emails
    • Copy events with one single click
    • Add calendar or single events via short codes
  • NEX-Situations – Drag & Drop WordPress Situations Calendar (Calendars)

    NEX-Situations – Drag & Drop WordPress Situations Calendar (Calendars)

    Drag and drop events and 400+ icons directly onto a calendar view.

    Key Features:

    • Drag and drop
    • 400+ retina ready Font Awesome icons
    • Responsive
    • Google maps
    • Daily list view with drag and drop time slots
    • AJAX enabled
    • Light and Dark Themes
    • Unlimited Calendars
    • Bootstrap Modal Popup
    • Styling Settings
    • ALL Languages supported
    • Custom week start
    • No Programming

    FREE Support

    We offer fast, free, friendly support which is available from our online ticketing system: Click here and get the help you need

    Follow Basix

    Follow us…there will be more plugins, themes, graphics, CSS files, JavaScript files, photos and even audio files!! Click here to follow Basix!

    Change log

    Version 1.0

    First release.
    
  • Chronosly – WordPress full editable Experience Calendar (Calendars)

    Chronosly – WordPress full editable Experience Calendar (Calendars)

    Chronosly is designed to suit all users, designers, software developers and basic users.
    Basic users, can apply a template and just upload events easily.
    Advanced users, designers and developers, can take control of everything, make their own templates or edit the predefined ones with our editing Drag & Drop system.
    With amazing functionalities and a wide selection of templates and addons to enhance features.

  • WordPress Situations Registration Calendar Plugin (Calendars)

    WordPress Situations Registration Calendar Plugin (Calendars)

    Events Plus allows you to easily create and manage your events online through WordPress admin interface. Allow visitors to register and pay online for events, manage attendees, discount coupons, export attendees list, and much more. Checkout the features below:

    support-flat

    rate

    Latest Reviews

    rate

    rate

    wordpress-events-registration-plugin

    Full features list:

    • Register & Pay via Paypal or 2Checkout
    • Create ticket prices for your events
    • Limit amount of seats per event
    • Create discount coupons for your events
    • Add your own header image
    • Automatic google maps integration
    • Easily translatable via .PO language file
    • Add your own colors to the calendar
    • Create custom fields for the Registration form
    • Sidebar widget ready
    • Colored Categories
    • Create custom emails for attendees after registration
    • Export Events List
    • Export attendees list
    • Keep track of payments
    • Accept donations for your events
    • Close registrations on start or end of event
    • Send confirmation emails
    • Copy events with one single click
    • Add calendar or single events via shortcodes

    UPDATES

    Version 1.0.1 - May 12, 2014 - Fixed widget error

    Version 1.0.0 - May 5, 2014 - initial release

    Need a mobile site? Check out our Mobile Website Builder Plugin below:

    wordpress-mobile-website-builder