woocommerce cart code example
Example 1: add_to_cart how to call it woocommerce
add_action( 'template_redirect', 'quadlayers_add_to_cart_function' );
function quadlayers_add_to_cart_function () {
$product_id = 1326;
if ( WC()->cart->get_cart_contents_count() == 0 ) {
WC()->cart->add_to_cart( $product_id );
}
}
Example 2: woocommerce cart css description
.button[name="apply_coupon"] {
background-color: transparent;
color: #13aff0;
}
.button[name="apply_coupon"]:hover {
background-color: transparent;
text-decoration: underline;
}
.button[name="update_cart"] {
background-color: #e2e2e2;
color: #13aff0;
}
.button[name="update_cart"]:hover {
filter: brightness(115%);
}
Example 3: woocommerce cart css description
.woocommerce-cart .woocommerce {
display: flex;
}