/*
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' , 'custom_override_checkout_fields' );
function custom_override_checkout_fields( $fields ) {
    // Change placeholder for billing email
    $fields['billing']['billing_email']['placeholder'] = 'Your Registered Glofox Email Address';

    // You can also change placeholders for other fields like this:
    // $fields['billing']['billing_first_name']['placeholder'] = 'First Name';
    // $fields['order']['order_comments']['placeholder'] = 'Notes about your order...';

    return $fields;
}