Hello @tzils
The issue you’re reporting depends on the theme active on your website, and where it is including the plugins’ resources.
Please, look the HTML source of your website. As you can see, there are loading first multiple css and js files, before including the resources of plugins.
You can try the following change:
– Move the call to the WordPress function: wp_head(); (into the header.php template file on your theme) just after the open tag: <head>
Best regards.
Thread Starter
tzils
(@tzils)
Hmm, thanks for quick reply. If it was meant to look like this, then it’s not working :/
<!DOCTYPE html>
<html
<?php language_attributes(); ?> class="no-js no-svg">
<head>
<?php wp_head() ?>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
</head>
Hello @tzils
Do you have remembered to clear the website’s cache after modify the template files? I’ve checked your website and I see you are using a plugin to manage the website’s cache.
Best regards.
Thread Starter
tzils
(@tzils)
Yes, a number of times. Unfortunately it still behaves the unwanted way :/