Category: WordPress
-
Are you missing styles for the default classes in your WordPress theme ?
Are you missing styles for the default classes in your WordPress theme ? Here are two nice tutorials which provides CSS styling for the standard classes provided in WordPress. http://themeshaper.com/2012/11/12/how-to-reset-rebuild-wordpress-theme-css-define-your-layouts/ http://themeshaper.com/2009/07/07/reset-rebuild-wordpress-theme-css-define-layouts/
-
Timthumb not showing images and throws “Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. ” error. [Solved]
Recently I faced a situation where the timthumb script was unable to crop the images and was throwing error messages. There are themes those still use timthumb even though its a bad practice to use in themes when we have already functions available in core WordPress. Anyway I had to fix the issue as I…
-
How to disable responsiveness in the admin theme of WordPress 3.8
How to disable responsiveness in the admin theme of WordPress 3.8 ? How do I disable responsiveness of WP 3.8 admin ? Is there any way to disable responsiveness ? I want to disable the responsive hiding feature for tablets and mobile for the newly introduced WordPress 3.8 admin back end. The question comes, Why…
-
Do you need an admin interface to stop / disable auto update feature of WordPress ?
Now that the “Automatic update of WordPress core” has been introduced in WP version 3.7, there are some obvious questions those come into mind. Where can I control this automatic update functionality of WordPress 3.7 ? Is there any admin interface for it ? How can I disable auto update of WP ? So, before…
-
How to setup PHP CodeSniffer on Windows machine ?
How to use CodeSniffer on Windows ? How to setup the PHP CodeSniffer on Windows ? These questions come to mind when you see various articles, tutorials which provides ways/steps to setup this on Linux. So here are simple steps to setup PHP CodeSniffer on Windows. Before going into this, for those who don’t know…
-
How to reduce 404 errors created by ++liker.profile_URL++
Are you getting lots of 404 errors in the log because of some urls having patterns like ” ++liker.profile_URL++ ” ? How to reduce 404 errors created by ++liker.profile_URL++ ? Here is the solution to stop those 404 errors and convert those urls to result in 301 permanent redirects to your homepage. Problem: Some days…
-
Agile WordPress Design Process
Really nice presentation on Agile Design Process incorporated into WordPress Theme Development. Right from designing to theme creation with examples and case studies. Watch it: Agile WordPress Design Process !! Please find the Presentation Slides for Agile WordPress Design Process below:
-
SQL query to get post and its meta_values as one row of record (single data grid)
How to query EAV attributes into separate columns ? Here is the SQL query to get post and its meta_values as one row of record (single data grid). 🙂 🙂 WordPress stores the post data mainly in two tables (i.e. wp_posts and wp_postmeta). The first table stores the data which are common and apply to…