25 Helpful Twitter Plugins for WordPress 2013

Twitter is one of the most visited social networking platforms on the planet. WordPress is one of the most widely used blogging platforms. When the two meet, you can expect beautiful things to happen.

Below we present you with 25 helpful Twitter plugins for WordPress – Plugins can make your WordPress site do virtually anything.

Here’s an example of what you can achieve with one of these Twitter Plugins for WordPress.

It is a common habit nowadays that people sign into their Facebook, Twitter, and Gmail accounts when they start their computer, and after checking their accounts they typically close all these web pages but do not sign out of their accounts. Instead they go on to work on new web pages and they occasionally return to their accounts to check any latest updates. Now there is a plugin named “Simple Twitter Connect”, no. 5 below in this list, which enables you to log into your WordPress dashboard through your Twitter profile. Once you install the plugin and sync everything then you can login to your WordPress dashboard with your Twitter account. If you have the habit of being logged into your Twitter account all the time then you can log into WordPress by just a click of the button – you will just have to hit the “Sign in with Twitter” button and you will be in.

This is just one example of the power of the Twitter Plugins presented below. Scroll down for more info on these wonderful Plugins for 2012 – 2013.

(more…)


15 Sensational Mobile WordPress Themes

 

According to a survey I came across a few months back, the number of people who use a smartphone is larger than the number of people who use a toothbrush! This means that if your website is not mobile phone friendly then you are missing on on a lot of visitors. Some people feel that if the number of people who surf the Internet on smartphones is A and the number of people who use the Internet from their computer is B then the total number of Internet users is A + B. Wrong!

A lot of people browse the Internet on their smartphones only when they can’t access it via a computer for e.g. while travelling in a car, train or bus etc. This means that there is a big overlap between A and B. A major portion of smartphone browsers is a subset of computer browsers. So what does this has to do with your website? A lot. If you ensure that your site is easily accessible to smartphones then the number of page impressions your site gets can dramatically increase as the same people who were visiting your site via their computers can visit it even when they are…say…travelling.

Below we have collected 15 beautiful WordPress themes designed specifically for mobile phones. Some are free and some cost a nominal amount. Check them out and see which ones work best for you! NOTE: A post on great Responsive WordPress Themes for 2013 is coming soon!
(more…)


25 Very Useful WordPress Calendar Plugins for 2013

Time management is one of the biggest problems faced by business owners be they digital business or brick and mortar. There are too many things to do and when you do one thing you obviously can’t do something else (MBA programs call this the “opportunity cost”). Therefore, to manage your time properly and make the most out of the few working hours that exist each day, you must find the best tools to help you manage your time properly. Enter digital calendars.

(more…)


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.


Links: February 19, 2013

Let’s face it…the interwebs are big and only getting bigger. Here are 5 WordPress links you need to know about.

  • Microlancer – If you love any of the Envato marketplaces, this upcoming service will allow you to become a service provider. Still in beta.
  • WooThemes Shuts Down Affiliate Program – Out of nowhere, WooThemes shut down their entire affiliate program citing “lack of traction.” No blog post, no detailed explanation. Lots of frustrated affiliates.
  • Community – We discuss the free/premium debate often here at Blogex. WPDaily suggests it’s all about community.
  • Why Free? – With the recent dust up between Automattic and Envato, the age ol’ Why Free debate is front and center again.
  • WordPress CDN – Get the skinny on content deliver networks (free and premium) from our buddies at WPLift.

The Basic Web Page Structure – HTML5 List of Tags


You can think of an HTML page as a series of containers. After an opening statement that defines the type of page to follow, there is one large element, the <html> tag, that contains the two primary structural elements, and <body>.

HTML documents consist of a tree of elements and text. Each element is denoted in the source by a start tag, such as “<body>“, and an end tag, such as “</body>“. (Certain start tags and end tags can in certain cases be omitted and are implied by other tags.)

Here’s how the basic essential code for an HTML5 web page looks:

<!DOCTYPE html>
<html>
<head>
<title> Title of document goes here </title>
</head>
<body>
Visible text goes here…
</body>
</html>

Before we can fully appreciate what these containers or placeholders do to our webpage we need to know how they function. Below is a list of HTML5 compliant tags we can use to study and familiarize ourselves with as to the description and function of each tag. Let’s do a little exercise. As you go through the list, pick a web page (any, even this one) and right click on it. Select “view page source” and try to find the tags listed here and look for them in the page source. Try to classify which ones are basic tags, formatting tags, image tags, and so on. While you are at it, challenge yourself to decode the code. Have fun!

<bdi> Isolates a part of text that might be formatted in a different direction from other text outside it
<mark> Defines marked/highlighted text
<meter> Defines a scalar measurement within a known range (a gauge)
<progress> Represents the progress of a task
<rp> Defines what to show in browsers that do not support ruby annotations
<rt> Defines an explanation/pronunciation of characters (for East Asian typography)
<ruby> Defines a ruby annotation (for East Asian typography)
<time> Defines a date/time
<wbr> Defines a possible line-break
<datalist> Specifies a list of pre-defined options for input controls
<keygen> Defines a key-pair generator field (for forms)
<output> Defines the result of a calculation
<figure> Specifies self-contained content
<audio> Defines sound content
<source> Defines multiple media resources for media elements ( and )
<track> Defines text tracks for media elements ( and )
<video> Defines a video or movie
<nav> Defines navigation links
<command> Defines a command button that a user can invoke
<header> Defines a header for a document or section
<footer> Defines a footer for a document or section
<hgroup> Groups heading elements
<section> Defines a section in a document
<article> Defines an article
<aside> Defines content aside from the page content
<details> Defines additional details that the user can view or hide
<summary> Defines a visible heading for a details element
<embed> Defines a container for an external (non-HTML) application

Don’t forget that WordPress uses PHP but PHP is a server-side technology (runs on a server) that dynamically generates the HTML that will be sent to the browser (IE, Safari, Firefox, Chrome). HTML is whatever you view on a website.


30 of the Best Shopify Themes (Free & Awesome)

Do you prefer to shop from shabby looking shops? Well, I am sure that all of us will be answering this question with a resounding NO. If that is the case, then why should shopping online be any different. It is imperative these days for a website owner to have an inviting, user-friendly experience lest you go the way of obscurity.

Application of a useful and at the same time beautiful theme in the website therefore becomes extremely important. Readily downloadable themes or templates compatible with different kinds of websites are available on the internet which can be used by designers as a starting point of their projects. Or it can be useful for novice designers who want to draw valuable inspiration from these examples thereafter start developing their own unique template. If you download a free shopify theme, then the work of the designer will be simplified and become much faster as well. These templates come with many useful features like ability to connect with the social networking sites, full customization features whereby the developer can amend it according to his own needs and all the latest technologies. With the use of these templates your website is surely going to stand out from the rest. It doesn’t end with having a unique template and features, its all depends on how well and different you do business. You can find experiences of popular ecommerce experts and help articles on blogs like Shopify ecommerce blog.

In addition to our article on some of the best ecommerce WordPress Themes of 2013, we have also created this detailed list of the 30 best and most diverse shopify websites for you designers out there. They can build up a unique, attractive and at the same extremely interactive platform with the help of these themes.

(more…)


Get Your Free Themes from WPBusinessBundle.com

Have you seen the the all new and improved WP Business Bundle? If you haven’t then you need to check it out. If you have been bombarded with numerous WordPress themes in the marketplace and you are suffering from “choice overload” head on out to WP Business Bundle for select WordPress Themes specifically targeted to meet the needs of businesses, corporate portfolios, professionals and other types of business-related websites.

WP Business Bundle has gone through a makeover and the generous folks over there are giving away two great Premium themes for free. That’s right – FREE! By simply signing up with them you can download a stunning Business Theme (Prospect) and a creative Portfolio Theme (Digifoto) for zero dollars! You don’t even have to choose because you can download one or even both.

Prospect Free WordPress Theme is a vibrant and dynamic business theme with features like 10 pre-made skins, an attractive slider, clean and easy to use breadcrumbs navigation, high-end aesthetics and many more excellent features that will appeal to the elite business crowd you move in.

Digifoto Free WordPress Theme is a Portfolio theme with 2 built-in design options (dark and light), numerous custom widgets, unique sliders, drag and drop forms, and other essential features for you to create an impressive online portfolio at zero cost to you.

Once you register to create your free account, simply confirm your email and WP Business Bundle will email the themes to you right away. Unlike most free themes out there, what’s cool about WP Business Bundle free themes is that you can expect:

  • Theme Updates
  • Cool Resources
  • New Free Themes
  • No Cost – No Obligation
  • Cancel Anytime Policy

You can also find useful plugins at WP Business Bundle. Since these plugins are designed to complement all WP Business Bundle Themes. Together, WP Business Bundle Themes and Plugins make a truly winning combination.

Check out WP Business Bundle.com and Download your Free Themes Today!

Elegant Themes Shortcodes: Now Responsive!

With the advent of mobile platforms, WordPress themes have to adapt to the demands of this steadily growing user base. It can really be quite frustrating to read articles from any major newspaper’s website on iPhone or Android and get all the content mish mashed. Theme developers and web designers need to move more and more toward this emerging trend towards responsive themes.

It is a welcome development that Elegant Themes recently released its responsive shortcodes. While Elegant Themes has been churning out responsive themes for quite a while, the shortcodes were left out. It took 10 responsive themes before mobile friendly shortcodes were released. Great news, indeed!

So how do these new shortcodes, improve mobile browsing experience? Elegant Themes’ blog cites two examples of their improvement strategy. Tabs have always been an issue when websites typically viewed on a 960px wide screen to a 320px width. No matter what you do, having 10 tabs will alway come out cramped. Solution: Tabs turn into a slider when switching to mobile mode. It just makes sense to have sliders rather than have unreadable tab labels. Another example cited was the case of columns. As the content width gets narrower, text in columns become a bunch of flying letters. Solution: the new shortcodes convert columns into boxes when switching to mobile screens. Brilliant isn’t it? Regarding the new shortcodes, Elegant Themes has declared them to be fluid width giving them the capacity to shrink and expand according to screen size.

Web design and the emerging technology innovation and trends are accelerating even faster. More and more mobile users prefer to access the web through their devices and WordPress Themes providers need to step up their game. For loyal subscribers of Elegant Themes, these concrete steps towards updating and upgrading all Elegant Themes products is always welcome and appreciated.

Congratulations to Elegant Themes for taking WordPress theme development one step further and fully embracing the future of WordPress.

See Elegant Themes’ Responsive Shortcodes