Hi guys,
I have an issue with the speed booster plugin. Actually, I’m not sure it is an issue, i’m gonna try to be as clear as possible.
I tried to move td-plugin-multi-purpose doing this :
/**
* here we move the css
*/
function css_mover() {
//if ($this->td_theme_name == 'Newspaper') { }
// wp 011 - Newspaper 6
$this->move_style_to_footer_queue('bbp-default-bbpress'); //bbpress old
$this->move_style_to_footer_queue('bbp-default'); // bbpress
$this->move_style_to_footer_queue('contact-form-7');
$this->move_style_to_footer_queue('td-plugin-newsletter');
$this->move_style_to_footer_queue('font_awesome');
if ($this->is_ie === false) {
// move style.css theme style
$this->move_style_to_footer_queue('js_composer_front');
$this->move_style_to_footer_queue('td-theme');
$this->move_style_to_footer_queue('td-theme-child');
$this->move_style_to_footer_queue('td-theme-woo');
$this->move_style_to_footer_queue('td-theme-demo-style');
$this->move_style_to_footer_queue('td_live_css_frontend');
$this->move_style_to_footer_queue('td-theme-bbpress');
}
/* $this->move_style_to_footer_queue('td-plugin-multi-purpose'); */
$this->move_style_to_footer_queue('td-multipurpose');
$this->move_style_to_footer_queue('font-awesome-four');
with success (although google speed did not see anything like here).
But the bad thing is that some local modifications (like changing hover color) I did with tagDiv composer are not taken into account anymore. I think it is logical because the css of those modifications are loaded before “td-multi-purpose/style.css?ver=4.9.6”
Pictures should help :
Before moving td-multi-purpose/style.css?ver=4.9.6
https://www.screencast.com/t/cwbMQS4T
After
https://www.screencast.com/t/IWziOksz2d7M
Do you have any suggestion ?
Hi,
Note that the multi-purpose plugin is no longer required, by a mistake it is still provided in the package however. In the latest theme version (8.7.5) all the multi-purpose elements and options are included in the tagDiv composer. The two plugins have been combined
– https://www.screencast.com/t/yC1zJuJIGY
So you can deactivate it and not worry about moving it with the booster.
Thanks
Hi Simion,
I’ve read the documentation, and as you can see : https://www.screencast.com/t/XyZpLsM2lz3i
I did not reinstall the multi-purpose plugin after the last update. Despite the fact that multipurpose elements are included, there is still a cascading stylesheet remaining.
So maybe it is finally an issue ?
Hi,
Indeed, I failed to notice that sorry. Seems there are problems with the multi-purpose elements if the booster moves the plugin to the footer.
After further inquiries it seems the multi-purpose plugin resources are required to be loaded in the header, it would have been included by default in the speed booster plugin and moved if there were no problems. So you should not move the loading of the multi-purpose resource with the speed booster plugin.