Notice btn
<?php
//balans
//change add to cart notice succes button
add_filter( 'wc_add_to_cart_message', 'bbloomer_custom_add_to_cart_message', 10, 2 );
function bbloomer_custom_add_to_cart_message($bericht, $product_id) {
$return_to = get_permalink(woocommerce_get_page_id('cart'));
$message = sprintf('<a href="%s" class="button wc-forwards">%s</a> %s', $return_to, __('bestelling afronden', 'balans'), '"'.get_the_title($product_id).'" '.__('is toegevoegd aan je wasmand.', 'balans') );
return $message;
}