/*
Theme Name: Child Tema
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_product_tabs', 'woo_rename_tabs', 98 );
function woo_rename_tabs( $tabs ) {

	$tabs['description']['title'] = __( 'More Information' );		// Açıklama tabının ismini değiştir
	$tabs['reviews']['title'] = __( 'Ratings' );				// Yorumlar tabının ismini değiştir
	$tabs['additional_information']['title'] = __( 'Product ssssData' );	// Ürün özellikleri tabının ismini değiştir

	return $tabs;

}