Ads 468 X 60

HEXY Landing Page Theme Landing Pages Marketing

Marketing – HEXY – Landing Page Theme | ThemeForest


HEXY Landing Page Theme Landing Pages Marketing his title this type of Marketing/LandingPages This time I will review,made by TonyBogdanov, Marketing/LandingPages is sold at a price of $10 in themeforest.

HEXY - Landing Page Theme - Landing Pages Marketing

agency // app // business // clean // coming soon // css3 // digital agency // flat // html5 // landing // landing page // modern // responsive // retina // single page //









































Created10 September 13
Last Update10 September 13
Columns4+
Compatible BrowsersIE9, IE10, Firefox, Safari, Opera, Chrome
Compatible WithBootstrap 2.3.x, Bootstrap 2.2.2, Bootstrap 2.2.1, Bootstrap 2.1.1, Bootstrap 2.1.0, Bootstrap 2.0.4, Bootstrap 2.0.3, Bootstrap 2.0.2, Bootstrap 2.0.1, Bootstrap 2.0
DocumentationWell Documented
High ResolutionYes
LayoutResponsive
ThemeForest Files IncludedHTML Files, CSS Files, JS Files, PHP Files




About HEXY


HEXY is a Retina Display Ready Responsive Landing Page Theme built with HTML5 & CSS3. It is perfect for presenting a digital agency, app page or the future launch of a web site or any other service.


Theme customization is extremely easy even for non developers and is fully described in the included documentation.


Template features



  • Retina Display Ready graphics

  • Responsive layout

  • Built with Twitter Bootstrap

  • Google Web Fonts

  • Modern flat style design

  • Beautiful social icons

  • Awesome scroll effects

  • Normal & Parallax versions

  • Unlimited color variations

  • 6 predefined color schemes

  • 3 hover animation effects

  • Responsive portfolio lightbox

  • Subscribe form which can

    • Save addresses in a txt file

    • Send addresses on an user defined e-mail



  • Twitter feed

  • Flickr feed

  • FontAwesome icons

  • Well organized & documented

  • Easily customizable

  • Modern HTML5 with sleek CSS3 animations

  • Compatible with most modern browsers (IE9+)


Responsive Layout


This template is designed to be fully responsive on any screen size & resolution. It will look great on any Desktop, Tablet or Smartphone and will have stunning crystal clear graphics for any Retina Display devices. You can test the responsiveness of the theme on www.responsinator.com.


Heads up!


All images used in the preview & screenshots are NOT included in the download package. They are replaced with a placeholder images with the original dimensions and format, which can easily be replaced by the user. All assets used in the preview are freely distributed for non commercial use under the Creative Commons license.


Changelog


1.0 – Initial release


This is the initial release of this theme.


Assets


Download package files



  • ./Documentation – Documentation folder (open index.html)

  • ./Template – HTML template folder


Used fonts



  • Ubuntu

  • Roboto

  • Roboto Condensed

  • Open Sans Condensed


Predefined color schemes



  • Green – #2dcb73

  • Blue – #00cae9

  • Red – #e74c3c

  • Purple – #b32e67

  • Yellow – #ffd200

  • Black – #000000


CSS assets



  • Twitter Bootstrap 2.3.2

  • FontAwesome

  • Nivo Lightbox


JavaScript assets



  • jQuery 1.10.1

  • jQuery scrollTo 1.4.3.1

  • Twitter Bootstrap 2.3.2

  • Modernizr 2.6.2 (custom)

  • Retina.js 0.0.2

  • Skrollr 0.6.11

  • Nivo Lightbox 1.0



Related produck This user:TonyBogdanov


Invade - Responsive Retina Ready Coming Soon Theme - ThemeForest Item for Sale Coral - Responsive Coming Soon Theme - ThemeForest Item for Sale Phoci - Responsive Photography Coming Soon Theme - ThemeForest Item for Sale Creatica - Error 404 Template - ThemeForest Item for Sale Resume - Responsive Portfolio / VCard Template - ThemeForest Item for Sale Creatica - Coming Soon Template - ThemeForest Item for Sale



More items by TonyBogdanov


Read more

MailHub

PHP Scripts – MailHub | CodeCanyon


MailHub his title this type of PHPScripts/Miscellaneous This time I will review,made by christophdb, PHPScripts/Miscellaneous is sold at a price of $8 in themeforest.

MailHub - CodeCanyon Item for Sale

attachment // custom // html // mail // mailer // php // plain //





























Created9 September 13
Last Update9 September 13
Compatible BrowsersIE6, IE7, IE8, IE9, IE10, Firefox, Safari, Opera, Chrome
Software VersionPHP 4.x, PHP 5.x, PHP 5.0 – 5.2, PHP 5.3, PHP 5.4, PHP 5.5
High ResolutionNo
Files IncludedPHP

More Info…MailHub ..



Usage of MailHub


On basically all my webprojects I have to send emails to somebody. The users wants to get a new password or I want to send a confirmation or an error report to a specific email address. Of cause you simply could use the mail function of php but as soon as you want to send HTML mails or mails with an attachment it becomes a little bit tricky. Also if you need some dynamic error reporting…

Therefore I wrote this “MailHub class” to reduce the necessary time to develop email notifications. Usually I define a set of emails with placeholders and replace the placeholders dynamically. In this way I am very flexible and can implement email notifications within seconds.

I created some examples to show you how easy you can use this PHP class. The source code should enable you to boost your learning curve of this class functions. In the end there is a complete list of the public functions of this class.

I hope this class saves you a lot of time so you can focus on the real challenging programming tasks.


Features



  • “MailHub” is simple and flexible

    – send mails within seconds

    – define mail templates and send them easily

    – test it out

  • Plain or HTML e-Mails

  • simple placeholder replacement for customized mails

  • easy template defination and usage

  • supports multiple attachments

  • simple debugging

  • check out the demo at http://www.bigtoe.de/demo/mailHub


Public functions of “MailHub”



  • setTo( string $email [, string $name = false] )

    define a recipient of the mail (Use the function multiple times if you want to define multiple recipients)

  • setCC( string $email [, string $name = false] )

    define a emailadress (with or without a name) that should receive the mail on cc: (Use the function multiple times if you want to define multiple recipients)

  • setBCC( string $email [, string $name = false] )

    same like setTo or setCC only for blind carbon copy (BCC)

  • setFrom( string $email [, string $name = false] )

    define the email (and the name) from the sender of the mail.

  • setBody( string $body )

    define/load the body of the email.

  • setSubject( string $subject )

    define/load the subject of the email.

  • setMailType( string $type )

    choose between plain or html email type. If you choose html type you have to define the SMTP values in the mailhub_class.php. Default value is plain.

  • replacePlaceholders( array $replacements )

    This function could be used to replace placeholders in the mail body. Placeholders are always text snippets surounded with an opening # and an ending # (like #surname#). See the examples to get a feeling of the usage.

  • addAttachment( string $file )

    you can use the addAttachment function in two ways to add an attachment to the email (could be used with plain and html mails):

    – either you add a relative path like “logo.png” or

    – you enter the name value of an input field (input type=’file’ name=’xxx’).

  • debug()

    use debug to get further information or to search for errors.

  • sendMail()

    this function sends the mails.

  • send()

    use this function to check if the mails were send out correctly. send() will returns true or false and you can print a success or failure message based on that information.


Please help me


If you are going to rate the script less than 5 stars, please tell me what I can do to make it 5 stars for you and I will fix it. I would love to hear your suggestions on how I could improve the script, leave me a comment or send me an email and your suggestion might make it in to a future version!



Related produck This user:christophdb


Forms and Validation - CodeCanyon Item for Sale Vacation and Travel Management Tool - CodeCanyon Item for Sale Translate PHP class - CodeCanyon Item for Sale File Protect - CodeCanyon Item for Sale





More items by christophdb


Read more

jQuery Wah-Menu

JavaScript – jQuery Wah-Menu | CodeCanyon


jQuery Wah-Menu his title this type of JavaScript/Navigation This time I will review,made by NuvuScripts, JavaScript/Navigation is sold at a price of $12 in themeforest.

jQuery Wah-Menu - CodeCanyon Item for Sale

Entypo // docking // hide // icons // jquery // menu // nav // navigation // plugin // pull // push // sub-menu //

























Created9 September 13
Last Update9 September 13
Compatible BrowsersIE9, IE10, Firefox, Safari, Opera, Chrome
Software VersionjQuery
Files IncludedJavaScript JS, HTML, CSS




Wah-Menu – Pushing/Dockable Side Menu Navigation Plugin for jQuery


Features



  • Easy to use.

  • Works on any page.

  • Perfect for Ipad navigation.

  • Docking main menu – push/show sub-menu.

  • Sub-menu fully scrollable.

  • Custom scrollbars on sub-menu containers.

  • Accent selected and tooltip colors.

  • One level media sub-menu items.

  • Dock menu on page load to give the user more page room.

  • Social media icons.

  • 230+ Entypo Icons used for menu icons.

  • Submenu header and descriptions.

  • Custom menu logo area that resizes on window resize.

  • Same Great Support!


Credits: Custom Scrollbars http://manos.malihu.gr/jquery-custom-content-scroller/


Entypo Font Icons: “Entypo pictograms by Daniel Bruce — www.entypo.com”


PowerTip – v1.2.0 – 2013-04-03 http://stevenbenner.github.com/jquery-powertip/ Copyright© 2013 Steven Benner (http://stevenbenner.com/). Released under MIT license. https://raw.github.com/stevenbenner/jquery-powertip/master/LICENSE.txt


ImagesLoaded: developed by Tomas Sardyha @Darsain and David DeSandro @desandro.


Known bugs: Safari (Desktop) – Icons not showing up, animations not working Opera (Desktop)- Paddings off for icons Chrome (Desktop) – Social Icons not showing.



Related produck This user:NuvuScripts


Wordpress Wobble Gallery - CodeCanyon Item for Sale TableLite WordPress Post Media Gallery - CodeCanyon Item for Sale MooFolio Portfolio Gallery Plugin - CodeCanyon Item for Sale Wordpress Toggle-It - CodeCanyon Item for Sale Chalkboard Pro - HTML5 Painting App - CodeCanyon Item for Sale Wordpress toFullscreen Plugin - CodeCanyon Item for Sale oVoGallery - WordPress Dynamic Post Gallery - CodeCanyon Item for Sale


More items by NuvuScripts


Read more

Oceania PSD Template Creative PSD Templates

PSD Templates – Oceania PSD Template | ThemeForest


Oceania PSD Template Creative PSD Templates his title this type of PSDTemplates/Creative This time I will review,made by ser-html, PSDTemplates/Creative is sold at a price of $10 in themeforest.

Oceania PSD Template - Creative PSD Templates

grayscale // image background // marine // ocean // sea // ship // texture // transperant // white sand //





























Created9 September 13
Last Update9 September 13
Graphics Files IncludedPhotoshop PSD
Layered?Yes
Minimum Adobe CS VersionCS3
Pixel Dimensions1280×4305




Oceania clean modern multipurpose PSD template suitable for your Business,Portfolio,Creative Agency websites.Oceania use 960 12 col layout and include 10 full layered PSD files


Pages


  • 01_Home

  • 02_Home_Alter

  • 03_About_Us

  • 04_Blog

  • 05_Blog_Single

  • 06_Portfolio_Style_01

  • 07_Portfolio_Style_02

  • 08_Portfolio_Style_03

  • 09_Portfolio_Single

  • 10_Contact


Fonts

Roboto-Google web font


Icons

WPZOOM_Developer_Icon_Set


brankic-social-media-widget


Images

www.flickr.com/photos/simon-bouchard


Shell on a rock


woman yoga beach


Attractive brunette thinking


Note:Images are used only for preview purposes and are not included in the download files.



Read more

Buler A Rugged Ecommerce / WooCommerce Theme WooCommerce eCommerce

WordPress – Buler – A Rugged Ecommerce / WooCommerce Theme | ThemeForest


Buler A Rugged Ecommerce / WooCommerce Theme WooCommerce eCommerce his title this type of WordPress/eCommerce/WooCommerce This time I will review,made by gljivec, WordPress/eCommerce/WooCommerce is sold at a price of $55 in themeforest.

Buler - A Rugged Ecommerce / WooCommerce Theme - WooCommerce eCommerce

bold // ecommerce // light // minimal // multi color // multiple skins // music // responsive // rugged // shop // shopping // store // video // woocommerce // wordpress ecommerce //

















































Created9 September 13
Last Update9 September 13
Columns1
Compatible BrowsersIE8, IE9, IE10, Firefox, Safari, Opera, Chrome
Software VersionWordPress 3.6, WordPress 3.5
Compatible WithWooCommerce 2.0.x
DocumentationWell Documented
High ResolutionNo
LayoutResponsive
ThemeForest Files IncludedHTML Files, CSS Files, JS Files, PHP Files, PSD
Widget ReadyYes





BETTER VIEW (RESPONSIVE VIEW) – CLOSE THE IFRAME


If you want to see the site in the responsive version (like on an Iphone) make sure you close the iframe.


Theme is viewed best without the IFRAME, so either close it with the close frame button or view the Theme here:


http://buler.premiumcoding.com/


BULER – BOLD ECOMMERCE THEME DESCRIPTION


buler is a premium responsive Ecommerce WordPress Theme with a clean and fresh Design and innovative AJAX loading of Posts and Portfolio items (you can turn this on and off on demand with one click in Page Builder.


MAIN FEATURES



  • AQUA PAGE BUILDER (DRAG & DROP) with a lot of custom modules

  • REVOLUTION SLIDER

  • WOOCOMMERCE INTEGRATION

  • IOS SLIDER

  • AJAX LOADING OF PROJECTS & POSTS (on front page – can be turned on and off)

  • UNLIMITED COLORS


buler is the most highly premium and most advanced WordPress Theme we have ever created. It is very flexible, with a clean & crisp design and is suitable for any kind of business. It features a premium Page Builder which will make your life a lot easier when creating new Pages for your Site.


Theme comes with a Revolution Slider which is the best selling Premium WordPress Plugin for creation of Slideshows. It is one of the most advanced and highly customizable slideshows ever created. See the heaps of custom transitions/animations for each object on the page! Customize this slider with our convenient drag&drop backend to your very needs. This is an extra $15 of value (price of the plugin)


Theme also utilizes a unique and premium drag & drop IOS Slideshow which can be seen on the live preview (Home with IOS Slideshow). It will give your store a fresh and unique look.


PSD Files


PSD files are included in the files for download.


Buler Ecommerce WordPress Theme Features



  • 3 built in sliders (Revolution Slider, IOS Slider and Nivo Slideshow)

  • AQUA PAGE BUILDER

  • Google Web Fonts

  • WOOCOMMERCE INTEGRATION

  • AJAX LOADING OF PROJECTS & POSTS (on front page – can be turned on and off)

  • WPML Plugin support for extra languages

  • Video, Gallery, Audio, Standard and Link Posts Templates

  • Revolution Slider

  • Clean & Crisp Design

  • CSS3 Features and Animations

  • Detailed written help file

  • Full Width Google Maps Contact Page

  • +70 shorcodes with easy shortcode generator.

  • Use your custom logo and favicon icon.

  • Several home page layouts (fullwidth slideshow, nivo slideshow, category home page and portfolio home page).

  • 3 portfolio page layouts (2,3,4 columns)

  • Unlimited Home Page Templates

  • 5 Post Templates (Standard, video, link, gallery, audio)

  • Filterable portfolio items.

  • Team Page


AJAX LOADING


buler is using an advanced AJAX loading of the Projects and Posts on the front page. If you click on one of the Projects it will open live on the Front Page. From there you can choose to either close it or read it in full details (user will then be taken to the single static page of the recent Project or Post). With this functionality a user can easily check all the Projects and recent Posts without leaving the Home Page.


AQUA PAGE BUILDER


Aqua Page Builder is a powerful WordPress plugin that allows you to create an unlimited number of template variations for use in your WordPress themes. It follows the same user interface used by the Menus & Widgets admin pages – making you feel right at home with the UI. Similar to the Widgets &amps Menus, Aqua Page Builder features the drag and drop interaction to build its templates. Since its official release over 3 months ago, Aqua Page Builder plugin has received over 10000 downloads across the globe. If you don’t know what Aqua Page Builder (henceforth AQPB) is, then I’d recommend you to watch this short video which demonstrates some of its awesome features.


http://www.screenr.com/iI87


Below is the screenshot that best demonstrates how easy it is to create new Templates with the Aqua Page Builder.




THEME’S ADMINISTRATION PANEL


buler has a convenient Administration panel which provides tons of options to manage and modify any aspect of the theme – it is well suited for both beginners with no coding knowledge and developers.


The Theme comes with a plethora of options so you can modify layout, styling, colors and fonts directly from within the backend of your WordPress Theme. You can choose any color you want to be the Theme’s leading color (you can see 8 examples in our preview).


The theme allows you to change all the main colors of the Theme (background color for titles, color of title fonts, color of hover elements, color of shadow used on text) along with the background. This means that you can change all the colors and looks of the theme with just a few clicks.



REVOLUTION SLIDER


Create a responsive(mobile friendly) or fullwidth slider with must-see-effects and meanwhile keep or build your SEO optimization (all content always readable for search engines). See the heaps of custom transitions/animations for each object on the page! Customize this slider with our convenient drag&drop backend to your very needs. This plugin features tons of unique transition effects, an image preloader, video embedding, autoplay that stops on user interaction and lots of easy to set options to create your own effects. Some video Tutorials to help you get started with the Slideshow. Also please note that you will get the demo txt file to recreate the same Slideshow as in Live preview in seconds:


VIDEO TUTORIALS



  • Slider Installation & First Steps http://www.youtube.com/watch?v=cVleysEPHM4

  • Frontend Walkthrough http://www.youtube.com/watch?v=J9FroPmOLT0

  • Easy Slider Creation http://www.youtube.com/watch?v=fCgspm_GaP8


Four different blog pages will give you the opportunity to choose the style that you prefer. You can choose from a standard blog, a minimalistic blog and a blog designed to look like portfolio.


Unlimited home pages will allow you to present your site in a way suited for your company. Simply create any kind of Home Page with the Aqua Page Builder.


FAQ


We also have an ever growing FAQ section with new Answers added as more questions arise:


FAQ section of buler


Support for Buler Ecommerce WordPress Theme


Our new support portal just went live. You will find knowledgebase, faq and new forums. Link to the portal: http://themesupport.premiumcoding.com Make an account with your Envato login name. Choose your password and enter your purchase code. Below is a tutorial for registration: http://themesupport.premiumcoding.com/kb/registration-on-premiumcoding-support-portal/ For General inquiries go to General section of the forum and post your questions / suggestions about our Themes and plugins. You can also find demo content in our forum.


Check our Ecommerce WordPress Themes


Adamas – Responsive WordPress WooCommerce Theme




Camy – Responsive WordPress WooCommerce Theme




Musica – Responsive WordPress WooCommerce Theme




Mercor – Responsive WordPress WooCommerce Theme




Emporium – Responsive WordPress WooCommerce Theme




Mercor – Responsive WordPress WooCommerce Theme




WordPress Business Theme: Elegantica




Daedra – Responsive Portfolio WordPress Theme




Drupal Version of Elegantica




Responsive Business WordPress Theme: Equipe




Creative Full width Blog WordPress Theme: Darx




Creative Blog WordPress Theme: Fashy




Creative Blog WordPress Theme




HTML version of Radial




HTML / CSS version of RetyX Template




PSD Template of RetyX Template




Facebook Fan Page Themes




WordPress Fading Menu with Notification Bar




WordPress Events Calendar




WordPress Accordion Slideshow




WordPress 3D Banner Rotator with Statistics




First version of accordion image rotator




Facebook flash photography template


Images in previews are not available for download and are only used in previews.





CREATIVE BANNER ROTATOR WITH THUMBS AND CAPTIONS




Related produck This user:gljivec


Bullsy - A Rugged & Bold Responsive Blog Theme - ThemeForest Item for Sale Gothica - A one Page Template in Goth Style - ThemeForest Item for Sale Adamas - Responsive Ecommerce WordPress Theme - ThemeForest Item for Sale Revenant - Responsive Business WordPress Theme - ThemeForest Item for Sale Rock Palace - a Responsive Music HTML Theme - ThemeForest Item for Sale Micka - a Responsive Blog WordPress Theme - ThemeForest Item for Sale Camy - Clean Responsive Ecommerce WordPress Theme - ThemeForest Item for Sale


More items by gljivec


Read more