Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1302628

    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.

    #1303046

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.