Tag: events

  • Experience Calendar for Opencart (OpenCart)

    Event Calendar for Opencart

    Event Calendar is an extension module for OpenCart which is to manage events of your site
    Manage event details in the backend and present them in compact and detail calendar views as well as list them

    Features

    1. Plug n Play Module
    2. Multi Language Support.
    3. Easy Installtion
    4. WYSWYG editor for event details
    5. Set Event Date, Image
    6. Calendar details view and compact view
    7. Attach products with event (Optional)
    8. Show events by customer groups
    9. Set event color for calendar detail view
    10. Subscribe users to events (Optional)

    Requirements

    Opencart 2.1+ – http://www.opencart.com

    VQMod – 2.6.x – https://github.com/vqmod/vqmod/releases/tag/v2.6.1-opencart

    Further help and support

    If you have any questions that are beyond the scope of this help file, please feel free to email via my user page contact form here

  • Calendarius – Complete & up to date calendar plugin for WordPress (Calendars)

    Calendarius is absolutely suitable for fitness, yoga, dance classes, medical departments, any kind of event calendars and so on.

  • 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

  • Metropolis of wordpress- City / Metropolis Executive & Municipal WordPress theme (Nonprofit)

    Metropolis of wordpress- City / Metropolis Executive & Municipal WordPress theme (Nonprofit)

    City of WordPress – a premium WP theme developed specifically for small or medium towns and cities and ideal for local and municipality websites.
    Theme comes with native town / city layout and includes fresh, elegant and modern design elements. Easy-to-use back-end dashboard powers flexible, modular and responsive layout. Theme includes lots of features like Drag & Drop Layout Creator, unique Layout Creator blocks, support for WooCommerce etc. You will receive a detailed documentation along with additional features like Unlimited color schemes, Google web fonts, custom widgets and page builder blocks etc.
    Functions are based on solid back-end Redux framework.

    Main theme features:

    • Easy-to-use Layout Creator,
    • Advanced theme admin panel,
    • Modular (home)page – sections blocks,
    • Master City plugin included (Layout Creator + City Staff, Info and Slider custom posts types),
    • “extended” main menu,
    • Responsive layout,
    • Unlimited color schemes – using colorpickers,
    • Google font selector/custom typography,
    • Multiple jQuery sliders (as layout creator blocks and in posts),
    • 5 Posts formats: standard, video, audio, gallery, link,
    • WooCommerce support,
    • Archive templates,
    • Translation ready,
    • WordPress 4.5 + ready,
    • Hide / show most post elements,
    • Custom background images,
    • Related posts,
    • HTML5 & CSS3 & latest WP standards,
    • SEO Optimized markup,
    • Clean source code,
    • Smooth tabless design.

     

    Layouts & Templates:

    • Builder template,
    • Full-Width template,
    • Events template,
    • Redirect,
    • Error 404,
    • Blog template,
    • Archive templates,
    • Search template – custom template for all post/page types,

    Plugin Compatibility:

    Blocks, Widgets & Shortcodes:

    • 12 Layout Creator blocks:
      • 3 x News block
      • 2 x Columns block
      • Ads block
      • Info Posts block
      • Slider block
      • Custom Menu block
      • Call to Action block
      • Text & Divider block
      • Text & Divider – Full Width block
      • Clear block
    • Advanced shordcode generator (plugin),
    • 9 custom widgets:
      • Featured widget,
      • Events widget,
      • Ads widget (300px),
      • Ads widget (4×125px),
      • About Us widget,
      • Flickr Photos widget,
      • Facebook Photos widget,
      • Social Networks widget,
      • Popular / Latest Posts (Tabs) widget,
    • and more..
  • Tennis, Activity Membership & Situations Theme (Leisure)

    Tennis, Activity Membership & Situations Theme (Leisure)

    CURRENT VERSION 1.0 (see Change log at the bottom of this page)

    Modern and professional Tennis Club is a perfect option for tennis clubs (as well as other spotrs), personal trainer’s page, sports centers, tennis / sport review magazine, and sports store. This sports theme has an extremely versatile design and is highly customizable. It is fully responsive and cross browser compatible. We have packed the theme with our own shortcodes to display match results in a detailed way, as well as lists of players and their profiles, and uplcoming matches.
    Tennis Club is built WooCommerce ready, in case you wish to build a powerful online store of sports apparel and equipments. The theme is based on our powerful framework which will help you build a super functional sport related website.

    Key Features

    • Clean and stylish design
    • Easy to install, run and update!
    • Modern, Flexible, Customizable!
    • WordPress 4.0+ Tested and Approved!
    • Built with valid HTML5 and CSS3 code
    • Cross-Browser Compatibility: FireFox, Safari, Chrome, IE9+
    • One-Click demo install
    • Layout Features:
      • Boxed and Wide pages layouts
      • Visual Composer support – create unlimited variants of Homepage Layouts
      • Different Header Styles
      • Enable/Disable Multi-Functional User Panel
      • Many awesome Hover Effects
      • Fully Responsive Layout
      • Enable/Disable Retina Option
    • Slider Options:
      • Includes Swiper Slider for posts and galleries
      • Includes Revolution Slider as Home slider
    • Navigation Options:
      • User menu and Main menu support
      • Main menu slider
      • Awesome CSS3/jQuery animation effects
    • Powerful Framework:
      • Setting Inheritance and Override System
      • Shortcode Builder
      • Visual Composer
      • Custom Theme Options Panel
      • Media Content Manager
      • WooCommerce Ready
      • Optimized for best performance
      • …and many more!
    • Plugins Compatibility:
      • Sliders: Swiper Slider, Revolution Slider
      • Visual Composer
      • Essential Grid
      • PO Composer!
      • WooCommerce
      • Booked
    • Custom Widgets Set:
      • Flickr
      • Twitter
      • Instagram
      • Popular Posts
      • Recent Posts
      • Recent Reviews
      • Top 10
      • Advertisement
      • Logo
      • Social Icons
      • King Size Shortcodes Pack
      • Blogger
      • Content Slider
      • Skills
    • Custom Shortcodes:
      • Blogger
      • Content Slider
      • Video List
      • Skills
      • eMailer
      • Timeline
      • Matches
      • Players
    • A lot of Shortcodes included:
      • Accordion
      • Button
      • Columns
      • Google Map
      • Hide
      • Highlight
      • Section
      • Table
      • Tabs
      • Team
      • Testimonials
      • Title
      • Tooltip
      • Toggle
      • and more …
    • Interactive Ajax Search mechanism
    • Two variants of icon display: Fontella Icon set and Images Icons
    • Google web fonts
    • Performance Optimization
    • Great Professional Support
    • Documentation included
    • Regular Updates
    • And many more that we might have forgotten to mention…

    Clipart:
    http://www.depositphotos.com

    Jorgen Grotdal – a wonderful graphic artist!
    All images are copyrighted to their respective owners. Images used in live preview are not included in the template.

    Change log

    11.07.2016 Version 1.0 – Release

  • Noo Timetable – Responsive WordPress Timetable Plugin (Calendars)

    Noo Timetable – Responsive WordPress Timetable Plugin (Calendars)

    Noo Timetable WordPress Plugin documentationNOOtheme newsletterNOOtheme supportNOOtheme facebook

    Noo Timetable - Responsive WordPress Timetable Plugin

    NOO Timetable is a super flexible schedule plugin for WordPress, with fully responsive interface and fascinating UI. It is absolutely suitable for fitness, yoga, dance classes, medical departments, any kind of event calendars and so on.

    NOO Timetable helps you easily create a timetable with custom data just in a few minutes. All classes/events will be shown visually in both weekly and monthly timetable and filtered by category as well. NOO Timetable is packed with tons of marvelous features which make it the ideal choice for your class/event schedule. Up-to-date Flat Styling, Fully Responsive, Super Flexible, Multiple View Options, Event Filters, Event Navigation, iCal file Exporting, Event Pop-ups, 2 Preset post types: Class & Event and many more are included in this plugin.

    It has clean and elegant layout that could be simply customized. It is also a totally versatile plugin, that can be used by lots of different businesses. Scroll down for more feature details!

    Noo Timetable - Responsive WordPress Timetable Plugin

    NOO Timetable – Full Features List

    • Fully responsive and mobile friendly

      NOO Timetable is fully responsive and mobile friendly. It will be displayed perfectly on any mobile device.

    • Up-to-date Flat Styling

      This plugin has modern and flat interface. All colors can manually be customized, both calendar and item’s color.

    • Super Flexible

      Especially, classes/events will be displayed in a very flexible way: classes/events with the same date and time will still be shown beautifully on the schedule.

    • Multiple View Options

      All classes/events will be shown visually in both daily, weekly and monthly timetable and filtered by category as well

    • Event Filters

      Our plugin is ready for schedules with a lot of classes, hence powerful filters are essential. You can allow various filters, like Category, Instructor, Location, Day or Time of the Day.

    • Event Navigation

      With event navigation feature, NOO Timetable makes it more easily to navigate to the next of previous week on the schedule.

    • iCal file Exporting

      NOO Timetable plugin allows user to export schedule to iCalendar file conveniently with no effort.

    • Event Pop-ups
    • A schedule should display only the important info, but you might have a lot of other useful details for your visitors. Therefore, each class accepts individual text and images, that can be displayed in a pop-up window. Moreover, we include in this plugin 16 pop-up styles for your own use.

    • Multi-schedule on page

      It allows multiple schedules on each page. Build your class or event schedules in minutes.

    • 2 Preset post types: Classes and Events

      Classes and Events are 2 preset post types of NOO Timetable. Create classes and events within seconds.

    • Visual Composer compatible

      Our plugin is compatible with Visual Composer. In case you already installed Visual Composer, it still supports shortcode creating.

    • Default Shortcode Supported

      The plugin also supports default shortcode. However, it would still supports shortcode normally if users installed Visual Composer.

    • Unlimited Colors

      You can choose from multiple colors to customize schedule’s color (calendar, time slots, etc)

    • RLT Supported

      Noo Timetable supports right to left languages and repositions elements when necessary.

    • One Click Demo

      Importing demo data has never been easier. With just one click, demo data will be imported.

    • Automatic Update

      No more wasting your time updating theme and plugins manually. The plugin can be easily updated automatically with just one click.

    • Comprehensive Document

      We included in plugin package dedicated document file to guide you step by step installing and customizing the plugin. You also can find the detailed online guide on our support center here.

    • Regular Update

      We keep updating the plugin regularly with more addon features and minor bug fixed. Just one time payment, you will get the update lifetime for free.

    • Free premium support

      In addition to dedicated documentation, the senior developers of the plugin will support you. We are happy to support you to build your amazing website.

    Support

    All support is handled in our Support Center. We encourage you to post all your questions concerning our template there as your questions may have already been answered or may be of help to other people that have also purchased the template.

    Keep In Touch With Us

    Keep updated with our latest news and releases by subscribing to our newsletter at Blog NooTheme or follow us via social networks


    follow us on facebook


    follow us on twitter


    follow us on pinterest


    follow us on youtube

  • Responsive Timetable – Horizontal Addon (Add-ons)

    Responsive Timetable – Horizontal Addon (Add-ons)

    Our horizontal addon provides a horizontal layout for the timetable. It supports all the features of the original layout, like a responsive modern interface, popups, image backgrounds, filters and much more. The layout it fully customisable and different scales are possible.

    The horizontal layout is fully mobile compatible. You can also choose to show a list-view if the browser’s viewport is too small so the schedule remains clear for everyone.

    Note: this is an addon
    To use this addon you need to purchase a license for the Responsive Timetable for WordPress plugin and have the plugin installed and activated.

  • Golf Membership – Sports activities & Situations WordPress Theme (Leisure)

    Golf Membership – Sports activities & Situations WordPress Theme (Leisure)

    CURRENT VERSION 1.0 (see Change log at the bottom of this page)

    Modern and professional GOLF CLUB is a perfect option for golf clubs (as well as other spotrs), coach’s page, sports centers, tennis/sports review magazine, and sports store. With its premium design, the theme is a perfect solution to build an online presence. It is built WooCommerce ready, to create a powerful store of golf apparel and equipments;
    TENNIS CLUB is a WordPress theme is based on our powerful framework which will help you build a super functional sport related website.

    Key Features

    • Clean and professional design
    • Easy to install, run and update!
    • Modern, Flexible, Customizable!
    • WordPress 4.0+ Tested and Approved!
    • Built with valid HTML5 and CSS3 code
    • Cross-Browser Compatibility: FireFox, Safari, Chrome, IE9+
    • One-Click demo install
    • Layout Features:
      • Boxed and Wide pages layouts
      • Visual Composer support – create unlimited variants of Homepage Layouts
      • Different Header Styles
      • Enable/Disable Multi-Functional User Panel
      • Many awesome Hover Effects
      • Fully Responsive Layout
      • Enable/Disable Retina Option
    • Slider Options:
      • Includes Swiper Slider for posts and galleries
      • Includes Revolution Slider as Home slider
    • Navigation Options:
      • User menu and Main menu support
      • Main menu slider
      • Awesome CSS3/jQuery animation effects
    • Powerful Framework:
      • Setting Inheritance and Override System
      • Shortcode Builder
      • Visual Composer
      • Custom Theme Options Panel
      • Media Content Manager
      • Optimized for best performance
      • …and many more!
    • Plugins Compatibility:
      • Sliders: Swiper Slider, Revolution Slider
      • Visual Composer
      • PO Composer!
      • BuddyPress
      • bbPress
    • Custom Widgets Set:
      • Flickr
      • Twitter
      • Instagram
      • Popular Posts
      • Recent Posts
      • Recent Reviews
      • Top 10
      • Advertisement
      • Logo
      • Social Icons
      • King Size Shortcodes Pack
      • Blogger
      • Content Slider
      • Skills
    • Custom Shortcodes:
      • Blogger
      • Lense
      • Content Slider
      • Video List
      • Skills
      • eMailer
      • Timeline
      • Scroller
    • A lot of Shortcodes included:
      • Accordion
      • Button
      • Columns
      • Google Map
      • Hide
      • Highlight
      • Section
      • Table
      • Tabs
      • Team
      • Testimonials
      • Title
      • Tooltip
      • Toggle
      • and more …
    • Interactive Ajax Search mechanism
    • Two variants of icon display: Fontella Icon set and Images Icons
    • Google web fonts
    • Performance Optimization
    • Great Professional Support
    • Documentation included
    • Regular Updates
    • And many more that we might have forgotten to mention…

    Clipart:
    http://www.depositphotos.com

    All images are copyrighted to their respective owners. Images used in live preview are not included in the template.

    Change log

    11.05.2016 Version 1.0 – Release

  • N7 – Golf Membership, Sports activities & Situations Theme (Leisure)

    N7 – Golf Membership, Sports activities & Situations Theme (Leisure)

    CURRENT VERSION 1.0 (see Change log at the bottom of this page)

    N7 – Golf Club, Sports & Events Theme

    Modern and professional N7 is a perfect option for tennis clubs (as well as other spotrs), personal trainer’s page, sports centers, tennis / sport review magazine, and sports store. This theme has an extremely multi-functional design and is highly versitile. It is fully responsive, Retina ready and cross browser compatible. We have integrated the theme with our own shortcodes to display match results in a detailed way, as well as lists of players and their profiles, and uplcoming golf games.
    N7 is built WooCommerce ready, if you seek to build an online store of sports clothing and equipments. The theme is based on our powerful ThemeREX framework which will allow you to start a really functional sport related website.

    Key Features

    • Elegant design
    • Easy to install, run and update!
    • Modern, Flexible, Customizable!
    • WordPress 4.0+ Tested and Approved!
    • Built with valid HTML5 and CSS3 code
    • Cross-Browser Compatibility: FireFox, Safari, Chrome, IE9+
    • One-Click demo install
    • Layout Features:
      • Boxed and Wide pages layouts
      • Visual Composer support – create unlimited variants of Homepage Layouts
      • Different Header Styles
      • Enable/Disable Multi-Functional User Panel
      • Many awesome Hover Effects
      • Fully Responsive Layout
      • Enable/Disable Retina Option
    • Slider Options:
      • Includes Swiper Slider for posts and galleries
      • Includes Revolution Slider as Home slider
    • Navigation Options:
      • User menu and Main menu support
      • Main menu slider
      • Awesome CSS3/jQuery animation effects
    • Powerful Framework:
      • Setting Inheritance and Override System
      • Shortcode Builder
      • Visual Composer
      • Custom Theme Options Panel
      • Media Content Manager
      • WooCommerce ready
      • Optimized for best performance
      • …and many more!
    • Plugins Compatibility:
      • Sliders: Swiper Slider, Revolution Slider
      • Visual Composer
      • Essential Grid
      • PO Composer!
      • Events Calendar
      • Booked
      • WooCommerce
    • Custom Widgets Set:
      • Flickr
      • Twitter
      • Instagram
      • Popular Posts
      • Recent Posts
      • Recent Reviews
      • Top 10
      • Advertisement
      • Logo
      • Social Icons
      • King Size Shortcodes Pack
      • Blogger
      • Content Slider
      • Skills
    • Custom Shortcodes:
      • Blogger
      • Lense
      • Content Slider
      • Video List
      • Skills
      • eMailer
      • Timeline
      • Scroller
    • A lot of Shortcodes included:
      • Accordion
      • Button
      • Columns
      • Google Map
      • Hide
      • Highlight
      • Section
      • Table
      • Tabs
      • Team
      • Testimonials
      • Title
      • Tooltip
      • Toggle
      • and more …
    • Interactive Ajax Search mechanism
    • Two variants of icon display: Fontella Icon set and Images Icons
    • Google web fonts
    • Performance Optimization
    • Great Professional Support
    • Documentation included
    • Regular Updates
    • And many more that we might have forgotten to mention…

    Clipart:
    http://www.depositphotos.com

    Jorgen Grotdal – a wonderful graphic artist!
    All images are copyrighted to their respective owners. Images used in live preview are not included in the template.

    Change log

    15.07.2016 Version 1.0 – Release