-
|
Hello! I've installed bootScore v. 6.3.0 with a child theme. Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
|
Are you compiling the scss-code online on-the-fly or before deploying? |
Beta Was this translation helpful? Give feedback.
-
|
Using a vanilla Wordpress with no plugins, just the theme on an average hosting shows me this results. The result changes on each new scan:
I honestly do not understand why this values are so different in mobile/desktop. Reduce unused CSSTheme loads the entire Bootstrap with all components, utilities etc in parts in child-theme. You can remove all unwanted stuff in child-theme's main.scss. For example, if you do not use the dark mode, then you can disable dark mode styles in The compiled
By removing unused styles, it is possible to reduce compiled Eliminate render-blocking resourcesTheme loads:
We had several discussions in the past to compile all together into one
A plugin like Autoptimize combines all CSS/JS into one file and has the option to render them as inline CSS/JS. This will remove the render-blocking resources entirely. @SebGbs Twenty Twenty-Five is a block theme. Means this has no stylesheet anymore, instead it writes bad inline CSS into the HTML. This is a completely different approach. If you want to compare Bootscore to a default WordPress theme, use the latest Serve static assets with an efficient cache policyUse a plugin like W3 Total Cache SEO
#masthead .navbar-brand img {
height: 40px;
width: 40px;
}
ConclusionPage Speed Insides is a tool provided by Google. If you are checking the values for bootscore.me, you will see that the site has a very bad score. This is because the site uses two other tools, provided by Google as well: reCaptcha and Analytics. This two tools costs round about 30-40 score points. Just by using Google own tools ;-) But bootscore.me is by far the no. 1 search engine result if you are searching for Bootstrap in combination with WordPress. This is because the overall site is good and follows best practices. The framewok is popular, unique and people are talking about it. What i want to say with this: The pagespeed is important, but pay not too much attention to it. #1116 by @neralex is a first step to improve pagespeed values. You can check https://bootscore.me/blog/new-plugin-new-feature-speed/. This post is old and outdated but describes well how theme and plugins affects the pagespeed and how to improve it. |
Beta Was this translation helpful? Give feedback.


Reason:
This is just causing the slow responding time of your webserver because on each pageload the used environment and a lot of files will be checked before the first paint of the frontend get a chance for rendering. When the file system of your server is running slower as usual too, you will feel it much stronger.
Why:
When you are developing on a local server environment for example, there are a some tools available to compile scss locally, which is much faster than a pageload of a cms. In a perfect world, you would have only one file as scss-endpoint, which you have to trigger for start the compiling. Endpoints like this are on this theme the main.scss and editor.scss because in the…