This topic has 4 replies, 2 voices, and was last updated 9 years, 6 months ago by Anonymous.
Viewing 5 posts - 1 through 5 (of 5 total)
I’ve recently updated my sites theme to the 3.0v with the the revamped interface and it seems that for the most part, everything remained in tact upon installing all of the required plugins and disabling the ones that I was instructed to do so on. But yesterday I noticed that the header was being displayed on mobile devices rendering the rest of the sites responsiveness, useless. However, today I was excited when I saw that the update v3.0.1 had been released and was set to fix an issue involving the headers and I thought this would correct my issue.
I also have another issue persisting since installation of the site that is every time I update my theme, I have to write a bit of code in order to have the subheaders appear correctly using qTranslateX even though upon initial installation of the plug-in, there was no issue of the sort.
If you are using parent theme then find for the below code in functions.php file
wp_register_style( 'iva-responsive', THEME_CSS . '/responsive.css', array( 'iva-css-flexslider','iva-animation'), '1', 'all' );
and replace with,
wp_register_style( 'iva-responsive', THEME_CSS . '/responsive.css', '', '1', 'all' );
If you are using child theme then find for the below code in functions.php file
wp_register_style( 'iva-responsive', child_enqueue_scripts( CH_THEME_CSS . '/responsive.css' , THEME_CSS . '/responsive.css'), array( 'iva-css-flexslider','iva-animation'), '1', 'all' );
and replace with,
wp_register_style( 'iva-responsive', child_enqueue_scripts( CH_THEME_CSS . '/responsive.css' , THEME_CSS . '/responsive.css'), '', '1', 'all' );
I will try this later tonight. Is there any chance you guys can fix the second bug that I’ve mentioned?
Regarding your 2nd question, it is already resolved in 3.0.1 version. But if you still have any doubts then please elaborate your question along with screenshots so that we’ll help you out.
Viewing 5 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic.