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

WordPress create admin reports using WP_List_Table

Wordpress create admin reports using WP_List_Table

In this post I’m going to discuss how to use WP_List_Table to create reports/tables/lists that are similar in style to the standard WordPress reports for Posts, Pages etc. To achieve this I’ll use the WP_List_Table core WordPress class, this contains the functionality to create said tables/reports. This example will look at the links table and … Read more