Enrique Murillo
Forum Replies Created
-
Thanks, Tom.
Forum: Plugins
In reply to: [Calculated Fields Form] Eliminate render-blocking JavaScript and CSSI have a problem like yours and found this blog(at the end comes the original link:
LightsOut’s Avatar LightsOut LightsOut is offline
Master BabblerJoin Date
Aug 2011
Posts
293
Default
If I were you, I wouldn’t care. This wouldn’t increase your google pagespeed score too much, and it is a very tiny improvement. On the other hand its almost impossible to achieve. What google wants you to do is to load your javascript and CSS after all of the HTML has been loaded.This basically means that you have to include your javascript after the closing </html> tag instead of doing it in the head or footer. Then you would need to create inline CSS styles for rendering the content that is “above the fold” (which is next to impossible.. especially if you use responsive design for your site). After that is done, you would need to asynchronously load the CSS via javascript. Here is an example of how your page might look like:
<html>
<head>
</head>
<body>
<div class=”navigation” style=”color:red”></div>
</body>
</html>
<script src=”/js/jquery.js”>
<script>
$(function() {
$( “head” ).append(“<link rel=”stylesheet” type=”text/css” href=”theme.css”>”);
});
<noscript><link rel=”stylesheet” type=”text/css” href=”theme.css”></noscript>Like I said earlier.. don’t bother unless you have a super simple site and this would be easy thing to do. It has literally almost no benefit for your page and is a huge time/effort investment.
Forum: Plugins
In reply to: [Affiliates] Once I install Affiliates my site went downHello again…
Im sorry that I said bad things about your plugin… the REAL responsible was WP-MINIFY
Thanks guys for Affiliates!
Good day
Forum: Fixing WordPress
In reply to: Incompatibility between gravity forms, woocomerce and Seo by JoostFinally just in case you ever happend something like this..
The problem was WP-Minify…
Thanks all…
Forum: Fixing WordPress
In reply to: Incompatibility between gravity forms, woocomerce and Seo by JoostHello
It seems that my problem is Affliates…
Any way, all ideas are welcome….
The issue still there…