remove cart totals woocommerce code example

Example 1: woocommerce remove add to cart

// functions.php
add_filter( 'woocommerce_loop_add_to_cart_link', '__return_false' );

Example 2: remove woocommerce cart item thumbnail

function sv_remove_cart_product_link( $product_link, $cart_item, $cart_item_key ) {
    $product = apply_filters( 'woocommerce_cart_item_product', $cart_item['data'], $cart_item, $cart_item_key );
    return $product->get_title();
}
add_filter( 'woocommerce_cart_item_name', 'sv_remove_cart_product_link', 10, 3 );

Tags:

Misc Example