Archive by Author

WooCommerce Downloads for 2018-03-20

20 March

Hello friends. A few WooCommerce plugin updates are now available for download: WooCommerce Product Bundles Version 5.7.7, Released on 2018-03-19 WooCommerce Composite product Version 3.13.7, Released on 2018-03-19 WooCommerce Conditional Shipping and Payments Version 1.3.2, Released on 2018-03-19 Existing members, you can find these updates by logging into your account and checking the downloads area.

WooCommerce Downloads for 2018-03-19

19 March

Hello friends. A few WooCommerce plugin updates are now available for download: WooCommerce Cart Notices Version 1.8.3, Released on 2018-03-15 WooCommerce Local Pickup Plus Shipping Version 2.3.8, Released on 2018-03-15 WooCommerce Catalog Visibility Options Version 3.1.1, Released on 2018-03-16 WooCommerce Product Feeds Version 7.5.0, Released on 2018-03-16 WooCommerce Shipping Multiple Addresses Version 3.6.1, Released on […]

How to Hook Into WooCommerce to Trigger Something After an Order is Placed

14 March

It could be anything, but if you’re offering a service of some kind, rather than a simple downloadable product, you may need to trigger something to happen when an order is complete. Here’s a simple snippet illustrating how you can add an action to woocommerce_payment_complete. Add something like the following to your functions.php. You’ll need […]

WooCommerce Downloads for 2018-03-13

13 March

Hello friends. A few WooCommerce plugin updates are now available for download: WooCommerce Pre-Orders Version 1.5.8, Released on 2018-03-12 WooCommerce Redsys Gateway Version 4.1.0, Released on 2018-03-09 WooCommerce Checkout Add Ons Version 1.12.1, Released on 2018-03-07 WooCommerce Product Search Version 2.0.2, Released on 2018-03-09 Storefront Blog Customizer Version 1.2.3, Released on 2018-03-08 WooCommerce URL Coupons […]

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

11 March

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 // […]

No Nonsense WordPress Logout Link Without a Plugin

07 March

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 wpbase_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’)) { […]

Where is the MySQL Dump File in BackupBuddy Full Backup?

06 March

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!

How To Get Rid of the Admin Notice Install the WooThemes Updater plugin to get updates for your WooThemes plugins

03 March

If you’re running WooCommerce plugin extensions but aren’t and don’t want to use their updater, you can remove the notice Install the WooThemes Updater plugin to get updates for your WooThemes plugins that appears on every admin page by adding the following to your functions.php // Remove WooCommerce Updater remove_action(‘admin_notices’, ‘woothemes_updater_notice’);