WordPress

/WordPress

WordPress Security

As much as hacking is over-estimated, it is also under-estimated. No, the tone is not philosophical here. As website designers and owners, you have been searching for hacking only in huge evidences – a strange thing like a violent video clip being posted out of nowhere on your website. But have you considered the comment [...]

By |March 1st, 2014|Blog, WordPress|0 Comments

Speeding Up Your Web Site

Speeding Up Your Web Site: Website speed is really crucial and thus a faster loading site means better user experience. Indeed, there is no point making an impressive site if it takes much time to load. You may be thinking of why you should give consideration to the website speed. Well, there are a number [...]

By |February 27th, 2014|Blog, WordPress|0 Comments

Does favicon 404 affect performance?

Yes, missing favicons do affect performance. As you probably already know, adding a favorite icon to your website is a great way to add subtle branding to your website. It's an easy, one-time update to your website that you never need to think about once it's done. Lets say you don't care about the favicon [...]

By |February 26th, 2014|Blog, WordPress|0 Comments

Load Scripts if Post has Short Code

function check_for_shortcode($posts) { if ( empty($posts) ) return $posts; // false because we have to search through the posts first $found = false; // search through each post foreach ($posts as $post) { // check the post content for the short code if ( stripos($post->post_content, 'YOUR_SHORTCODE') ) // we have found a post with the [...]

By |February 25th, 2014|Blog, WordPress|6 Comments

How to Improve SEO Rankings

SEO- Search Engine Optimization, is the process of improving the ranking of a website on Internet search engines. Google's search engine, www.google.com, uses a variety of methods to determine which pages are displayed first in the results. Their exact formula is a secret, but there are a few things you can do to improve your [...]

By |February 24th, 2014|Blog, WordPress|888 Comments

Responsive Web Design

Each web browser has a different viewport. A viewport is the visible part of the web canvas within a browser. For comfortable viewing, a website’s layout must fit perfectly in the browser’s viewport. Otherwise the site looks broken and inconsistent. To have the site layout and content fit perfectly within the dimensions of the web [...]

By |February 21st, 2014|Blog, WordPress|2 Comments

How to Save Images Optimized for Web

Are you saving images wrong? Most beginners don’t know how to save images properly which can have a huge impact on website speed. In this article, we will show you how to properly save images optimized for web. Every blogging expert will tell you that images help increase engagement. However what they don’t tell you [...]

By |February 19th, 2014|Blog, WordPress|1 Comment

Improve WordPress Website Speed

Speed is of essence, especially when it concerns a website. If your page download speed is slow, you are bound to lose customers. The worst part is that you will never know about these lost opportunities. Fortunately there are many ways in which you can optimize your WordPress website speed. Here are some tips to [...]

By |February 19th, 2014|Blog, WordPress|2 Comments

Solving WordPress Database Error [MySQL Server has gone away] in WordPress

If you’re regularly receiving the ‘MySQL server has gone away’ database error in your WordPress  based blog,The error usually occurs at high CPU usage because of MySQL server closing the connection before the full request was made. The error can be rectified by increasing the timeout of the MySQL connection. Here’s how to do it:Editing the [...]

By |February 6th, 2014|Blog, WordPress|0 Comments

The best way to edit your default language is through the wp-config.php file on the root directory. This case should be for Spanish of Spain define ('WPLANG', 'es_ES'); This one to the USA English define ('WPLANG', 'en_US'); You have all the possible combinations at this page: http://xml.coverpages.org/iso639a.html

By |January 27th, 2014|Blog, WordPress|0 Comments