Hi there
could you help me out to get rid of the white button with the cart icon saying “Weiterlesen” ?
Also, I would like to change the text on the grey button to “Mehr dazu”
thanks very much! your support is truly amazing.
Hey mirotck,
Thank you for your patience, to remove the cart buttons please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:
.template-shop.avia-content-slider .avia_cart_buttons {
display: none;
}
and to change the woocommerce add to cart button text try adding this code to the end of your functions.php file in Appearance > Editor:
add_filter('woocommerce_product_single_add_to_cart_text', 'woo_custom_cart_button_text');
function woo_custom_cart_button_text() {
return __('Mehr dazu', 'woocommerce');
}
Best regards,
Mike