My Website Page Speed is not increasing
-
HEY EXPERTS,
My website page speed is not increasing. I used the wp rocket plugin but still, I am facing errors of Reduce unused CSS, Properly size images, and Avoid serving legacy JavaScript to modern browsers. you can see in the image
I used many plugins for speed optimization but still facing errors. I optimized the images manually by using photoshop but still, I am facing the issue of images size.
After Google Core Web Vital Update my website keyword position is down due to slow speed. Please guide me on how I increase the page speed of my website https://karmanwalayfabrics.pk
Thanks
-
A variety of factors can contribute to a website's slow page speed, and addressing them requires a systematic approach. Here are some common reasons why your website's page speed might not be increasing:
- Large and Unoptimized Images:
High-resolution images and graphics can significantly slow down page load times. Make sure your images are properly resized, compressed, and served in the appropriate format (JPEG, PNG, WebP).
- Too Many HTTP Requests:
Each element on a web page, such as images, scripts, and stylesheets, requires a separate HTTP request. Limit the number of elements and use techniques like image sprites, CSS and JavaScript minification, and combining files where possible.
- Unoptimized Code:
Bloated or inefficient HTML, CSS, and JavaScript code can increase load times. Optimize your code by removing unnecessary characters, white spaces, and comments, and consider using asynchronous loading for JavaScript.
- Server Performance:
Slow server response times can significantly impact page speed. Choose a reliable web hosting provider with good server performance, and consider using Content Delivery Networks (CDNs) to distribute content across multiple servers.
- Lack of Browser Caching:
Enable browser caching to allow returning visitors to load your site faster by storing certain elements locally on their devices.
- Render-Blocking Resources:
JavaScript and CSS files that block the rendering of the page can lead to slower load times. Minimize the use of render-blocking resources and use techniques like asynchronous and deferred loading.
7.Redirects and Broken Links:
Excessive redirects and broken links can increase load times and frustrate users. Minimize redirects and regularly check for broken links.
- External Embedded Media:
Embedded media from external sources (videos, social media widgets, etc.) can slow down your site if not optimized properly. Use lazy loading for media and ensure external sources are not causing delays.
- Database and Plugin Overload:
Excessive database queries and numerous plugins can slow down your website. Optimize your database, use efficient plugins, and eliminate those that are not essential.
- Mobile Responsiveness:
A lack of mobile responsiveness can lead to slow loading times on mobile devices. Ensure your website is fully responsive and optimized for various screen sizes.
- Unoptimized Third-Party Scripts:
Third-party scripts, such as analytics trackers and social media plugins, can impact performance. Evaluate the necessity of these scripts and their impact on load times.
- Too Many Ads:
Excessive ads or poorly optimized ad code can slow down your website. Ensure that ads are properly managed and optimized for performance.
To address these issues, you may need to conduct a thorough website audit, use tools like Google PageSpeed Insights, GTmetrix, or Pingdom to identify specific problems, and then implement the necessary optimizations. Remember that improving page speed is an ongoing process, and regularly monitoring and maintaining your website's performance is crucial for a fast and user-friendly experience.
-
Improving your website's speed, especially in the context of Google's Core Web Vitals, can sometimes require a more detailed approach beyond just using plugins. Here's a guide to address the specific issues you mentioned:
Reduce Unused CSS:
- Manual Cleaning: Sometimes plugins or themes may add unnecessary CSS. You can manually review your CSS files to remove any unused styles.
- Use Tools: There are tools like PurgeCSS that can help to remove unused CSS.
- Minify CSS: If not already done, ensure that your CSS is minified. WP Rocket should handle this, but you can double-check.
Properly Size Images:
- Responsive Images: Make sure you're using the srcset attribute on img tags. WordPress generally does this automatically for content added via the block editor.
- Serve Next-gen Formats: Convert images to WebP format. There are plugins like ShortPixel or Imagify that can do this for you.
- Adaptive Images: Use a solution to serve different image sizes based on the visitor's device.
- Critical Images: Only load above-the-fold images initially. Lazy load the rest as the user scrolls.
Avoid Serving Legacy JavaScript to Modern Browsers:
- Use Babel: If you're developing custom themes or plugins, use a tool like Babel to transpile your JavaScript and use the nomodule attribute to serve modern JavaScript to modern browsers.
- Check Plugins and Themes: It's possible one of your plugins or your theme is including legacy JS. It may be worth reaching out to the developers for an update.
Find more tips by the link: https://onilab.com/blog/magento-2-performance-speed-optimization-guide
-
Hello,
If your website page speed is not increasing, then you must use the websitespeedy tool to help identify performance issues and optimize your website speed. Here are some steps you can take:
Run a speed test: Visit websitespeedy.com and enter your website's URL. The tool will analyze your website's speed and provide a report with recommendations for improvement.
Optimize images: Use an image compression tool like TinyPNG or Smush to compress your images and reduce their file size without compromising their quality. Additionally, ensure that the images are in the correct format (JPG, PNG, GIF) and are optimized for the web.
Preload HTML, CSS, and JavaScript: Preloading HTML, CSS, and JavaScript can help reduce the time it takes for your web pages to load. By preloading these files, you can reduce the time it takes for your web pages to be delivered to your users.
Minimize render-blocking resources: Optimize your website's CSS and JavaScript files to reduce the time it takes to render the page.
Use LazyLoad: LazyLoad is a technique that helps reduce the amount of bandwidth needed to load a page by only loading content when it is needed. LazyLoad can help improve your Page Speed Score by reducing the amount of time it takes for content to be delivered to users.
By implementing these optimizations, you should be able to improve the speed and performance of your website.
-
@frazashfaq11 it also seems that you are suffering from slow server initial response time. I would suggest looking at that as a priority too, this can often counteract any work you are doing to optimise the speed of your site.
What hosting are you on? Is it shared hosting or a VPN?
-
Hi! I am SEO specialist at MjSeo. To solve your problem try to:
- Minimise HTTP requests.
Reduce and merge files.
Now that you know how many requests your site makes, you can start reducing that number. The best place to start is with HTML, CSS, and JavaScript files. - use asynchronous loading for CSS and JavaScript files.
- defer the loading of the JavaScript file.
Delaying a file means preventing it from loading until other elements are loaded. If you defer large files such as JavaScript, you ensure that the rest of your content can load without delay. - Minimise the time to the first byte
In addition to the amount of time it takes for your page to fully load, you'll also want to look at the amount of time it takes to start loading. - Reduce server response time.
- One of the most important factors affecting the loading speed of your page is the time it takes for DNS to look up the page.
- DNS, or Domain Name System, is a server with a database of IP addresses and associated host names. When a user enters a URL into their browser, a DNS server translates that URL into an IP address that points to their location on the network.
- Thus, DNS lookup is the process of finding a particular DNS record. You can think of it as your computer looking up a number in the phone book.
- Translated with www.DeepL.com/Translator (free version)
You also can read here to find more useful information.
- Minimise HTTP requests.
-
@frazashfaq11 Hi! I think the Lighthouse output tells you that while you might have resized the images correctly in Photoshop, the width & height attributes aren't added to your image tags in HTML. So what is happening is that the browser can't reserve the actual space for the image upfront as it has to wait for the image to be loaded.
Got a burning SEO question?
Subscribe to Moz Pro to gain full access to Q&A, answer questions, and ask your own.
Browse Questions
Explore more categories
-
Moz Tools
Chat with the community about the Moz tools.
-
SEO Tactics
Discuss the SEO process with fellow marketers
-
Community
Discuss industry events, jobs, and news!
-
Digital Marketing
Chat about tactics outside of SEO
-
Research & Trends
Dive into research and trends in the search industry.
-
Support
Connect on product support and feature requests.
Related Questions
-
I have recently re-done my website. My buyers guide and my category page are ranking for keywords I'm after.
I have recently re-done my entire site (only a few days). I believe Google is still re-crawling and updating (however, the amount of movement on other searches has been significant). My buyers guide is ranking very high for its intended keywords, as well as high for the keywords of the category page. Both are at the beginning of the second page and I wonder if its dragging me down. What do you think I should do? Is it to early to take action as everything has been completed redone.
Technical SEO | | Code2Chil0 -
HTTPS for form pages?
I am creating a small business website for a friend in Recruitment. It’s very small and mainly just a shop window for the business. There’s no login area for the website, but there are two areas were users can enter information: General contact us form (giving email and phone number) Applying for a job (attaching a resume) The forms are using Ninja Forms – which I believe are secure in passing information. But am I missing anything? Do I need to make these pages https at all? I’m quite new to building sites from scratch. Thanks for your help
Technical SEO | | joberts0 -
1000 Pages on old website. What to do with the 301 redirects for this domain?
Hi Moz Community, I have a 301 redirect question... I just acquired an old domain: Totally in my niche Domain is 14 years old Website exists of 1000 pages Great amount of backlinks Website is offline since about 2 weeks Will place a new website online asap with new url structure For the 50 best scoring pages I wrote a new, but fully comparable/related article. I will put a 301 redirect from those old to the new pages. My question: What to do with the 950 other url's? Should I put a 301 redirect to the homepage? Should I forward those pages to the 404 page? Should I divide the 950 url's with a 301 redirect to the 50 new ones? Another solution maybe? Any idea what would be the best solution so we can save as much Google juice as possible? Thanks in advance!
Technical SEO | | snorkel0 -
Page for page 301 redirects from old server to new server
Hi guys:
Technical SEO | | cindyt-17038
I have a client who is moving their entire ecommerce site from one hosting platform (Yahoo Store) to another (BigCommerce) and from one domain to another. The old domain is registered with the Yahoo as of yesterday and we have redirected the old domain (at the domain level) to the new domain. However, we are having trouble getting the pages to redirect page for page. Currently they are all redirecting to the new domain home page. We did just move the old domain from GoDaddy to Yahoo yesterday thinking this would solve it however as of this morning the old pages are still redirecting to the home page of the new domain. To complete the 301 redirect picture, we uploaded the redirects (all relative links for both from and to) to BigCommerce. And while the domain was hosted at GoDaddy with a redirect to the new domain, they were working. We moved the domain to Yahoo because of email issues thinking it should still work. Is it possibly just a waiting game now as the change populates across the DNS? old url to test:
rock-n-roll-action-figures.com/fender-jazz-bass-miniature-guitar-replica-classic-red-finish.html0 -
Canonicalization on my website
I am kind of new to all this but I would like to understand canonicalization. I have a website which when you arrive on it is www.mysite.com but once inside and flicking back to the homepage it reverts to www.mysite.com/index.html. Should I be doing something re canonicalization? If so what? Will the link juice be diluted by having two home page versions? Thanks
Technical SEO | | FCAbroad0 -
Testimonial pages
Is it better to have one long testimonial page on your site, or break it down into several smaller pages with testimonials? First time I've posted on the forum. But I'm excited! Ron
Technical SEO | | yatesandcojewelers0 -
Should I promote each section of my website
Hi, i have a magazine website and i have been heavily promoting the main page of the site thinking that all the work i am doing for the main page which includes links and so on would then pass onto the rest of my site but i have a feeling this is not correct. Can anyone let me know if i should be concentrating on each section of the site and also on my articles should i be promoting these articles or let the search engines pick them up. I already use facebook and twitter to promote new articles but i would like to know if i should be doing more than this
Technical SEO | | ClaireH-1848860 -
Keywords Ranking Dropped from 1st Page to Above 5th Page
Hello, My site URL is http://bit.ly/161NeE and our site was ranked first page for over hundred keywords before March, 30. But all of a sudden, all the keywords on first page dropped to 5th or 6th page. When we search for our site name without ".com", the results appeared on first page are all from other sites. And our page can only be seen on 6th page. We think we have been penalized by Google. But we don't know the exact reason. Can anyone please help? Some extra info on our site: 1. We have been building links by posting blog, articles and PR. All the articles are unique, written by the writers we hire. It has been working fine all the time. We also varied the anchor text a lot. 2. We didn't make any change to the website. But one real problem with our site is that the server is very slow recently and when google crawl our website, many errors were found, mostly 503, 404 errors. And the total number of errors have reach to over 50,000. Do you think this might be a problem for Google not displaying us on first page? Our technicals are working hard to solve server problem. And if it is solved, shall our rankings be back? Please advise. Thanks.
Technical SEO | | Milanoocom0