"Grand Cru stands for the highest quality and uncompromising enjoyment"
Grand Cru Coffee
The designation Grand Cru is usually used for wine but also for chocolate and coffee. It stands for the highest level of quality. This quality standard also fits in with Switzerland’s leading position worldwide in the manufacture of espresso machines. In addition, 70% to 80% of the green coffee exported worldwide is traded through Switzerland.

Biezonder helped Grand Cru Coffee become a brand that stands for the highest quality coffee and service for (small) businesses in Switzerland. We started developing a Corporate Identity and a Package Design that embodies the Grand Cru promise and appeals to the Swiss market.
Website Development
We also developed the grandcrucoffee.ch website and webshop that services over 300 recurring clients. The website is built using highly customized WordPress and WooCommerce and integrated with Grand Cru Coffee’s CRM.
For example: Adding the Customer ID to the Users table in the WordPress Dashboard.
add_filter('manage_users_columns', 'biezonder_add_user_id_column');
function biezonder_add_user_id_column($columns) {
$columns['user_id'] = 'User ID';
return $columns;
}
add_action('manage_users_custom_column', 'biezonder_show_user_id_column_content', 10, 3);
function biezonder_show_user_id_column_content($value, $column_name, $user_id) {
$user = get_userdata( $user_id );
if ( 'user_id' == $column_name )
return $user_id;
return $value;
}