Changes to Media Uploader in WordPress 3.5 were perhaps the most significant changes in that release. Another important change was the removal of Settings » Miscellaneous section where there was an option to change the default upload directory and an…
Tag: How to
How to implement breadcrumbs in WordPress website?
Breadcrumbs in WordPress website In order to enhance user experience and site usability using breadcrumbs is an important factor. For SEO perspective it may contribute and benefit in a good way if used on website pages. Assume that a user…
How to import Gmail contacts to Microsoft Outlook
Following simple steps one can import Gmail contacts to Microsoft Outlook. Here’s the steps. 1. After logging into Gmail account go to (dashboard) Gmail > Contacts as shown in the image below.
How to increase the number of Courier-IMAP connections on Centos, Linux
This article applies to you if you are seeing this message when accessing your email: ERROR: Unable to connect to your IMAP server. You may have exceeded the maximum number of connections to this server.
How to add an option to WordPress general settings
How to add an option to wordpress general settings page i.e. /wp-admin/options-general.php? The dirty way. Put the following snippet in functions.php file:
How to change WordPress default FROM name & email address
Paste the following code into functions.php file of your in-use theme. Don’t forget to put the desired email address in new_mail_from function(line 5) and desired name in new_mail_from_name function (line 8). If you do not know how to do it…
How to Fix the “URL is Unreachable” Error in Facebook Comments
Recently, i have been setting up the Facebook Comments plugin on my client’s server. Before trying it on live server i tried to set it up on my development server. It looked to work but with a error “Warning: http://coolum.inimist.com/?p=1 is unreachable.“ where…
How to know whether an element existed with jQuery
For the reference. In general javascript we can check for the existence of an element using the method below: if(document.getElementById(‘element_id’)) { //element exists } else { //element does not exist }
How to set IPN Notification url of Paypal
Following a brief note on ‘how to set IPN Notification url of Paypal’.
How to get current category id in Woocommerce?
How to get current category id in a template or theme functions file while using Woocommerce. In fact not only using Woocommerce but this method can be used to get the category object and subsequently the ID in normal category…