Tag: android

  • 59sec LITE – Contact Kind 7 Push notifications (Varieties)

    59sec LITE – Contact Kind 7 Push notifications (Varieties)

    What does the 59sec LITE do?

    59sec LITE helps companies to answer leads (or new contacts) generated with Contact Form 7 under 59 seconds. Why? Because studies done by MIT and Kellogg (published here on Forbes) show that answering a lead in 5 minutes versus 30 seconds means 21x more chances to close the sale. So, we are helping you answer under 1 minute, not in 5. :)

    How it works (technically speaking)?

    First you install the 59sec LITE wordpress plugin. Done!
    Second, you set up the plugin. Specify the “Entry Sources”, the “Notifications”, etc.
    Third, you put everybody from the sales team to install the mobile apps (iOS and Android available) and connect it to the site. Your site secret code can be found under “Notifications” tab.

    What the 59sec LITE mobile app does?

    When you receive new leads on your site via Contact Form 7 Plugin, they are sent almost instantly on your iPhone/Android via push notifications, so you can respond under 1 minute. Also, you have also a lite version of CRM, that will help you nurture the leads.

    How can I test 59sec LITE?

    1. Install the mobile app 59sec from AppStore or Google Play.
    2. Go to “Settings” tab (on your 59sec mobile app).
    3. Put in the test key: 123456789
    4. Go to 59sec.com/test, write something in that contact form and you’ll get the notification. :)

    Suggestion: Make sure that you go on your iPhone, Settings/Notification Center/59sec and change the alert style from “Banners” to “Alerts”. This way you will not miss the new lead alerts!

    How soon the leads are received via push notifications?

    The ones from Contact Form 7 takes aprox 2 seconds.

  • Royal 3D Carousel WP Plugin (Media)

    Royal 3D Carousel WP Plugin (Media)

    Royal 3D Carousel WordPress Plugin is a fully responsive media 3D carousel wordpress plugin that allows you to display media content with an unique original layout from a 3D perspective. It’s perfect for any kind of presentation, for anyone that wants to deliver a great impact on their visitors. It runs on all major browsers and mobile devices like iPhone, iPad, IOS, Android and Windows 8. Also supports unlimited categories and each category can have any number of thumbnails.

    Responsive / Fluid layout with autoscale function.
    Mobile and desktop optimized (Ipad demo here!).
    Scroll and swipe functions for the desktop and mobile devices.
    Mouse Wheel support – navigation with mouse wheel scrolling.
    Keyboard support – the left and right arrows can be used for navigation through the thumbnails.
    Optional Categories Menu.
    Support for unlimited categories and each category can have any number of thumbnails.
    The option to start at a specific category.
    Customizable thumbnails size and topology geometry.
    Customizable description text for the center thumbnail.
    Customizable controls – each button and scrollbar component can be changed.
    Customizable reflection for the thumbnails.
    Custom action for the thumbnail click.
    Optional and customizable Shadow Box Gradient for the thumbnails.
    Powerful API included.
    You can include multiple instances on the same page.
    Slideshow Autoplay.
    Responsive / Fluid layout for the carousel Lightbox.
    Image lightbox support.
    Iframe lightbox support.
    Vimeo and YouTube lightbox support.
    Zoom and panning support for lightbox images.
    Optional lightbox slideshow button, time and autoplay.
    Customizable border and background for the lightbox.
    Lightbox keyboard support – the left and right arrows can be used for navigation.
    Three skins included along with the preset configurations.

    Special notes:

    The thumbnail’s image width and height will be equal to the thumbnail width and height values minus the thumbnail border size value.
    The carousel also has a setting to limit the maximum number of thumbnails only on mobile devices, separately from the pc, for performance reasons. This is an optional feature it can be disabled but we advice to leave it active because it will increase the performance on mobile devices.
    The skin is constructed from png files.

  • Push Notifications for Posts (Newsletters)

    Push Notifications for Posts (Newsletters)

    Send push notifications to iOS, Android, and Fire OS devices when you publish a new post. Straight from your WordPress site, in real-time.

    Alert your visitors when new content is published, converting them to regular and loyal readers. It’s like a newsletter, but so much more effective. Keep your audience engaged.

    Push Notifications for Posts allows you to focus on building beautiful and unique apps, without developing your own server-side back-end. Content for the apps is collected automatically from your WordPress site, so no extra work is needed to maintain them.

    Key Features

    Natively supports:

    • Apple Push Notification service (APNs)
    • Google Cloud Messaging (GCM)
    • Amazon Device Messaging (ADM)

    No charge for delivery. You don’t have to pay any fees since Push Notifications for Posts does not use any third-party’s server.

    Integrated statistics. Get a quick overview of the last 30 days.

    Localization ready. With English and Italian translation out of the box.

    Instant notifications. Notifications appear as message alerts, badge updates, and even sound alerts.

    Additional Information

    • Saving a post as a draft will not trigger push notifications.
    • Static pages will not trigger push notifications.
    • Scheduled posts will trigger push notifications at the time they’re scheduled to publish.
    • Statistics require HTML 5 support, available in all modern browsers.

    Who Is This Plugin For?

    This plugin is primarily intended for mobile developers who do not want to develop their server-side back-end. Supporting push notifications is incredibly complicated. This plugin lets you focus on creating the apps, without the hassle.

    Can You Build The Apps For Me?

    Yes. We’re a team of mobile developers. We put our expertise to work on custom projects for companies that need great apps. Interested? Contact us: http://www.delitestudio.com/contact/.

    Getting Started

    1) Build your iOS, Android, and/or Fire OS apps.

    2) Install the plugin on your WordPress site.

    3) Enable push notifications on the plugin’s settings page (providing required certificates and keys, see below).

    4) Connect the apps to your WordPress site using the “register API” (see below).

    Now, when users launch the apps, their devices will automatically register to your site. As soon as a new post is published, a push notification is sent to registered devices, with the title of the post.

    Prerequisites

    To begin using this plugin, you first need an app that uses one of the supported push notification services: APNs (Apple Push Notification service), GCM (Google Cloud Messaging), or ADM (Amazon Device Messaging).

    To send push notifications to mobile devices using APNs, you need to obtain the following:

    To send push notifications to mobile devices using GCM, you need to obtain the following:

    To send push notifications to mobile devices using ADM, you need to obtain the following:

    Register API

    Description:
    This API allows client device to register itself to Push Notifications for Posts so that it can receive future notifications.

    URL structure:
    http://yoursite/register/

    Method:
    POST

    Parameters:

    • token: String token given by APNs, GCM, or ADM identifying the device, often called device ID.
    • prevToken (optional): String containing the old token used by the device. If set, server will update the existing token with the new one.
    • os: String identifying the calling operating system. It must be “iOS”, “Android”, or “Fire OS” (case sensitive).

    Sample request for new registration:
    POST /register/ HTTP/1.1
    Host: yoursite
    Content-Length: 26
    Content-Type: application/x-www-form-urlencoded

    token=new_device_id&os=iOS

    Sample request for updating registration:
    POST /register/ HTTP/1.1
    Host: yoursite
    Content-Length: 50
    Content-Type: application/x-www-form-urlencoded

    prevToken=old_device_id&token=new_device_id&os=iOS

    Returns:

    • 200 OK: on success.
    • 404 Not Found: if prevToken is not found on updating registration.
    • 500 Internal Server Error: on missing mandatory parameters, unknown operating system, or general failure.
  • Shiny: A really perfect sharp WordPress theme for contact gadgets (Cellular)

    Shiny: A really perfect sharp WordPress theme for contact gadgets (Cellular)

    Vibrant: A super sharp WP theme for touch devices

    Hi there and thank you for having a look at Vibrant, the 8th mobile WordPress theme from Bonfire Themes.

    Vibrant is super clean, light and was built with minimalism in mind. That said, the theme’s stand-out elements like the unique menu display, comment form and per-post/page custom header colors ensure it doesn’t look generic and is immediately memorable to the user.

    Vibrant can also serve many purposes. Use it for a simple blog, a mobile home for your business, to show off your portfolio, etc. It can also be used as a secondary, mobile-only theme on your existing WordPress installation or set up as the main theme on a brand new installation. You can even use it for a full-blown desktop site if you so choose.

    Features list:

    • extremely clean design
    • super unique 2-level accordion menu display
    • beautiful and subtle use of CSS3 and jQuery animations
    • clean and minimal jQuery comment form
    • PageLoader plugin included ($13 value)
    • per-post/page header colors (choose between 9 carefully picked colors)
    • touch-enabled gallery (customized PhotoSwipe)
    • ‘install as webapp’ on iOS
    • ready for translation/localization (.mo, .po files included)
    • contact form with validation
    • widgetized front page footer
    • ready-to-edit child theme included
    • liquid design
    • tested on several browsers across multiple operating systems and devices (Chrome, Firefox, Internet Explorer, Safari, Opera, iOS, Android)
    • fully retina-ready
    • a ton of extremely customizable shortcodes: alerts, progress bars, text highlighting, dividers, buttons, boxes etc. + shortcodes for YouTube, Vimeo, USTREAM, DailyMotion, Blip.tv + easy shortcode for placing content in columns (text, images, as well as video)
    • extensive documentation

    We hope you have a thorough look around the rest of this demo site and that we can welcome you as a customer shortly!

    Triple-A support

    Should you have questions, you can rest easy in knowing we’ll be here to answer them in a speedy manner. Here’s what just a few of our customers have to say about us:

    • “I’ve never had a customer service experience as great as I had with Bonfire Themes…”
    • “This is by far the best support I’ve gotten on TF.”
    • “… extreme fast response!!!”
    • “Best support I’ve ever seen! .. Five stars is not enough!”
    • “Wow, thanks for the prompt response.”
    • “… customer service provided goes above and beyond … An excellent experience from start to finish.”
    • “Thanks for your speedy service! :)”
    • “Thanks for such a speedy response! You rock man!”

    More from Bonfire

    Consider having a look at our full ThemeForest portfolio.

    We’re also known to whip out a WordPress plugin every now and then; visit our CodeCanyon portfolio for a peek.

  • Envelope Portfolio WordPress Theme for Creatives  (Ingenious)

    Envelope Portfolio WordPress Theme for Creatives (Ingenious)


    Envelope Portfolio is a Powerful out of the box Premium WordPress Theme. The theme provides all the functionality you will have to present your products/work in a creative, professional and elegant way. It has powerful and flexible theme options panel, which are very easy to use. You can have your custom envelope cover skin with custom colors and background patterns. The theme was created to be a powerful portfolio for that smart individual in the creative field. Designers, artist, writers, creative thinkers and many more.

    Theme feature overview

    Responsive Design

    Cross browser compatible

    Easy to customize

    Unlimited background color, cover or patterns option

    Logo or your headshot for personalization

    Pages include

    Resume page

    Portfolio page

    Contact page

    Blog

    Great effect for all pages in-out animations

    Custom Settings Panel

    SEO Ready

    Theme Customizer Support

    Google Maps ready

    Custom Post Type: Portfolio

    Optimized performance for mobile devices

    Filtered portfolio with solid ajax portfolio details

    Optimized for retina screens.

    10 social media icons

    Extensive Documentation

    Dedicated 24hr Support.

  • Monolith – wordpress theme for bloggers and mavens (Cell)

    Monolith – wordpress theme for bloggers and mavens (Cell)

    Monolith: A mobile WordPress theme for bloggers and professionals!

    Monolith is perhaps Bonfire Themes’ most expressive mobile theme to date. With in-your-face imagery, the theme is an immediate standout from the crowd and is especially suitable for anyone looking to present their content, products and/or services through memorable and strong visuals.

    As is the case with all our previous themes, Monolith too can be used for many purposes; whether you’re a straight-up blogger, need to show off your work, and/or advertise your services, Monolith can be a trusty partner that can be used as a secondary, mobile-only theme on your existing WordPress installation or set up as the main theme on a brand new installation.

    Also included is a uniquely ‘swappable’ comment form, a validation-enabled contact form, highly customizable shortcodes, etc. For a more comprehensive list of features, please see below:

    Features list

    • super expressive and colorful design
    • 2-level slide-in accordion menu
    • out-of-the-box share buttons for posts, with no setup necessary (Twitter, Facebook and Google+)
    • full screen images for posts combined with overlay colors allow for expressiveness; choose between 9 header colors (default dark, silver, green, teal, blue, salmon, red, orange, pink), which also get applied to the menu button and header bar on pages
    • uniquely ‘swappable’ content and comment areas
    • touch-enabled gallery (customized PhotoSwipe)
    • ready for translation/localization (.mo, .po files included)
    • contact form with validation
    • widgetized front page footer
    • ready-to-edit child theme included
    • liquid design
    • tested on several browsers across multiple operating systems and devices (Chrome, Firefox, Internet Explorer, Safari, Opera, iOS, Android)
    • fully retina-ready
    • beautiful and subtle use of CSS3 and jQuery animations
    • a ton of extremely customizable shortcodes: alerts, progress bars, text highlighting, dividers, buttons, boxes etc. + shortcodes for YouTube, Vimeo, USTREAM, DailyMotion, Blip.tv + easy shortcode for placing content in columns (text, images, as well as video)
    • extensive documentation

    Please do have a thorough look around Monolith’s demo site, and we do hope to count you among our customers soon!

    Our customers love us!

    When buying a Bonfire product, you can rest assured that you’ll always get nothing short of stellar support. Here’s what just a few of our current customers have to say about us:

    • “This is my first design of a mobile site and thanks to your theme, it has been very easy to create!”
    • “BOOM! Now that is support!! THANK YOU!!”
    • “I’ve never had a customer service experience as great as I had with Bonfire Themes.”
    • “Absolutely stellar theme. Great work!”
    • “You guys have the best customer service on Themeforest! A+++”
    • “Thanks for your speedy service! :)”
    • “This is by far the best support I’ve gotten on TF.”
    • “Thanks for your speedy service! :)”
    • “Best support I’ve ever seen! .. Five stars is not enough!”
    • “… customer service provided goes above and beyond … An excellent experience from start to finish.”

    More from Bonfire

    Consider having a look at our full ThemeForest portfolio.

    We’re also known to whip out a WordPress plugin every now and then; visit our CodeCanyon portfolio for a peek.

  • GRUNT – A Large & Daring wordpress Theme for Mobiles (Cell)

    GRUNT – A Large & Daring wordpress Theme for Mobiles (Cell)

    Thanks for having a look at Grunt!

    ‘Grunt’ is the 6th mobile-focused WordPress theme from Bonfire Themes and — as with our previous offerings — can be set up as a secondary theme on your current WordPress installation and shown only to mobile visitors, or used on a brand new installation; whichever suits your situation.

    While fresh and clean, ‘Grunt’ can be used for many purposes; set up a straightforward blog, include an optional static front page, build portfolios, touch-enabled galleries, etc.

    Also included is a unique comment form along with a validation-enabled contact form, highly customizable shortcodes, and so on.

    Stellar support

    When buying a Bonfire product, you can rest assured that you’ll always get nothing short of stellar support. Here’s what just a few of our current customers have to say about us:

    • “This is my first design of a mobile site and thanks to your theme, it has been very easy to create!”
    • “BOOM! Now that is support!! THANK YOU!!”
    • “I’ve never had a customer service experience as great as I had with Bonfire Themes.”
    • “Absolutely stellar theme. Great work!”
    • “You guys have the best customer service on Themeforest! A+++”
    • “This is by far the best support I’ve gotten on TF.”
    • “Thanks for your speedy service! :)”
    • “Best support I’ve ever seen! .. Five stars is not enough!”
    • “… customer service provided goes above and beyond … An excellent experience from start to finish.”

    Features

    For a comprehensive list of features, please see below:

    • clean, layered design
    • header menu bar with built-in search (can be removed)
    • 2-level accordion menu
    • out-of-the-box share buttons for posts, with no setup necessary (Twitter, Facebook and Google+)
    • add some flavor to your posts and pages by selecting between 9 header colors (default dark, silver, green, teal, blue, salmon, red, orange, pink)
    • swipe through long lists of tags
    • touch-enabled gallery (customized PhotoSwipe)
    • ready for translation/localization (.mo, .po files included)
    • subtly animated comment form
    • contact form with validation
    • widgetized front page footer
    • ready-to-edit child theme included
    • liquid design
    • tested on several browsers across multiple operating systems and devices (Chrome, Firefox, Internet Explorer, Safari, Opera, iOS, Android, Windows Phone)
    • fully retina-ready
    • beautiful and subtle use of CSS3 and jQuery animations
    • a ton of extremely customizable shortcodes: alerts, progress bars, text highlighting, dividers, buttons, boxes etc. + shortcodes for YouTube, Vimeo, USTREAM, DailyMotion, Blip.tv + easy shortcode for placing content in columns (text, images, as well as video)
    • extensive documentation

    And there we have it; to see these features in action, do have a thorough look around the demo site. We hope to count you among our customers soon!

    More from Bonfire

    Consider having a look at our full ThemeForest portfolio.

    We also create WordPress plugins; visit our CodeCanyon portfolio.

  • Chalis Cell Retina Model (Cellular)

    Chalis Cell Retina Model (Cellular)



    WordPress Features

    • 6 Custom Page Templates Included
    • Home Page
    • General Page
    • Blog Page
    • Portfolio One Column
    • Swipable Portfolio Three Columns
    • Contact Page
  • Custom Theme Options Panel with 25 very useful settings
  • 22 Useful shortcodes
  • Contact page with form and field validation!
  • Posibility to disable the default contact form and add in your own!
  • Add your own custom CSS rules directly from our options panel
  • Logo Upload from Options Panel
  • Favicon Upload from Options Panel
  • Upload your custom HomeScreen Icon, and Splash Screens for iOS devices from options panel!
  • SEO Settings included in the options pane ( Google Analytics, Description, Keywords
  • Demo Content XML File Included, so you can have the item EXACTLY how it’s in the preview
  • General Features

    • Custom jQuery code.
    • Page preloader with fader!
    • Optimized for all types of mobile screens!
    • WebApp Ready!
    • AJAX/PHP Contact Form with validation!
    • Touch Swipe image slider!
    • Colorbox image gallery!
    • Photoswipe touch image gallery!
    • Full retina support for all graphic elements!
    • 800 icons availalble!
    • 40 icon lists availalble!
    • Google fonts integration!

    Typograpghy features!

    • 1 text column!
    • 2 text columns!
    • 3 text columns!
    • 1 column with icon
    • 2 columns with icon
    • 3 columns with icon
    • 1 column with image
    • 2 columns with image
    • 3 columns with image!
    • Blockquote with icons!
    • Blockquote without icons!
    • CSS3 Highlighted text paragraphs
    • CSS3 Dropcaps text style!
    • CSS3 Table!
    • CSS3 Web 2.0 buttons
    • CSS3 Minimal buttons
    • List with icons!
    • Classic lists with numbers or bullet!
    • Thumbnail adaptive blog post!
    • Fullwidth blog post!
    • Ads widget in blog!
    • Recent widget in blog
    • Comments widget
    • Replies widget!

    jQuery features!

    • jQuery Swipe Slider
    • jQuery Photoswipe thumbnail gallery!
    • jQuery Colorbox 1 column gallery!
    • jQuery Colorbox 2 column gallery!
    • jQuery Colorbox filtrable gallery!
    • jQuery Checkboxes ( retina ready )
    • jQuery Radioboxes ( retina ready )
    • jQuery On/Off Toggle! ( retina ready )
    • jQuery +/- Toggle ( retina ready )
    • jQuery Tabs
    • jQuery Classic Notifications ( retina ready )
    • jQuery Big Notifications! ( retina ready )
    • jQuery Header notifications!

    Epsilon mobile framework! What is it

    Epsilon is the most advanced and easiet to use mobile framework we’ve ever built! It’s made in such fashion that you’ll have all possible elements styled up for this specific template and all you’ll have to do is call them to your page!

    Is Epsilon harder to use than coding old fashion way?

    NO! It’s actually far far easier! All elements are dynamic, you can use as many as you want, they are just copy paste, replace with your information, done! That’s all!

  • Mobilebar Cell Retina Model (Cell)

    Mobilebar Cell Retina Model (Cell)



    WordPress Features

    • 6 Custom Page Templates Included

      • Home Page
      • General Page
      • Blog Page
      • Portfolio One Column
      • Swipable Portfolio Three Columns
      • Contact Page
    • Custom Theme Options Panel with 25 very useful settings
    • 22 Useful shortcodes
    • Contact page with form and field validation!
    • Posibility to disable the default contact form and add in your own!
    • Add your own custom CSS rules directly from our options panel
    • Logo Upload from Options Panel
    • Favicon Upload from Options Panel
    • Upload your custom HomeScreen Icon, and Splash Screens for iOS devices from options panel!
    • SEO Settings included in the options pane ( Google Analytics, Description, Keywords
    • Demo Content XML File Included, so you can have the item EXACTLY how it’s in the preview

    General Features

    • Custom jQuery code.
    • Page preloader with fader!
    • Optimized for all types of mobile screens!
    • WebApp Ready!
    • AJAX/PHP Contact Form with validation!
    • Touch Swipe image slider!
    • Colorbox image gallery!
    • Photoswipe touch image gallery!
    • Full retina support for all graphic elements!
    • 800 icons availalble!
    • 40 icon lists availalble!
    • Google fonts integration!

    Typograpghy features!

    • 1 text column!
    • 2 text columns!
    • 3 text columns!
    • 1 column with icon
    • 2 columns with icon
    • 3 columns with icon
    • 1 column with image
    • 2 columns with image
    • 3 columns with image!
    • Blockquote with icons!
    • Blockquote without icons!
    • CSS3 Highlighted text paragraphs
    • CSS3 Dropcaps text style!
    • CSS3 Table!
    • CSS3 Web 2.0 buttons
    • CSS3 Minimal buttons
    • List with icons!
    • Classic lists with numbers or bullet!
    • Thumbnail adaptive blog post!
    • Fullwidth blog post!
    • Ads widget in blog!
    • Recent widget in blog
    • Comments widget
    • Replies widget!

    jQuery features!

    • jQuery Swipe Slider
    • jQuery Photoswipe thumbnail gallery!
    • jQuery Colorbox 1 column gallery!
    • jQuery Colorbox 2 column gallery!
    • jQuery Colorbox filtrable gallery!
    • jQuery Checkboxes ( retina ready )
    • jQuery Radioboxes ( retina ready )
    • jQuery On/Off Toggle! ( retina ready )
    • jQuery +/- Toggle ( retina ready )
    • jQuery Tabs
    • jQuery Classic Notifications ( retina ready )
    • jQuery Big Notifications! ( retina ready )
    • jQuery Header notifications!

    Epsilon mobile framework! What is it

    Epsilon is the most advanced and easiet to use mobile framework we’ve ever built! It’s made in such fashion that you’ll have all possible elements styled up for this specific template and all you’ll have to do is call them to your page!

    Is Epsilon harder to use than coding old fashion way?

    NO! It’s actually far far easier! All elements are dynamic, you can use as many as you want, they are just copy paste, replace with your information, done! That’s all!

  • Mobili Top rate WooCommerce Cellular Theme (Cellular)

    Mobili Top rate WooCommerce Cellular Theme (Cellular)

    Mobili Mobile Theme is created with full customizable theme system. While coding this template we try to give you better mobile experience. Mobili have perfect mobile blog system with post format support. Also custom portfolio, gallery, video and Sound Cloud supports. You can insert unlimited category and menu item in Mobili Mobile Theme. Our mobile theme is support 2 level accordion menu and mobile retina icons. Also you can enable / disable both sidebars.

    Please preview with your mobile phone or tablet for better view and see retina features…

    WooCommerce support added on v1.2. Now Mobili Mobile WooCommerce Theme usable to create shops.

    Features

    • Mobile WooCommerce Support
    • Full Retina supported.
    • Revolution Slider +15$ Value
    • WordPress 3.6.x Supported
    • Localization Ready / Multilingual ( po/pot files )
    • Perfect Mobili Mobile Admin Options Panel ( See listed features below )
    • Tutorial Videos on Help Documentation
    • Mobili Theme Customizer
    • WMF Shortcodes Plugin
    • WMF Framework Plugin (Flex Slider & Gallery/Portfolio Plugin)
    • 2 Side Menu like Facebook Menu
    • Clean, Modern Design can be used for any type of website
    • Support desktop site view. And mobili mobile template can work as desktop site.
    • Built with HTML5 and CSS3
    • Includes Font Awesome Icons (fonticon)
    • 2 Level accordion menu.
    • Upload Custom Background
    • Vimeo and Youtube and major video sites support
    • Soundcloud supported
    • Perfectly work with 3rd party plugins
    • Awesome Tab, Toggle, Typography
    • 1 – 4 column portfolio, gallery pages.
    • Perfect blog system. You can add category or single blog in to the menu page. Also all default post formats supported.
    • Working Twitter Feed Page (Shortcode)
    • Mobili Social Widget
    • Contact Form 7 Plugin
    • Working Contact form with validation
    • Cross Browser support
    • All fields on options panel are well commented
    • For Mobiles, iPhone & iPad Add Home Bubble
    • Extensive Documentation included.
    • Auto updates.
    • Excellent Customer Support
    • and much more …

    iPad, iPhone, Android, Windows Phone 8 TESTED !

    Need Support, We Got You Covered

    We will be happy give support to you. We care about your theme just as much as you do. We want to make your life easier and make you happy about choosing our themes. If any problem you have about our theme don’t hesitate to contact us.

    Demo images not included design. Sources on help document below the credits

    You can find update list by clicking this link