The Optimized WordPress Sidebar

According to the WordPress Code

The sidebar is a narrow vertical column often jam-packed with lots of information about a website. Found on most WordPress sites, the sidebar is usually placed on the right or left-hand side of the web page, though in some cases, a site will feature two sidebars, one on each side of the main content where your posts are found.

Historically, the main purpose of the sidebar has been to provide navigation assistance for the visitor – a function that commonly continues to the present day. These navigation aids are designed to help people move about your site and find the information you want them to see. The list of navigation items includes Categories, Pages, Archives, and even the most recent posts. Another navigational tool you’ll see in the sidebar is a search form to help people find what they are looking for on your site.

The first information in the standard WordPress installation is a list of Pages or Categories. Listing Pages helps the visitor find more information about your site, like About, Contact, Register, or Site Map. The information displayed in the sidebar is controlled by your Theme’s Template sidebar.php file.

Rethinking your Sidebar

Next to the menu navigation, the sidebar is your virtual signpost pointing the way to exactly where you want to direct your traffic. It acts like a target board of links where you deliberately shoot your traffic towards. That’s why you need to give careful thought to what goes into your sidebar. Every link should be strategic…optimized. Populating the sidebar with useless links that have no value to your users nor to your ranking is a waste of virtual real estate.

Left? Right? Nowhere in sight?

Tired of the left-right sidebar configuration/ Did you know that you can add sidebars to your theme other than the usual left-right configuration? You can actually put additional sidebar in a header, a footer, or any other area in your template. Additional sidebars let you place any WordPress Widget (such as Recent Posts, Pages, Links/Blogroll, Calendar, Tag Cloud, as well as any custom widgets) into new areas of your WordPress template. Check out this handy tutorial by Michael David to see how it’s done. Some content-rich sites have totally junked the sidebars or strategically relocated them as part of their branding. Whatever you decide to do with your sidebar, displayed or hidden, should be towards the goal of enhancing your user’s experience on your site while enhancing your site’s overall performance.


Breaking the WordPress Language Barrier

“The Miracle Worker” is an inspiring true story based on the life of the young Helen Keller, blind and deaf since infancy, and her gifted teacher Miss Anne Sullivan. The film revolves around these two strong willed characters and the battle to overcome the obstacles that prevent Helen’s ability to communicate. Because of the strong and yet loving persistence of Miss Sullivan, Helen overcame. The language and communication barrier broke and Helen learned how to speak. How did it happen?

The “miracle” in The Miracle Worker occurs when Sullivan and Keller are at the water pump refilling a pitcher. It is at this moment that Keller makes the intellectual connection between the word Sullivan spells (using sign language) into her hand and the tangible substance splashing from the pump. Keller demonstrates her understanding by miraculously whispering “wah-wah”, the baby talk or gibberish equivalent of “water”.
source: Wikipedia

Many of us can probably relate to the struggle of making that “intellectual connection” between words and concepts especially when learning a new or unfamiliar language. Learning a new language requires an investment of time and effort. A steep price but the fruits of which is that “Aha!” moment when comprehension finally sets in and the satisfaction of knowing that the intellect and understanding have miraculously met.

For many, trying to learn the language of WordPress is a daunting thing. For the average person, it is indeed a struggle but, the good news is, it is not impossible. So what language exactly are we trying to understand?

HTML – The language of the web

Going back to our previous definition of HTML, we said that HTML, or Hypertext Markup Language, is the W3C standard language with which all web pages are built. It is the native language, the mother tongue of all other web languages – the building block from which all other web languages are built. Once we understand what it’s for, how to read it and write it, the easier it will be to understand everything else.

Let’s break it down a little bit more. The book HTML5- 24 Hour Trainer by Joseph Lowery writes:

The Internet, or World Wide Web, is essentially a network of computers. Browsers, like Internet Explorer, Firefox, or Safari, are computer programs that display web pages, which, in turn, are written in HTML. So, at its heart, HTML is the language of the Web.

As noted, HTML is an abbreviation for HyperText Markup Language. HyperText is text presented on one electronic device – whether it’s a computer, smartphone, or something else — that is connected, via a link, to other text, which could be located elsewhere in the same document, on a different page in the same website, or on an entirely different site. HyperText is perhaps the defining essence of the Internet: the ability to link from one web page to another, thus creating a web of information.

A simple hypertext system that connects raw textual content pretty much describes the earliest Internet systems. So how did we get to the rich multimedia experience that makes up much of the web today? That’s where the second half of the HTML abbreviation, Markup Language comes into play. The Markup Language part of HTML takes plain text with additional codes or tags and turns raw text into easily readable text on other electronic devices.

Lesson. Read and Write.

Here’s an example of HTML in action. Let’s say we want to send this block of text to be displayed on different browsers and it will be viewed on different devices:

ACT I. PROLOGUE.Two households, both alike in dignity In fair Verona, where we lay our scene,From ancient grudge break to new mutiny,Where civil blood makes civil hands unclean.From forth the fatal loins of these two foes A pair of star-cross’d lovers take their life; Whose misadventured piteous overthrows Do with their death bury their parents’ strife. The fearful passage of their death-mark’d love, And the continuance of their parents’ rage, Which, but their children’s end, nought could remove, Is now the two hours’ traffic of our stage; The which if you with patient ears attend, What here shall miss, our toil shall strive to mend. SCENE I. Verona. A public place.

Although all the information you need to convey is contained here, it’s a struggle to understand the meaning because it’s a big block of plain text. It would make a lot more sense if we were able to MARK IT UP in some way to indicate structure as well as communicate content. How about if we break it up into paragraphs using symbols, like this:

<p>ACT I.<p>

<p>PROLOGUE.<p>

<p>Two households, both alike in dignity In fair Verona, where we lay our scene, From ancient grudge break to new mutiny, Where civil blood makes civil hands unclean.<p>

<p>From forth the fatal loins of these two foes A pair of star-cross’d lovers take their life; Whose misadventured piteous overthrows Do with their death bury their parents’ strife.<p>

<p>The fearful passage of their death-mark’d love, And the continuance of their parents’ rage, Which, but their children’s end, nought could remove, Is now the two hours’ traffic of our stage; The which if you with patient ears attend, What here shall miss, our toil shall strive to mend.<p>

<p>SCENE I.<p>

<p>Verona. A public place.<p>

One symbol, <p>, shows where the paragraph starts and another, similar symbol, <p>, shows where it ends. Overall, it’s better and more readable, right? The problem is that everything is still on one level. Perhaps we can show the difference between a heading and a paragraph of text by using different symbols, such as an <h> for a heading and a <p> for a paragraph:

<h>ACT I.<h>

<h>PROLOGUE.<h>

<p>Two households, both alike in dignity In fair Verona, where we lay our scene, From ancient grudge break to new mutiny, Where civil blood makes civil hands unclean.<p>

Getting better, but are all headings the same? How about if we indicate the most important heading with the number 1 and a less important heading with a 2, like this:

<h1>ACT I.<h1>
<h2>PROLOGUE.<h2>

Now when a computer program, like a browser (IE, Firefox, Safari), renders this marked-up text, it strips out the MARKUP SYMBOLS (called tags in HTML) and shows the text with the appropriate styling.

ACT I.

PROLOGUE.

Two households, both alike in dignity In fair Verona, where we lay our scene, From ancient grudge break to new mutiny, Where civil blood makes civil hands unclean.

Is it starting to make a little bit more sense now? Did something break? Hopefully, a light bulb switch turned on or something clicked in your head and you’ve found your “Aha!” moment. If you have, you will start looking at html code differently. You can try reading and writing and even try to slowly interpret what all the gobbledygook means. If you haven’t figured it out yet, you can go back to the lesson, find your own text block and practice using the markup symbols we used.

More next week!


Top Themes Featured on Theme Forest

Every week, Themeforest features promising WordPress themes that are worth noticing. Here are some of the latest themes that have been featured on Themeforest you need to see. Check these out.

Forgiven – A Powerful WordPress Theme for Churches

Forgiven Premium WordPress Theme is a powerful parallax enabled church theme that includes major features such as: Visual Composer plugin, Slider Revolution, Envira Gallery, the unique and exclusive Blur Slider, support for Church Theme Content, WooCommerce support, Page customizer, Gravity Forms and Contact Form 7 support, Sermon functionality, The Events Calendar and the Events Calendar Pro plugin integration and support, and so much more.

FlatAds – Classified AdsWordPress Theme

FlatAds Classified Ads WordPress Theme is a super flexible and fully responsive Premium Directory/Listing WordPress themebuilt with HTML5 and CSS3. FlatAds is compatible with WooCommerce 2.1, bbPress, and MailChimp for WP plugin. Other key features include custom fields for categories and subcategories, interactive Google maps Geolocation support, integrated PayPal payments support, and WPML (multilingual) support.

Faculty – Responsive Academic WordPress Theme

Faculty Responsive Academic WordPress Theme is a magazine or personal blog styled page that can be used to build personal or professional websites specifically for academic people. This simple and yet well structured responsive theme is especially designed as an online cv of professors and PHD students. Key features include publications management, option to present research, teaching and blog pages, and provision for downloadable CVs for interested visitors.

KLEO – Next level Premium WordPress Theme

KLEO – Next level Premium WordPress Theme is an extremely flexible, fully customizable BuddyPress and bbPress compatible WordPress multipurpose theme to help you create a community, a corporate portfolio, or a membership website. This membership ready theme allows you to create membership levels and restrict content based on member access quite easily. key features include: WPML and Translation Ready, WooCommerce Ready, Google Maps integration, Contact Form 7 compatible, among others.

Time Travel – Timeline WordPress Theme

Time Travel – Timeline WordPress Theme is an ultra modern next generation premium theme developed with cutting edge technology and design. The built-in voice control makes it both revolutionary and at the same time super intuitive to use. You can set up your own language to be used in the voice commands control, so it is as easy as possible for your visitors. The design of the site is a 3D time travel path, ideal for displaying chronology data, posts flow by date, history info or just any type of timeline content in a modern and futuristic way.

It is ideal as a blog, a portfolio site, a corporate site aiming to display the history of company or brand, an artist’s portfolio to display albums / films / books in a chronological way, an agency website to showreel projects and team by date, etc.

Hooray – Premium WordPress Blog Theme

Hooray Premium WordPress Blog Theme is one of the most colorful and user friendly personal blog themes. Key features include: easy to use powerful Admin Panel, full Arabic RTL support, social counter integration, translation and multi language ready, page templates, review and rating system, unlimited colors and sidebars, and so much more.

Moustachey: A Blog theme with extra gusto

Moustachey Premium WordPress Theme is a fun, quirky WordPress blog theme playing on the moustache design. Key features include: Author support, social share enabled, typekit web fonts integration, adobe edge web fonts integration, Google analytics support, Google API v3 integration, configurable donate/message block at the top of the page, localization support, and so much more.


Best WordPress Themes 2021

UPDATED April 12, 2021: 2021 is sure to be another great year for WordPress Theme development. Like the millions and millions of people using WordPress, we eagerly await the Themes and Plugins to be released this year, and you can …


5 Most Popular Page Builder Plugins Roundup

Drag and drop customizations via Page Builder plugins are quite popular because of the ease it provides in creating multiple layout configurations without messing with code. There are several page builders available in the WordPress market today. Here are some of the most popular ones:

Visual Composer

Visual Composer is #1 Best Selling drag and drop frontend and backend page builder with 70k+ websites already powered. This plugin offers drag and drop page building with an intuitive user interface. What makes Visual Composer convenient is its front end page building capabilities. Visual Composer allows you to choose from 40+ different page elements or use custom shortcodes. The plugin also allows you to design your pages in a responsive way. The developers offer lifetime updates free of charge and has lots of tutorials available to help you use the plugin. The capabilities of Visual Composer may also be extended with premium add ons like Templatera or Easy Tables. You will be able to take full control over your WordPress site, build any layout you can imagine with no programming knowledge required.

Live Composer

Live Composer is a front-end WordPress page builder plugin with 28+ modules packed with functionality and styling options that allow countless variations to be made easily and without any coding. Live Composer offers front end drag and drop page building capabilities to your themes. It is designed to turn any theme into a feature packed beast. Live Composer comes with 28+ modules with easy customize options for each. Each module can be adjusted for device specific options making sure your pages look great on tablets, smartphones and desktops/laptops. You also have the option to create your own modules for specific functionality. Live Composer comes with special post types like Projects, Galleries, Downloads, Testimonials, Staff and Partners and transferring what you do on one page to another is easy with Live Composer’s Templates system.

Awesome Builder

Awesome Builder is a WordPress Drag & Drop Page Builder and shortcodes generator that offers the best solution you need to build a modern web page in the easiest way ever. This plugin widgetizes your pages allowing you to drag and drop your widgets into any section of the page. No need to create new modules. You can use existing widgets on your website. You can also use 25+ widgets included with the plugin but it will work with any widget you have. The plugin also enables a responsive layout for your pages. Awesome builder supports animation for each widget you add. Awesome Builder supports full width, background color image and video support.

Parallax One Page Builder

Parallax One Page Builder enables you to create your own one page website in just a few minutes. With this plugin you can create unlimited landing page with more features options and unlimited sections each with parallax effects as you enable. The plugin also comes with gallery and portfolio capabilities included. The first section gives you 7 slide gallery you can use with images, color or YouTube video. Each section there after can have an image, color or YouTube video as background. Plugin employs custom SEO for improving your sites web search results.

Drag and Drop Shortcodes

Drag and Drop Shortcodes is a great WP plugin with intuitive drag&drop interface and lot of elements to choose from, like: Accordions, Stats Counter, Knobs, Alert Boxes, Animation Box, Price Boxes, Progress Bar, QR Code, Service Boxes, Tabs, Team Member, Map, PayPal Buttons, Member Only Content, Tooltip, YouTube, Vimeo and self hosted HTML5 video. Drag and Drop shortcodes offer convenient page building capabilities using a highly intuitive backend interface. The plugin comes with a lot of page elements including Video, Stats Counters, Progress Charts, etc. Draggable sections and column allows you to present content as you see fit. Animation options, parallax and video backgrounds help you enliven your content even on the most boring default themes. What makes this plugin even more special is that it allows you to create your own modules with shortcodes.


WordPress Music Themes April 2014

Music fan sites are a great way to bring together people who have a common interest in a specific musician, a music genre, bands, etc. If you are thinking of putting up a website for that type of audience, here are some of the latest music themes you can check out:

Dubstep – Premium Music WordPress Theme

Dubstep is a WordPress theme for bands, musicians, DJs, clubs and everyone involved in the music or entertainment business. This theme supports every post type that a music & entertainment theme would need such as: intuitive Events Management (ability to set date, time, venue, location, and map coordinates; provision for normal and recurring events, tickets support); Discography Management (ability to share your music with fans using either self hosted audio files using the powerful soundManager2 or embedded sounds from SoundCloud); Artists Management (display an infinite number of favorite artists, colleagues, or band members (their albums, tracks, or playlists) and categorize them easily; Media Management (share videos either self-hosted or from services like Youtube, Vimeo etc. and create endless interactive custom photo galleries from your events using templates or sliders).

SoundBlast – Music Band WordPress Theme

Sound Blast Premium WordPress Theme is a WooCommerce ready theme especially designed for bands and music websites. This easy to modify theme features include: Album + Track Management (options include Now Playing, Download, Play Only, and Buy Now), Slider Management, Event Management, Gallery Management, Sidebar Management, Powerful Theme Options + Page Builder, 2 pre-made color variations.

MusicVent – Premium Music & Event WordPress Theme

MUSICVENT Premium WordPress Theme is a modern, responsive, and a well-thought out HTML5 WordPress Theme for Music & Event related Personalities/Studios. The theme’s clean Lines & minimal design approach truly highlights the artist(s) and the work(s) showcased. Its unique design and streamlined navigation makes it easy for fans, music aficionados, potential producers, talent scouts, etc., to go through the website get the information needed and take the necessary action after. The 6 built-in page templates (Albums, Artists, Events, Gallery, Bloglist, Contact) are organized and give you or users everything that is needed. Transition and animation effects like black and white photos display their full colors when hovered over. It also includes 2 homepage layout options (fullscreen image slider and fullscreen video background) to choose from according to the audience you are targeting.

RockOn – Multipurpose Music WP Theme

RockOn! Premium WordPress Theme is a WooCommerce ready multipurpose music theme for singers, artists, music bands or musical events created using Twitter Bootstrap, with a responsive design which makes it a perfect fit for all devices. This theme includes features such as: Event Management using one of the best event management plugins – WP Event Manager, 100% responsive 3D Layer Slider, Sidebar Managerusing CrunchPress “CP” framework, WooCommerce Shop Catalog Grid OR Full Layout also Masonry (Filterable), and so many other features.

NOISE – Onepage DJs & Band WordPress Theme

NOISE Premium WordPress Theme is a cool, creative and modern theme perfect for musicians, DJs, bands and other music related professionals or businesses. Built with smooth and sleek CSS3 and AJAX animations including a unique spectrum analyzer to help you visualize music automatically on every single track. You can easily manage and display your artists, albums, audios, images, videos, events dates and sell your items (tickets etc.), allow users to rate music, and share instantly on their social networks. It also comes with 2 different players (SimplePlayer widget and Extended Player) to give users control over every single track played.

Music Club – Music/Band/Club/Party WordPress Theme

Music Club Premium WordPress Theme is the best WordPress theme for music, club, party, radio station, bands or even entertainment magazine. It comes with great features for music such as: a floating music player at the bottom of the page, a traditional boxed player for those who prefer something familiar, an Event post type that come with a ticket button with 5 tickets status, a Music Album feature which when clicked, automatically fetches all songs in an album to the floating player. Other outstanding features include a Page Builder, Revolution Slider, GoodLayers Importer, and other great music tools, to help you build a power music website users will truly enjoy.


Must Have Features in Choosing a WordPress Theme for your Website

WordPress theme trends come and go. Some popular features a while back have faded away while others went mainstream and have become basic and essential features integral to a WordPress theme. A lot of the WordPress themes in the marketplace today are feature-packed and sometimes it gets overwhelming to choose the perfect one. Website owners need to be able to sort through long menu of features, pull out those that are relevant to their own specific website needs and goals, just to make sure they don’t get an over bloated and slow-loading website. Here are some basic features to look for in selecting a WordPress theme to fit your website needs.

Flexibility and Ease of Use

User experience is a key factor in web design. WordPress themes must be flexible enough to adapt to the user’s needs and provide way for customization to be simple and easy. A popular feature nowadays is the drag and drop feature where layouts can be configured and reconfigured by simply dragging and dropping elements into specific areas. WordPress themes that include this feature already have a fan base as it makes customization convenient and friendly even for WordPress beginners.

Responsive (On or Off feature)

The emergence of mobile platforms in internet usage makes its users a population that shouldn’t be ignored. A lot of people think that mobile might eventually displace desktop as the dominant platform for internet access. In light of this, website owners need to consider WordPress themes that are 100% responsive enabling content to be presented efficiently on smartphones, tablets, and other mobile or handheld devices. Themes that include features such as menus especially designed for mobile devices, responsive sliders, and responsive images are also a plus factor. Some also prefer that they have control over whether they want the responsive feature turned on or off which means that WordPress themes that have this option will appeal to this type of web user.

Search Engine Optimization

It would be a pity for a site with amazing content to be left to obscurity because search engines can’t find it. According to Joost de Valk, creator of the popular SEO plugin Yoast,

“Out of the box, WordPress is a pretty well optimized system, and does a far better job at allowing every single page to be indexed than every other CMS I have used. But there are a few things you should do to make it a lot easier still to work with.”

WordPress themes that are built according to best code practices and are integrated with sound SEO measures will do well as far as search engine visibility and ranking are concerned.

Multi Media Handling Capabilities

Gone are the days where people are merely content reading stuff on the web. Today’s generation of internet users seek more interactive and media heavy content. Website users tend to lean towards WordPress themes that are flexible enough to handle all types of media formats (audio, video, images, etc). Support for self-hosted videos, Youtube, Vimeo and SoundCloud, and other third party multi media content hosts is always a plus as internet users today.

Animations, Parallax, Sliders, etc.

Some people detest sliders and other visual eye candy. Some don’t even think that it helps a site at all while some consider these visual effects necessary features in a website. When people get to your site, you want to ensure that they get enough interest to go through your content. The use of all these visual effects can go from cheesy to spectacular depending on how it is presented. Today’s media bombarded user can benefit from well-thought of and creative visual presentations that feed both the eyes and the mind.

Translation or Multi Lingual Ready

WordPress already powers more than 21% of the Internet and will continue to increase even as of this writing. This means that more non-English speaking users will be thrown in the mix of users and will need themes that can be translated into their own languages and with RTL (right to left provision). This segment of WordPress users will be more attracted to themes that are easier to adapt to their local audiences.

These features listed here may or may not be on the top of your list. If you do have some suggestions, feel free to leave us a comment and tell us why you think so. We’d love to hear from you.


Opt In Plugins for WordPress

Placing a strategic call to action on your website such as subscribe, register, download, purchase, etc. can make a difference in your conversion statistics. Make it easy for your audience to perform the CTAs you want them to with these opt in plugins for WordPress.

Magic Action Box

Magic Action Box is an easy to use but powerful lead generation plugin that lets you create a focused and high converting feature box in minutes. It let’s you display professional looking opt-in forms and feature boxes in your WordPress site. This plugin makes it easy to create powerful calls to actions and helps users to focus on one thing while presenting the CTAs in sleek professional looking action boxes without the need of a designer. This plugin also integrates with Gravity Forms to build complex, powerful and beautiful contact forms in just minutes.

OptinSkin

OptinSkin allows you to add eye-catching opt-in forms and social share boxes to your blog easily. One great feature of this plugin is the ability to split-test all the elements of your opt-in form (buttons, color, text, covers, images, etc. to find out which one visitors respond to the most. Another feature worth noting is the the Fade feature which allows the form to fade into your content – a great way to address ad blindness. This plugin also works with all major email marketing services and easily integrates with any of them. You also have the option to earn through your opt-in box by enabling an (optional) affiliate link. OptinSkin can be used on multiple websites you own without purchasing additinal copies.

Email Pickup

Email Pickup allow you create simple and powerful landing pages with email capture form. This is handy when you promote your products, for “Coming soon” pages, and for creating multiple subscribers lists for your newsletters. You can easily add forms to pages and posts using a special button or using a shortcode. This plugin also integrates with INinbox.

WangGuard

WangGuard protects your registration page against sploggers, spam users and unwanted users from gaining access to your website’s resources without the use of complicated captcha. This plugin cleans your database from unwanted users from within the Users panel. This plugin protects the standard WordPress, WordPress Multisite, BuddyPress and bbPress 2.0 registration forms. WangGuard is fully compatible with Standard WordPress (non-multisite), WordPress MU, WordPress Multisite, BuddyPress (multisite and non-multisite), bbPress 2.0, and plugins like WooCommerce.

Email Newsletter

Email Newsletter plugin gives you the option to send HTML Mails/Newsletters to registered users, commenters, subscribers, and users who contact you. This plugin gives you several options to: setup an email subscription box, send a newsletter to subscribers, add an unsubscribe link in the newsletter, export or import email addresses, send an auto email to new subscribers, and receive admin email notification for every new subscriber who joins.

Hybrid Connect

Hybrid Connect is a powerful plugin that allows you to create and customize your own opt-in form, display it strategically on your website (sidebar, footer, widget, slide-in, squeeze page, pop up forms, video, etc.), and improve your conversions by testing the elements in your opt-in form to produce the best results. Hybrid Connect is easy to use and requires absolutely no technical knowledge or coding skills. Hybrid Connect also features the easiest and most highly customizable opt-in form builder – the Hybrid Connect form builder – to help you create opt-in forms that match your website’s style without any coding knowledge required. This plugin also supports all major auto responder services.


7 Bestselling Unusual Themes for WordPress

There are some things that are truly unique and outstanding that they can’t help but stand out and rise to the top of the heap. Here are some of the best selling WordPress themes that owe their popularity to a unique niche that they fill.

X Theme

Dubbed as Themeforest’s most popular new product, this theme presents itself as the ultimate WordPress theme. The claim’s validity is backed by real world results and real time feedback from its satisfied users who have experienced the endless customization options available to its owners. While it offers a lot to those who want to dabble into the “nuts and bolts” of the theme, X also offers strong solutions for those who just want to get something up and running on their sites in no time. The theme has 3 predefined stacks that can be easily tweaked to give newbies and non-techies a “made by a professional” look for their websites. X offers features that have set the standard and raised the bar as far as WordPress themes go. Not surprising considering the experts who have given their inputs in the development of the theme not to mention the developer’s open ears to customer feedback. It is also not surprising that many already consider this as the last WordPress theme they will ever need.

Directory

This unique theme allows you to easily set-up an online directory portal listing categorized items of any type. You can have a directory of shops, websites, companies and more. This may be accomplished conveniently with from a frontend like admin panel giving you a more user friendly set-up experience. Visitors will find Directory a convenient reference resource as it delivers information in a concise, convenient manner. Entries are displayed as pins on a google map of the locale of interest. Alternatively visitors may search from a search box or browse off a category of entries. Directory comes with a lot of ad spaces so you can cash in on the traffic your content generates. This theme is integrated with Paypal so administering payments from advertisers and listed establishments isn’t a hassle. With more than 6000 satisfied users, Directory is considered the Best selling directory portal theme on themeforest.

Gymbase

This theme has been around for quite a while but remains a bestseller in its own right because of its special qualities. First and foremost it’s a Gym theme – unique and not like the rest. It addresses a viable niche market – the health and fitness market – where gym owners can easily create a website that can service players in this industry. Some of the useful features the theme has include: a timetable plugin included that allows members and visitors to plan the classes they will attend, Gymbase also displays the pricing for classes, features that allow updates for its members regarding upcoming classes, an easy to use admin panel equipped with a color picker to help you create your own custom look, and everything else you need to run a health and fitness website.

Academy

Designed to be a learning management solution for educational or training institutions to maximize the power and reach of the internet, Academy enables you to sell and share knowledge online. This theme gives you the platform to deliver classes and lessons to interested parties. Academy allows you to upload media content and documents as well as to encode quizzes and tests to check for your subscribers competency. You are also able to check the progress of your students, monitor the courses they take, as well as, administer payments. This theme is integrated with WooCommerce. Academy is an invaluable tool especially today, as more and more people turn to e-learning as a means of acquiring new skills and education.

Fundify

Fundify is the first WordPress theme designed for crowdfunding. This enables you to have a websites in the likes of Indiegogo and Kickstarter where parties can setup campaigns to raise funds for causes they support. Fundify allows you to setup campaigns for a fixed amount of money where supporters are only billed if the minimum target amount of the campaign is reached. Alternatively, the theme also enables flexible campaigns where whatever amount pledged is collected. Fundify also allows you to administer rewards to those who support your causes. The theme integrates with Paypal and easy digital downloads which makes it convenient for supporters to finance causes and advocacies that appeal to them.

Knowhow

With knowledge and information being an important commodity nowadays, it is not surprising to find a knowledge base theme in this list. What makes Knowhow special is that it enables you to setup your own knowledge base with ease and convenience while maintaining the privacy and control of information not available on public Wikis. You can list your content in the form of an FAQ. Knowhow also allows users to search by question or by topic which makes searching more convenient. Not your ordinary WordPress theme.

Jobify

Globalization and the internet have made the job market more competitive. Jobseekers have a need to display their resumes online so they can get the best jobs available. In a similar fashion, employers need to get the best talent available. Jobify is a job exchange solution used by top companies like dropbox to acquire the best talent globally. Employers can subscribe to your site for posting privileges. Jobseekers can post their resumes in response to job postings. This theme integrates with WooCommerce and Contact forms plugins to give you the best in payment and input management.