Archive by Author

Where is the MySQL Dump File in BackupBuddy Full Backup?

01 May

When you download your BackupBuddy backup to your local machine it’s not immediately obvious where the MySQL database dump is located. To find it, extract the ZIP file and look for the following folder : wp-content/uploads/backupbuddy_temp/MYSERIALCODE. The MYSERIALCODE part will match the backup name serial code. Hope that’s helpful! Twitter Facebook Google+ LinkedIn

No Nonsense WordPress Logout Link Without a Plugin

28 April

Add this WordPress Logout Link snippet and any logged in user can just go to /logout/ and they will be logged out: // WordPress Logout Link function sozot_logout_redirect() { $path = $_SERVER[‘REQUEST_URI’]; if ( !is_user_logged_in() ) { return; } // Allow Logged in Users to Log out from /logout/ if (preg_match(“~/logout~”, $path) or is_page(‘logout’)) { […]

Plugin & Theme Updates, 04-29-2013

28 April

Hi folks, Just a heads up, I’ve updated a number of themes and plugins this week. You may want to check whether you’re due for an update. Here’s a list of what’s changed: WooCommerce Gravity Forms Add-ons Extension – Version 2.3.3, Released on 2013-04-22 Groups for WooCommerce Extension – Version 1.3.4, Released on 2013-04-27 WooCommerce Catalog Visibility […]

JobRoller 1.7 Update

26 April

The AppThemes team has released a new version of JobRoller: JobRoller 1.7 and it’s available on Sozot for just $10. If you’ve ever wanted to build a jobs board, this is by far the best tool to do so. It now supports custom forms, a recruiter role, and the AppThemes payments framework, with many gateways […]

Remove page numbers from wp_head for post type archives with WordPress SEO

23 April

If you’ve got WordPress SEO enabled this can be a tricky one. Took a while to track down exactly where those /page/2s were being added to my custom post type archive. I removed get_pagenum_link and start_post_rel_link and finally figured out the culprit was WordPress SEO! Just add something like the following to your functions.php // […]

Looking for a WordPress Subscription Plugin? You Likely Need Several Plugins

21 April

Many of you have asked how to quickly set up a premium WordPress subscription membership site that supports limiting access to content for paying subscribers. The fastest way to go, without doing any programming or hiring a developer is to use a combination of free and premium WordPress tools. In this How To, I’ll quickly […]