Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
Вот речь больше идет о вызове функции подключения стилей в плагине. Не знаю как её переопределить. Файлы плагина редактировать конечно не вариант.как-то так Для просмотра ссылки Войдиили Зарегистрируйся
или поискать вызов фу-ции плагина и поменять расположение
function my_deregister_styles() {
wp_dequeue_style('the_champ_sharing_default_svg');
wp_dequeue_style('the_champ_frontend_css');
}
add_action( 'wp_print_styles', 'my_deregister_styles', 100 );
function prefix_add_footer_styles() {
wp_enqueue_style('the_champ_sharing_default_svg');
wp_enqueue_style('the_champ_frontend_css');
};
add_action( 'get_footer', 'prefix_add_footer_styles' );