Below you can find a selection of functions that go in every project, that will instantly improve performance and pagespeed for a website without impacting usability and stability. Everything goes in your functions.php file …
Code snippets
5 Tips and tricks for better pagespeed in WordPress
Below you can find 5 tips and tricks that work for everyone, which is easy to implement and do not require anything other than that you use them;-) 1. Remove style loader tag from CSS Place the following in your theme's functions. php file 2. Remove the following, for overhead and unnecessary code Place the following in your theme's …
Measure phone calls by campaign using WordPress shortcode
Without investing in an expensive external system, using WordPress, you can easily use different phone numbers on your website, based on the source of traffic. A simple implementation of the code below, placed in your themes functions.php file, obviously adapted to your needs, and a consistent use of a shortcode called [showphone] in places …
Improve loading speed of React single page application
Building actual websites with React as a single page application will quickly get you punished by Google, due to the amount of actual Javascript lines of code in your actual build. Making sure you take advantage of codesplitting is essential if you have any desire to get customers from organic Google searches. Here is an example of splitting …
Improve pagespeed score with simple trick
One way to improve the overall pagespeed of your site is to load scripts deferred or async. When you load this way. The following wrapper for all your scripts will make sure that nothing is executed until the DOM is ready for you …