For years software developers have been fighting to create tools to allow people to bulk delete their Facebook wall posts. Facebook fights back strong - changing their system, and limiting…
Problem When trying to log into a WordPress website, using the wp-login / wp-admin page - the page redirects back to the login page after entering in the username and…
The following code will disable comments and pingbacks in a WordPress. add_filter( 'pings_open', '__return_false', 10, 2 ); add_filter( 'comments_open', '__return_false', 10, 2 ); To disable for all multi-site websites, you…
The following code shows how to create a shortcode which will load and display an external file. This can be used anywhere shortcodes are supported - for example posts, pages,…
The following keyboard commands can be used to display merge tags. How to show a specific merge tag Select the merge tag and press Shift + F9 How to show all…
The following formula shows how to test if a text field contains particular text. For example: Value Formula Result a quick brown fox InStr( {value}, 'red' ) false a quick…
Problem Some, if not all, website fonts in Google Chrome are displayed blocky or blurry. For example: This issue appears to only happen on Google Chrome running on Windows.…
Here's four options for disabling comments in WordPress. Please note - any existing comments may still be displayed, depending on how your theme is configured. You may need to delete…
The following code shows how to add a custom column to a Custom Post Type in WordPress. In this example we'll be adding a "Usefulness" column - and populating it…