/*
Theme Name: The7 Child
Description: Child theme for The7
Author: Miloud
Template: dt-the7
Version: 1.0
*/

add_action( 'woocommerce_check_cart_items', 'limit_cart_items_almuttaki' );

function limit_cart_items_almuttaki() {

    $max_items = 13;
    $total_items = WC()->cart->get_cart_contents_count();

    if ( $total_items >= $max_items + 1 ) {
        wc_add_notice(
            'Vous ne pouvez pas commander plus de 13 articles. Pour 14 articles ou plus, veuillez nous contacter.',
            'error'
        );
    }
}