Tag: mobile

  • Charisma Top rate Cellular Theme (Cellular)

    Charisma Top rate Cellular Theme (Cellular)

    AURA Mobile Theme is created with full customizable theme system. While coding this template we try to give you better mobile experience. Aura 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 Aura Mobile Theme. Our mobile theme is support image icons & font icons with unlimited color variations. You can use mobile retina icons which we already included with FontAwesome & 370 image icons.
    Please preview with your mobile phone or tablet for better view and see retina features… Admin screenshots in to the screenshots section.

    Mobile Theme Features

    • Full Retina supported.
    • WordPress 3.5+ Supported
    • Localization Ready / Multilingual ( po/pot files )
    • Perfect Aura Mobile Admin Options Panel ( See listed features below )
    • Tutorial Videos on Help Documentation
    • Integration video tutorial for how to integrate with your existing site.
    • WMF Shortcodes Plugin
    • WMF Framework Plugin (Flex Slider & Gallery/Portfolio Plugin)
    • Left button menu with swipe feature & unlimited color use.
    • Supports Icon Images & Fontawesome Icons
    • 370 fontawesome Icon Image (Black/White) added to the package.
    • Clean, Modern Design can be used for any type of website
    • Support desktop site view. And Pinas mobile template can work as desktop site.
    • Built with HTML5 and CSS3
    • Includes Font Awesome Icons (fonticon)
    • Custom Menu Icons Supported
    • 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)
    • Contact Form 7 Plugin
    • Cross Browser support
    • All fields on options panel are well commented
    • For Mobiles, iPhone & iPad Add Home Bubble
    • Extensive Documentation included.
    • Auto updates.
    • Child Theme Support.
    • Excellent Customer Support
    • and much more …

    iPad, iPhone, Android TESTED !

    You can find updates on this link

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

  • inCreate – Responsive MultiPurpose WordPress Theme (Company)

    inCreate – Responsive MultiPurpose WordPress Theme (Company)

    twitter

    inCreate – An Elegant Responsive Multipurpose WordPress Theme

    inCreate allows you to create stunning responsive websites. Here’s a brief list of some features. Don’t forget to check out all demo pages!

    Some Features










    Features Overview

    • Visual Composer Page Builder
    • Translation ready with mo/po files
    • WPML plugin ready:WPML Plugin, in case your business needs a multi language site
    • Responsive Layout that addapts to smaller devices (tested on iphone, ipad, etc)
    • Highly Customizable!
    • Slider Revolution included ($15 Value)
    • Revolution slider
    • Lots of functionalshortcodes
    • 600+ google fonts
    • 700+ font awesome icons
    • Ability to change the sidebar alignment to left/right or disable it generally and page/post specifically.
    • 10 Custom widgets
    • Video Support: Supports Videos from any major video hosting service
    • Unlimited Color Options with Backend Color Picker.
    • Custom unlimited sidebars for each page, post, or portfolio entry
    • Unlimited portfolio pages
    • Contact Form 7 Ready
    • SEO Optimized
    • Typography options, choose custom google fonts for navigation, sidebar heading, body, and headings.
    • Child theme support for easy customization, that is not affected by theme updates.
    • 15 PSD file included
    • DEMO Content included
    • Professionl support
    • Extensive Help file

     

    Resources

    Note: Demo photos are mostly purchased for our demo only. They’re not included.

  • 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.
  • Enjoyable Captcha wordpress Plugin (Varieties)

    Enjoyable Captcha wordpress Plugin (Varieties)

    Support at codstack.com

    Fun Captcha WordPress Plugin

    This is a WordPress Plugin by which you can easily and visually implement and manage some captcha codes in four different fun and game like captcha models for your wordpress websites

    Features:

    • Well documented
    • Easy to use and manage
    • All screen devices
    • All browsers support
    • Four different models
    • In 3 sizes ( small, medium, large )
    • Touch, drag & drop events
    • Specially compatible for Login, Register, Lost Password or Comments of your wordpress forms

    Please see the screenshots

  • Pinas Top rate Cell Theme (Cellular)

    Pinas Top rate Cell Theme (Cellular)

    Pinas Mobile Theme is created with full customizable theme system. While coding this template we try to give you better mobile experience. Pinas 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 Pinas Mobile Theme. Our mobile theme is support two level bottom menu. You can use mobile retina icons which we already included with FontAwesome.
    Please preview with your mobile phone or tablet for better view and see retina features…

    Mobile Theme Features

    • Full Retina supported.
    • WordPress 3.5+ Supported
    • Localization Ready / Multilingual ( po/pot files )
    • Perfect Pinas Mobile Admin Options Panel ( See listed features below )
    • Tutorial Videos on Help Documentation
    • Pinas Theme Customizer
    • WMF Shortcodes Plugin
    • WMF Framework Plugin (Flex Slider & Gallery/Portfolio Plugin)
    • Bottom Menu with 2 level submenu support.
    • Top Slide Menu for Share Buttons
    • Clean, Modern Design can be used for any type of website
    • Support desktop site view. And Pinas mobile template can work as desktop site.
    • Built with HTML5 and CSS3
    • Includes Font Awesome Icons (fonticon)
    • Custom Menu Icons Supported
    • 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)
    • Contact Form 7 Plugin
    • 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 TESTED !

    You can find updates on this link

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

  • The Galaxy WordPress – Responsive Multi-Objective Theme (Company)

    The Galaxy WordPress – Responsive Multi-Objective Theme (Company)


    The Galaxy is a Responsive Retina-Ready HTML5 / CSS3 (Desktop, tablet, mobile phone…) template. Simple, clean and professional. It is suitable for multipurpose websites such as business (shop / catalog / ecommerce), company, portfolio or blog. It is superbly responsive adapting to any kinds of phones or tablets. Code is easy to modify and understand so you can personalize it in the easiest way.

    Theme Features:

    • Fully responsive and optimized for mobile devices. Designed for large desktops / small desktops / tablets / phones (landscape and portrait modes).
    • Well-documented
    • Powerful admin panel
    • Premium support. We will not leave you alone if you faced a problem
    • 10 skins included
    • Unlimited number of page layouts with layout builder. Create custom layout with only couple of clicks
    • Awesome layered slider ( $15 included at theme’s value )
    • Custom post types to store different types of your content: slides, photo albums; portfolio; catalog; video; pricing tables; team; benefits; testimonials; partners, clients, etc.
    • Custom post formats support: Aside; Gallery; Link; Image; Quote; Status; Video; Audio; Chat
    • Ajax filtering for portfolio and photo albums
    • 4 pre-defined homepage layouts ( Standard / Business / Portfolio/ Parallax)
    • 33 layouts for each post type
    • 3 Pagination style (AJAX pagination supports browser history)
    • Widgetized and simple footer
    • Visual Pricing Tables editor included
    • A lot of shortcodes + Visual Layout Builder + Visual Homepage Builder. You can create any layout with few clicks.
    • Unlimited widget areas
    • Translation ready
    • Supports WooCommerce
    • Native Social Networks support. Login / SignUp with Google / Facebook account
    • 53 widgets (25 custom widgets, 15 woocommerce, 12 standard wp widgets)
    • Lots of social icons
    • Iconic fonts: Font Awesome and IcoMoon Ultimate ($59 included at theme’s value)
    • Native comments and posts likes
    • Highly customizable menu (set icon to any menu item, mega menu support, control displaying menu items at different devices).
    • 629+ font families from Google Fonts (and counting).
    • Captcha for comments and contact form
    • Maintenance and Coming Soon mode
    • PHP MVC code, easy to extend
    • HTML5 and CSS3. Comfortable with LESS? We support it
    • SEO-friendly markup
    • Full native Retina Displays support
    • HTML Version & PSD included (save $15)
    • Mail Chimp native integration
    • One-Click demo data installation
    • Awesome Visual Effects
    • 6 Variations of header and Sticky Menu
    • 100% compatible with Gravity Forms

    Please rate us if you really liked this theme! It would be very helpful for us!

  • Trego – Multi Function Ecommerce Theme (eCommerce)

    Trego – Multi Function Ecommerce Theme (eCommerce)

    Trego is a Premium Responsive WordPress/Woocommerce theme with advanced admin module. It’s extremely customizable, easy to use and fully responsive. Suitable for every type of store. Great as a starting point for your custom projects.
    Using Trego – WordPress theme, you can quickly show their best products and brands in main page. Trego is extremely beautiful on mobile devices.

    EternalFriend provides only Premium ecommerce products, guarantee regular update and top quality speed.
















    Main Features

    • WordPress 3.8 Ready!
    • Responsive & Retina Ready
    • Unlimited Color Options
    • Only free Google Fonts over 300
    • Easy Install Sample Data
    • Various Category Banners
    • 7 Homepage Layouts
    • Revolution Slider($15 value)
    • Touch Friendly for all Mobile Devices
    • Integration with Cloud Zoom
    • Browser Compatibility(IE8+, Firefox, Chrome, Safari, Opera)
    • $10 value PSD files Included
    • Social Bookmarks for Products
    • “New” and “Sale” Product Labels
    • Customizable Product Image Ratio
    • Nice Price Slider
    • SEO Friendly
    • Mega Menu
    • Flexsible Menu functionality
    • Change Image on Hover
    • Fast Support & Regular Updates

    Updates

  • Liquida –  Responsive MultiPurpose WordPress Theme (Company)

    Liquida – Responsive MultiPurpose WordPress Theme (Company)

    Themeforest content title

    Liquida is a clean, powerfull & multipurpose wordpress theme that can be used to build professional and modern websites. You can set your colors, change fonts, background patterns & the layouts in different pages.

    Also it comes with 5 default homepage, 6 blog layouts and 6 ready-make skins that you can combine.

    It has included the LayerSlider ($15 value), Visual Composer ($25 value), and CSS3 Web Pricing Tables Grids settings ($55) which have saved $55 for you.

    Themeforest content 1Themeforest content 11Themeforest content 2Themeforest content 3Themeforest content 4Themeforest content 5Themeforest content 5-bThemeforest content 6Themeforest content 7Themeforest content 10Themeforest content 9Themeforest content 8Themeforest content end

  • Neutrino – Multi-Function WordPress Theme (Inventive)

    Neutrino – Multi-Function WordPress Theme (Inventive)

    Neutrino is a very powerful, easy to customize, modern, professional and flexible fully responsive retina-ready WordPress theme, developed with great attention to details. Theme which suits users with no programming knowledge as well as advanced developers.

    The theme comes with plenty of options so you can modify layout, colors, fonts and disable or enable all features directly from within the admin panel.

    You can use it as any type of website: business, corporate, portfolio, shop, marketing, etc.

    Few Key Features

    • Mobile Optimized – Just Responsive isn’t good enough
    • Off Canvas Navigation + normal
    • 524 Portfolio Combinations
    • Extensive Theme Options
    • Unlimited Color Variations
    • Boxed and Wide Layouts
    • Support for Woocommerce and bbPress
    • Shortcodes
    • Retina Ready Design
    • SEO Optimized
    • 650+ Retina ready icons
    • Support for Post Formats
    • Child Theme Ready

    Credits

    The sample images viewed in the live preview are for demo purposes only and are not included with your purchase. These images are courtesy of:

    Vincent Boiteau,
    abelisce,
    Anka Nevasilyeva,
    Benjamin Galli,
    Crysco Photography,
    Lies Thru a Lens,
    Leather fashion fashionista,
    Oveth Martinez,
    Robert Bejil Photography,
    Salvaje,
    NASA Goddard Space Flight Center,
    Dave Fayram,
    Jens karlsson,
    deanoakley ,
    Johan Larsson,
    Kenny Louie,
    mark sebastian,
    Morgan,
    Rob Boudon,
    Huy Tran,
    Jon Ashcroft,
    Daniel Zedda,
    pixabay.com,
    pixeden.com,
    picjumbo.com

  • NewHosting – Responsive Webhosting WordPress Theme (Know-how)

    NewHosting – Responsive Webhosting WordPress Theme (Know-how)

    Please don´t forget to rate it!




    Please note: We provide support in English, Spanish and French.

    Theme Description

    New Hosting is a responsive WordPress template perfect for use in your bussiness. It is specific for hosting websites, contains most of the pages that may contain a site of this type

    Features

      • Modern Design WP
      • Valid HTML5 & CSS3 Code
      • Responsive Layout
      • High Resolution
      • based on Bootstrap 3.0
      • Clean And modern
      • Font Awesome More Icons
      • Gogole Fonts
      • CSS3 Animations
      • Mailchimp Working
      • Support Theme child
      • import demo content
      • WHMCS integration
      • Unique Design
      • Easy to Edit
      • Well Documented and Organized
      • Advanced Option Panel
      • Easy to Edit with a Option Panel
      • Different backgrounds
      • Sending mail via php.
      • Extensive and quick support

      Contains these pages

      20 Html Pages

      • Home
      • About us
      • Services
      • More services
      • Online Store
      • Standar Server
      • Professional Server
      • Advanced Server
      • Unlimited Server
      • Blog page
      • Single post
      • Categories page
      • Tags page
      • Search page
      • Pricing table
      • Support
      • Error page
      • Contact us

      Layer for Siderbar

      • Sidebar Right
      • Sidebar Left
      • full Width

      Zip File Contents:

      • WordPress Newhost theme
      • social media icons
      • Documentation
      • Plugins

      Zip File do not Contents:

      • Images in live preview are not included to the template.

      Changelog

      • Version 1.0 –06/12/2013
                Initial Release
                

      Sources & Credits

      Demo images

      Support

      if you have any question or you need support , please post your questions or suggestions in item’s discussion board or email us at
      support@freedesigns.me

      We usually get back within 24 hours . We try to give our customers the best support posiible . Please if you need any help , let us know.