/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}
add_filter('woocommerce_checkout_fields', 'force_remove_checkout_fields');

function force_remove_checkout_fields($fields){

    // Billing
    unset($fields['billing']['billing_company']);
    unset($fields['billing']['billing_address_2']);
    unset($fields['billing']['billing_email']); // nếu không cần email

    // Shipping
    unset($fields['shipping']);

    // Order note
    unset($fields['order']['order_comments']);

    return $fields;
}
