Home › Forums › WoodMart support forum › I have a problem in rtl › Reply To: I have a problem in rtl
April 29, 2018 at 8:09 am
#55211
Artem Temos
Keymaster
Replace this part
if( woodmart_get_opt( 'minified_css' ) ) {
wp_enqueue_style( 'woodmart-style', get_template_directory_uri() . '/style.min.css', array('bootstrap') );
} else {
wp_enqueue_style( 'woodmart-style', get_template_directory_uri() . '/style.css', array('bootstrap') );
}
with this one
wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array( 'woodmart-style' ), woodmart_get_theme_info( 'Version' ) );