Mobile Menue show on desktop version

Posted in: Newspaper
Post count: 3

thanks Bogdan, how can i have a refund to buy another theme who support arabic ?

thanks.

Post count: 22421

Please make a request here: https://themeforest.net/refund_requests/new
Thanks.

Post count: 52

Hi folks

We had the same issue and we didn’t change anything in the CSS or hack the settings.

Just don’t forget to update your child theme with the new functions code

add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles', 1001);
function theme_enqueue_styles() {
wp_enqueue_style('td-theme', get_template_directory_uri() . '/style.css', '', TD_THEME_VERSION, 'all' );
wp_enqueue_style('td-theme-child', get_stylesheet_directory_uri() . '/style.css', array('td-theme'), TD_THEME_VERSION . 'c', 'all' );

}

We were scratching our heads for ages until we noticed they were different from our original child theme setup.

Hope that helps people,
Hash

Viewing 3 posts - 26 through 28 (of 28 total)
You must be logged in to reply to this topic.