/*
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  ***************/


}
/**
 * Filter to Change WooCommerce Page Title.
 */
add_filter( 'woocommerce_page_title', 'new_woocommerce_page_title' );

function new_woocommerce_page_title( $page_title ) {
	if ( $page_title == 'Shop' ) {
		return 'Boutique'; // Add your title here.
	}
}
