How to make a WordPress Theme, Woocommerce Compatible from scratch

beginners guide to theming Woocommerce

In this post I’ll going to explain how I took a WordPress Bootstrap Theme and made it Woocommerce Compatible. I couldn’t find many good tutorials on this so I’m writing this one, so that it might help someone else. The Process to make a theme Woocommerce Compatible I’m going to take the very nice DevDmBootstrap3 theme and make it Woocommerce … Read more

Onsite SEO for Ecommerce websites 2016

In this post I’m going to talk about some of the things you can do to improve your Online Store’s visibility in Search Engines such as Google. To get more sales of your products and services. Onsite SEO for Ecommerce websites isn’t difficult but does require some perseverance. SSL (Secure Sockets Layer) Certificate This means encrypting … Read more

Woocommerce – Add an Important Admin Note to the Order Report for Order pickers to view

In this article I’ll show you how to add an Important Admin Note to the Order Report, very useful if there’s some information you want to add for Order pickers to view. For instance maybe the item is fragile you can highlight this to the order picker.   This plugin allows you to enter an Admin note on … Read more

Buddypress how to create a group programmatically in PHP (and add users)

In this post I’ll show you how to create a new group in PHP and then add users to the group. In this example I’m adding new users to a new group when they register. add_action(‘user_register’, ‘greenbox_add_user_to_new_buddypress_group’); //this should only fire on create user, therefore no problem with dupe groups function greenbox_add_user_to_new_buddypress_group($user_id) { $id_group = greenbox_create_bp_group($user_id); … Read more