Ultimate WordPress Speed Optimisation: No Plugins Required

Categories 
View Recent Posts Latest Announcements Our News Tips & Tricks Short Videos Funny Posts
WordPress Speed Optimisation

Ultimate WordPress Speed Optimisation: No Plugins Required

If you're looking for the ultimate WordPress speed optimisation without relying on paid plugins like Perfmatters, you've just hit the jackpot. Below you'll find battle-tested tweaks you can apply manually via your functions.php or wp-config.php file to disable unnecessary features, reduce bloat, and dramatically improve your site speed.

Let's be honest — WordPress can sometimes feel like it's carrying around a bit too much holiday weight. These WordPress speed optimisation code snippets are like a digital diet plan for your website. And the best part? Unlike my attempts at actual dieting, these actually work! I've personally shaved entire seconds off load times with these tricks, which in website terms is like going from a mobility scooter to a Ferrari.

Table of Contents


Ultimate WordPress Speed Optimisation

Disable Emojis

functions.php
// WHAT THIS DOES: Removes the emoji scripts and styles that WordPress adds by default
// WHY IT HELPS: Reduces HTTP requests and saves ~15KB of unnecessary code
// WHO NEEDS THIS: Everyone who doesn't rely on WordPress's built-in emoji conversion
remove_action('wp_head', 'print_emoji_detection_script', 7);
remove_action('wp_print_styles', 'print_emoji_styles');
PHP

Explanation: WordPress automatically loads emoji support for all sites, even if you never use emojis. This code removes those extra files, making your site load a smidge faster. Most modern browsers and devices already support emojis natively, so WordPress's extra emoji code is redundant for most sites.

Benefits: Reduces page weight, eliminates unnecessary HTTP requests.
Drawbacks: If you use WordPress's emoji conversion feature (different from just typing emojis), those won't work anymore.


Disable Dashicons (for non-logged-in users)

functions.php
// WHAT THIS DOES: Stops the WordPress admin icons (Dashicons) from loading for normal visitors
// WHY IT HELPS: Prevents downloading a ~45KB file your visitors don't need
// WHO NEEDS THIS: Anyone whose site doesn't use Dashicons in the front-end design
if (!is_user_logged_in()) {
  add_action('wp_enqueue_scripts', function() {
    wp_deregister_style('dashicons');
  });
}
PHP

Explanation: Dashicons are the little icons used in the WordPress admin area. For some reason, WordPress loads these icons for everyone visiting your site, even though regular visitors never see the admin area. This code stops those icons from loading for non-logged-in users but keeps them working for admins.

Benefits: Eliminates an unnecessary 45KB download for most visitors.
Drawbacks: If your theme uses Dashicons on the frontend (rare, but possible), those icons will disappear.


Disable Embeds

functions.php
// WHAT THIS DOES: Turns off WordPress's ability to embed content from other sites automatically
// WHY IT HELPS: Prevents loading the embed script (~5KB) and improves privacy
// WHO NEEDS THIS: Anyone who doesn't need auto-embedded YouTube/Twitter/etc content
function disable_embeds_code_init() {
  // Remove REST API endpoint for embeds
  remove_action('rest_api_init', 'wp_oembed_register_route');
  // Turn off oEmbed auto discovery
  remove_filter('rest_pre_serve_request', '_oembed_rest_pre_serve_request', 10);
  // Don't filter oEmbed results
  remove_filter('oembed_dataparse', 'wp_filter_oembed_result', 10);
  // Remove oEmbed discovery links
  remove_action('wp_head', 'wp_oembed_add_discovery_links');
  // Remove oEmbed JavaScript from header
  remove_action('wp_head', 'wp_oembed_add_host_js');
  // Remove filter of the oEmbed result before any HTTP requests are made
  remove_filter('pre_oembed_result', 'wp_filter_pre_oembed_result', 10);
}
add_action('init', 'disable_embeds_code_init', 9999);
PHP

Explanation: WordPress has a feature where you can paste a YouTube URL and it automatically converts it to an embedded video. This is called oEmbed, and it loads extra JavaScript even if you never use it. This code turns off that entire system, making your site leaner.

Benefits: Removes unnecessary scripts, improves page load speed, and enhances privacy by preventing automatic connections to third-party sites.
Drawbacks: You'll need to use the actual embed code instead of just pasting URLs if you want to embed videos or tweets.


Disable XML-RPC

functions.php
// WHAT THIS DOES: Turns off an older WordPress API system that can be a security risk
// WHY IT HELPS: Reduces attack surface and blocks a common entry point for hackers
// WHO NEEDS THIS: Anyone not using the WordPress mobile app or certain legacy tools
function disable_xmlrpc() {
  add_filter('xmlrpc_enabled', '__return_false');
}
add_action('init', 'disable_xmlrpc');
PHP

Explanation: XML-RPC is an older system WordPress uses to allow remote connections, like from mobile apps. Unfortunately, it's also a favourite target for brute-force attacks and can put unnecessary load on your server. Unless you're using the WordPress mobile app or some older tools, you probably don't need it.

Benefits: Improves security by closing a common attack vector, reduces server load from malicious login attempts.
Drawbacks: WordPress mobile app and some third-party services that rely on XML-RPC will stop working.

"Security isn't just about having a strong password—it's about reducing your attack surface wherever possible. XML-RPC is one of those legacy features that creates more risk than reward for most sites."

— From our guide on WordPress Security Risks & Maintenance


Remove jQuery Migrate

functions.php
// WHAT THIS DOES: Stops loading the jQuery compatibility script for older code
// WHY IT HELPS: Reduces JavaScript by ~10KB and makes jQuery load faster
// WHO NEEDS THIS: Sites using modern themes that don't rely on deprecated jQuery
function dequeue_jquery_migrate($scripts) {
  if (!is_admin() && isset($scripts->registered['jquery'])) {
    $script = $scripts->registered['jquery'];
    if ($script->deps) {
      // Remove jQuery Migrate from the dependencies
      $script->deps = array_diff($script->deps, ['jquery-migrate']);
    }
  }
}
add_filter('wp_default_scripts', 'dequeue_jquery_migrate');
PHP

Explanation: jQuery Migrate helps old jQuery code work with newer versions of jQuery. If your theme and plugins are all reasonably up-to-date, you probably don't need this compatibility layer. Removing it makes your site load faster.

Benefits: Reduces JavaScript payload, speeds up jQuery initialization.
Drawbacks: May break functionality in older themes or plugins that rely on deprecated jQuery functions.


Ultimate WordPress Speed Optimisation and Hide WordPress Version

Hide WordPress Version

functions.php
// WHAT THIS DOES: Removes the WordPress version number from your site's HTML source
// WHY IT HELPS: Makes it harder for hackers to target known vulnerabilities in your WordPress version
// WHO NEEDS THIS: Everyone concerned about security (which should be everyone!)
remove_action('wp_head', 'wp_generator');
PHP

Explanation: By default, WordPress broadcasts its exact version number in your page's HTML. This is like putting a sign on your door telling burglars exactly what lock you're using. This code removes that information, making it slightly harder for hackers to know which vulnerabilities might work on your site.

Benefits: Basic security improvement that hides unnecessary information from potential attackers.
Drawbacks: None! This is a no-brainer for everyone.


functions.php
// WHAT THIS DOES: Removes "Really Simple Discovery" link and WordPress shortlink from HTML head
// WHY IT HELPS: Cleans up your HTML and removes unused metadata
// WHO NEEDS THIS: Anyone not using XML-RPC services or WordPress shortlinks
remove_action('wp_head', 'rsd_link');
remove_action('wp_head', 'wp_shortlink_wp_head');
PHP

Explanation: WordPress adds several extra links in your HTML's <head> section that most sites never use. RSD (Really Simple Discovery) links are for old blogging tools, and shortlinks are rarely used by most site owners. This code removes both, making your HTML cleaner.

Benefits: Cleaner HTML code, marginally faster page loads.
Drawbacks: If you actually use WordPress shortlinks or XML-RPC blogging clients (rare these days), those features would be affected.


functions.php
// WHAT THIS DOES: Turns off RSS feeds and removes feed links from your site's header
// WHY IT HELPS: Prevents wasted resources generating unused feeds and reduces HTML clutter
// WHO NEEDS THIS: Sites that don't use RSS for content syndication
function disable_feeds() {
  // Show an error message when someone tries to access a feed
  wp_die(__('No feed available.')); 
}
// Disable all types of feeds
add_action('do_feed', 'disable_feeds', 1);
add_action('do_feed_rdf', 'disable_feeds', 1);
add_action('do_feed_rss', 'disable_feeds', 1);
add_action('do_feed_rss2', 'disable_feeds', 1);
add_action('do_feed_atom', 'disable_feeds', 1);
// Remove feed links from head
remove_action('wp_head', 'feed_links', 2);
remove_action('wp_head', 'feed_links_extra', 3);
PHP

Explanation: WordPress automatically creates RSS feeds for your content and adds links to those feeds in your site's HTML. If you're not using RSS (most modern sites aren't), these are just wasting server resources and adding clutter to your HTML.

Benefits: Reduces server load, simplifies HTML, prevents feed crawlers from accessing unused content.
Drawbacks: Anyone using feed readers to follow your content won't be able to anymore. If you have readers who subscribe via RSS, don't use this.


Disable Self Pingbacks

functions.php
// WHAT THIS DOES: Prevents WordPress from notifying itself when you link to your own content
// WHY IT HELPS: Reduces database clutter and unnecessary server processing
// WHO NEEDS THIS: Everyone (self-pingbacks serve no practical purpose)
function disable_self_pings(&$links) {
  foreach ($links as $l => $link) {
    // Check if the link is to your own site
    if (0 === strpos($link, get_option('home'))) unset($links[$l]);
  }
}
add_action('pre_ping', 'disable_self_pings');
PHP

Explanation: When you link to another WordPress site, WordPress sends a "pingback" to notify that site. Oddly, WordPress also sends these notifications to itself when you link to your own content. This creates pointless database entries and wastes processing time. This code stops WordPress from pinging itself.

Benefits: Reduces unnecessary database entries, prevents wasted processing power.
Drawbacks: None! This is a pure improvement.


Disable REST API (Front-end only)

functions.php
// WHAT THIS DOES: Turns off WordPress's modern API for front-end visitors
// WHY IT HELPS: Reduces potential attack vectors and eliminates unnecessary endpoints
// WHO NEEDS THIS: Sites not using the block editor or API-dependent features
// WARNING: Will break the block editor and some modern plugins
add_filter('rest_enabled', '__return_false');
add_filter('rest_jsonp_enabled', '__return_false');
remove_action('xmlrpc_rsd_apis', 'rest_output_rsd');
remove_action('wp_head', 'rest_output_link_wp_head', 10);
remove_action('template_redirect', 'rest_output_link_header', 11);
PHP

Explanation: The WordPress REST API allows external access to your WordPress data through JSON endpoints. While it enables modern features like the block editor, it also exposes more of your site data publicly. This code disables it for front-end visitors while keeping it available in the admin area.

Benefits: Improved security, fewer exposed endpoints.
Drawbacks: Will break the Gutenberg block editor and many modern plugins. Only use this if you're using the classic editor and don't have plugins that depend on the REST API.

"When optimising WordPress, it's always a balance between speed and functionality. The REST API is essential for modern WordPress features, but if you're sticking with classic tools, disabling it can give you a security boost."

— From our post on WordPress Turbo Hosting


Disable Google Maps (loaded via theme or plugin)

functions.php
// WHAT THIS DOES: Prevents Google Maps scripts from loading on all pages
// WHY IT HELPS: Eliminates a large JavaScript file (~45KB) when not needed
// WHO NEEDS THIS: Sites with maps only on specific pages, or not using maps at all
// NOTE: You'll need to adjust 'google-maps' to match your theme's script handle
function dequeue_gmaps() {
  // Remove Google Maps scripts (customize the handle name as needed)
  wp_dequeue_script('google-maps');
  wp_deregister_script('google-maps');
}
add_action('wp_enqueue_scripts', 'dequeue_gmaps', 100);
PHP

Explanation: Many themes load Google Maps on every page, even if you only use maps on your contact page. This wastes bandwidth and slows loading on all your other pages. This code removes Google Maps scripts entirely.

Benefits: Faster page loads, reduced external dependencies.
Drawbacks: Maps won't work anywhere on your site. If you need maps on specific pages, consider a more selective solution or only use this code on pages without maps.


Exclude Post IDs from Homepage

functions.php
// WHAT THIS DOES: Prevents specific posts from appearing on your homepage
// WHY IT HELPS: Lets you hide certain content without using complex plugins
// WHO NEEDS THIS: Anyone with posts that should be accessible but not featured
function exclude_posts_home($query) {
  if ($query->is_home() && $query->is_main_query()) {
    // Replace these numbers with the IDs of posts you want to exclude
    $query->set('post__not_in', [23, 19]); 
  }
}
add_action('pre_get_posts', 'exclude_posts_home');
PHP

Explanation: Sometimes you have content that should be published but not displayed on your main blog page. Maybe it's a thank-you post or specialized content only accessible via direct links. This code lets you hide specific posts from your homepage while keeping them published and accessible via direct URLs.

Benefits: More control over homepage content without needing additional plugins.
Drawbacks: None, as long as you correctly identify the post IDs you want to exclude.


WordPress Speed Optimisation - Disable Comments

Disable Comments Site-wide

functions.php
// WHAT THIS DOES: Completely removes comment functionality from your WordPress site
// WHY IT HELPS: Eliminates comment-related code, database queries, and spam risks
// WHO NEEDS THIS: Sites that don't need or want user comments
add_action('admin_init', function() {
  // Loop through all post types
  foreach (get_post_types() as $type) {
    // Check if the post type supports comments
    if (post_type_supports($type, 'comments')) {
      // Remove comment support
      remove_post_type_support($type, 'comments');
      // Remove trackback support too
      remove_post_type_support($type, 'trackbacks');
    }
  }
});
PHP

Explanation: If you don't use comments on your site, why load all the comment-related code and deal with potential spam? This code completely disables comment functionality across your entire site, for all post types. It's a more thorough solution than just turning comments off in the settings.

Benefits: Eliminates comment-related spam, simplifies your admin area, improves security, speeds up page loads.
Drawbacks: You won't be able to use comments anywhere (obviously). If you want commenting on just some content, this isn't the right approach.


Add Blank Favicon

functions.php
// WHAT THIS DOES: Stops WordPress from trying to show your site icon in browsers
// WHY IT HELPS: Prevents 404 errors if you haven't set up a favicon
// WHO NEEDS THIS: Sites without a custom favicon that don't want to use the default
remove_action('wp_head', 'wp_site_icon', 99);
PHP

Explanation: WordPress tries to display a site icon (favicon) in browser tabs, but if you haven't set one up, this can cause 404 errors. If you don't have a favicon and don't want one, this code prevents WordPress from trying to display it, eliminating those 404 errors.

Benefits: Prevents unnecessary 404 errors in browser consoles.
Drawbacks: You won't have any site icon in browser tabs unless you add one manually with your own code.


Remove Global Styles & Separate Block Styles

functions.php
// WHAT THIS DOES: Removes WordPress's default CSS for the block editor
// WHY IT HELPS: Eliminates ~30KB of CSS that might be unnecessary
// WHO NEEDS THIS: Sites using classic editor or custom block styling
add_action('wp_enqueue_scripts', function() {
  // Remove global styles added by WordPress 5.9+
  wp_dequeue_style('global-styles');
  // Remove default block library CSS
  wp_dequeue_style('wp-block-library');
});
PHP

Explanation: WordPress includes a bunch of CSS styles for the block editor, even on sites that don't use blocks or have their own custom styling. This code removes those default styles, making your site leaner if you don't need them.

Benefits: Reduces CSS payload, fewer render-blocking resources.
Drawbacks: If you're using the block editor, your blocks might look unstyled or broken. Only use this if you have custom block styling or don't use the block editor at all.

"WordPress's block editor brought modern editing capabilities, but also added extra code weight. If you're sticking with the classic editor for its simplicity, you might as well remove the unused block code."

— From our post Creating a WordPress Website: A Beginner's Guide


Tweak Autosave and Heartbeat

In wp-config.php:

wp-config.php
// WHAT THIS DOES: Changes how often WordPress automatically saves your drafts
// WHY IT HELPS: Reduces server load from frequent autosaves
// WHO NEEDS THIS: Sites with long-form content or multiple concurrent editors
// Set autosave to every 3 minutes instead of default 1 minute
define('AUTOSAVE_INTERVAL', 180);
PHP

In functions.php:

functions.php
// WHAT THIS DOES: Completely disables the WordPress Heartbeat API
// WHY IT HELPS: Eliminates AJAX polling that happens every 15-60 seconds
// WHO NEEDS THIS: Sites where admin performance is more important than real-time updates
// CAUTION: Will disable some real-time features in the WordPress admin
add_filter('heartbeat_send', '__return_false');
PHP

Or to reduce frequency instead:

functions.php
// WHAT THIS DOES: Slows down the Heartbeat API instead of disabling it completely
// WHY IT HELPS: Reduces AJAX requests while keeping functionality
// WHO NEEDS THIS: A good compromise for most WordPress sites
add_filter('heartbeat_settings', function($settings) {
  // Change polling interval to 15 seconds (default is often 5 seconds)
  $settings['interval'] = 15;
  return $settings;
});
PHP

Explanation: WordPress has two background processes that can be resource-intensive: Autosave and Heartbeat. Autosave automatically saves your drafts while editing, and Heartbeat is an AJAX polling system that enables real-time updates in the admin area. Both can put unnecessary load on your server.

Benefits: Reduced server load, better admin performance, less resource usage.
Drawbacks: Less frequent draft saving (could lose more work in case of a crash), and reducing/disabling Heartbeat affects real-time notifications and post locking in the admin area.


Final Thoughts

Final Word

None of these changes are permanent—you can always re-enable features by removing or commenting out the relevant code. For those who prefer a simpler, UI-based approach, tools like Perfmatters are great—but if you're comfortable with code, these tweaks give you more control and better speed, for free.

I've been implementing these tweaks on client sites for years, and the performance gains can be genuinely impressive. On one recent project, we shaved off nearly a second of load time just by applying these "digital weight loss" techniques. That might not sound like much until you realise that studies show 40% of visitors abandon sites that take more than 3 seconds to load!

At this point, I should probably charge you for this information, but I'll settle for a cuppa if we ever meet. These optimisations have saved my bacon on countless projects where clients demanded faster sites without additional costs. It's amazing how impressed people are when you turn their digital tortoise into a hare with just a few lines of code.

"Speed isn't just a technical metric—it's a core component of user experience. Every millisecond you shave off load times translates to improved engagement and conversion rates."

— From our guide on Best WordPress Hosting for 2025


How can I improve WordPress speed without using plugins?

You can enhance WordPress speed without plugins by implementing manual optimizations like disabling emojis, dashicons, embeds, XML-RPC, jQuery Migrate, and other unnecessary elements that can impact site performance.

What are the benefits of disabling emojis in WordPress?

Disabling emojis in WordPress can lead to enhanced site speed by reducing unnecessary script loading and improving overall performance by eliminating elements that may not be essential for the site's functionality.

What are the security benefits of removing XML-RPC from WordPress?

Removing XML-RPC from WordPress can enhance security by eliminating a potential entry point for attackers, reducing the risk of brute force attacks and unauthorized access to the site through this protocol.

How can I hide the WordPress version from the site's HTML source?

You can hide the WordPress version from the site's HTML source by modifying the functions.php file or using specific code snippets that prevent the version number from being exposed, thereby enhancing security by reducing the risk of potential vulnerabilities.

How can I prevent WordPress from notifying itself when linking to own content?

You can prevent WordPress from self-pingbacks by disabling this feature in the WordPress settings, which helps improve database efficiency and prevents unnecessary notifications that do not add value to the site.

What are the potential drawbacks of disabling RSS feeds and links in WordPress?

Disabling RSS feeds and links in WordPress may limit content distribution options and reduce engagement possibilities with external platforms, potentially impacting the reach and visibility of the site's content beyond its domain.

How can I exclude specific post IDs from the homepage in WordPress?

You can exclude specific post IDs from the homepage in WordPress by utilizing code snippets or plugins that allow you to customize the query for the homepage, ensuring that selected posts are not displayed on the main page.

What are the advantages of removing global styles and separate block styles in WordPress?

Removing global styles and separate block styles in WordPress can streamline the site's design consistency, reduce unnecessary CSS loading, and optimize performance by eliminating redundant styling elements that may not be required for the site's layout.

How can I tweak autosave and heartbeat settings in WordPress for improved performance?

You can enhance WordPress performance by adjusting autosave and heartbeat settings to reduce the frequency of automatic saves and heartbeats, thereby decreasing server load and optimizing resources for better site responsiveness.

What are the recommended techniques for WordPress speed optimization without plugins?

Recommended techniques for WordPress speed optimization without plugins include manual adjustments like disabling unnecessary features, cleaning up code, optimizing settings, and customizing functionalities tailored to improve site performance and security.

What are the key features of Elementor Pro for WordPress?

Elementor Pro for WordPress offers advanced features like theme builder, popup builder, WooCommerce builder, dynamic content, custom CSS, motion effects, form integrations, and more, empowering users to create visually stunning websites with enhanced customization and functionality.

How do I add a blank favicon in WordPress?

To add a blank favicon in WordPress, you can upload a transparent or blank image file as the site's favicon through the WordPress Customizer or by manually editing the theme's header.php file to link to the blank favicon image.

What is the impact of disabling comments site-wide in WordPress?

Disabling comments site-wide in WordPress can streamline site maintenance, reduce spam risks, improve page loading speed, and enhance user experience by focusing on content without distractions from comments.

How can I disable Google Maps loaded via theme or plugin in WordPress?

You can disable Google Maps loaded via theme or plugin in WordPress by removing or deactivating the specific map integration code, ensuring that unnecessary map scripts are not loaded on the site to optimize performance and reduce server requests.

Learn more about our WordPress Hosting.


Want expert help optimising your WordPress site? Get in touch with us at 365i. We live and breathe fast, secure, no-nonsense WordPress Hosting: https://staging.365i.co.uk/wordpress-hosting/.

When you host with us, many of these optimisations come pre-configured on our WordPress Turbo Hosting platform, so you can focus on creating content, not tweaking code. And if we're being honest, wouldn't you rather be doing literally anything other than debugging your functions.php file on a Friday night?

Share this post

Prompt and efficient service - many thanks!
I’ve had a few websites over the years, so I thought I knew what to expect… I didn’t. The new Lockerfella site is way beyond anything I had in mind.

The big one for me is performance. I know how important Google PageSpeed is, and this site hits 100 across the board, which I never thought I’d see.

Fast, solid, and done properly. 365i is easily the best hosting I’ve used, with a team that really knows their stuff. You’d have to be mad to go anywhere else.
I needed to move my domain from the current provider to a new one with excellent service and superb customer focus - especially as I'm pretty hopeless with the web management side of IT! I found the company that gave me all of that and more in 365i. Absolutely brilliant service and help right from the start - in fact even before the start because Mark helped me sort the whole process out before I'd signed up. Can't beat that. Recommended. 7 stars,11/10. Thanks again Mark for all your help (and patience)!
I was really not happy with my website and its structure, but luckily I found Mark at 365i, I moved hosting to 365i, Mark very quickly found all of the faults with my Wordpress site that my previous company missed altogether, most importantly the crucial AI discovery, outdated high site security risk plugins, out of date website core. He fixed all of the issues and errors within 72 hours. Personal attention at the highest level and always available in times when support is urgently needed. It’s only been 2 weeks since the sites update and improvements but we are already seeing positive results especially within the AI search results.
Thank you for your support Mark
Jeffrey Avery MD
Avery Associates
Response from the owner:You’re very welcome Jeff. It’s a pleasure working with you!
Thanks 365i for going above and beyond on my Daughters wedding website. A friendly, professional service, a good quality look and feel and functionality we didn't even know we needed. Would definitely recommend you !
Response from the owner:It was an absolute pleasure creating the site for their big day!
Mark is extremely knowledgeable and a great person to speak and learn from - highly recommend his services!
Response from the owner:Thanks Alex! :-)
365i are fantastic! I'm not very good with IT and every one of my needs have been met with a friendly and beyond helpful response.
My most recent issue (self created I may add) was dealt with swiftly by Mark who I cant thank enough for his efforts supporting me. Thank you for a great service!
Response from the owner:Absolute pleasure Nick. So glad we could help ☺️
Very good support. Really Really impressed with the effort you’ve put into this, Mark. You’ve clearly gone the extra mile, and it shows. This web page has been a huge help — can’t imagine managing without it now. Thank you so much, truly appreciate it!appreciated! Thumbs up (y)
I don't know what to say???!

Absolutely BLOODY Marvellous!!

Mark on ticket chat, live chat, customer service top notch so easy to get in contact and so super helpful!

THanks guys!
Response from the owner:Thanks Callum! Reviews like that make us all proud of what we do! Thank you!
Exceptional Website Development Experience!
Working with Mark was an absolute pleasure. He understood our vision for the Grange Transport website and brought it to life beautifully. His attention to detail, creativity, and responsiveness throughout the entire process was outstanding. The final result was a modern, user-friendly site that perfectly reflects our brand and has already received fantastic feedback from our clients and staff. We couldn’t be happier and highly recommend his services to anyone looking for top-notch website development!
Thank you Mark!
Wow!!!! This guy goes above and beyond for anyone!! Must admit, I never really knew his limits but I can honestly say that without this amazing web page, I would be struggling!! Thankyou so much, I love it!!!
Response from the owner:Thank you so much Lena! 😁
Great service, best prices! Fast to respond, Mark goes beyond duty to find solutions to any trouble. Highly recommend!
Response from the owner:Thank you! :-)
Fantastic service. After the best part of 3 years agonising over what to do with an old website with Yell, and wanting a new site to reflect the new business name, in less than a week of speaking to Mark at 365i, everything is now pointing to a striking brand new website, with my domain name of my choice and at a very affordable price. Great work.
Response from the owner:It's been a pleasure!! :-)
Migrated from A2 Hosting to 365i and the level of customer service and support is absolutely exceptional. What Mark doesn't know about hosting and websites isn't worth knowing. He goes past just hosting and is always willing to help. Great to feel in safe hands. Highly recommend.
Amazing service. Mark is always happy to help and is easy to contact. Highly recommend!
Superb service, hosting is extremely fast with no issues at all. Mark is extremely helpful and very knowledgeable. Highly recommend 365i to anyone looking for hosting.
Having moved from a much slower hosting platform, this new setup is not only much faster, but has a far more user-friendly interface and some incredible friendly support, nothing is too much trouble, the whole process of transfer has been completed so seamlessly that there was barely any downtime and no loss of data. Really happy to have come across this company and looking forward to making use of the services offered within my new hosting package. Highly recommend :)

I wrote the above a couple of years ago (I think!) and since then have done a good bit more with more websites, the support when needed is always insanely fast, and often goes way above and beyond the call of duty, really cannot fault the service received from 365i, I stand by my original statement that I'd highly recommend. 5 stars is really not enough so here's a few more ***** ***** *****
Mark has been great to work with and I would definitely recommend his services. In addition to hosting, Mark has also designed a number of great looking, quick and responsive websites for us. Excellent work and service
Absolutely amazing customer service!
For years I been having constant issues with my website from plug-in issues to my hosting provider not giving me enough resources to actually host my site properly. Mark worked tirelessly and managed to not only solve all my website issues but also provide a much better hosting service at a fraction of the cost that I was previously paying.

I’m not very technically minded but he was able to explain things in a way I could understand and I’m so happy to have finally find a company that will help when and if things do go wrong.

With my website and hosting all sorted I can concentrate on running my business and I genuinely look forward to many years to come with 365i.
Very knowledgable and did a great job - I would definitely use again.
Absolute expert. Would whole heartedly recommend Mark for difficult IT issues. Good hosting too.
Was very generous with his time late, at night. Guided me through an unusual technical change. Highly recommended.
The best hosting provider I've ever had the pleasure of dealing with (and I've tried a few over the years!). Superb personal service, no foreign call centres and you get to deal with people who really know what they're talking about. Performance is top notch too - experienced an immediate increase in website responsiveness after transferring to them. Can't recommend highly enough.
Response from the owner:Many thanks David! :-)
Outstanding support & super friendly. I’d be lost without 365i. It’s like they do anything they can to help. Nothing is too much trouble. Oh, and fastest Wordpress hosting I’ve ever had! Totally recommended!
excellent company for all your web needs. Very knowledgeable very quick results and excellent communication. Recommended.
This guy was really helpful a genius at work
We have recently migrated our website to 365i. With Marks help not only was the migration seamless and speedy but Mark fixed a lot of persistent issues that had been around for ages. Since then the support we have got from Mark is exemplary and I simply could not have wished for better. Mark provides the best support packages you could wish for and this is the best business decision we have made in years. Perfect!!!
Response from the owner:Thanks Steve! Really appreciated!!
I've been with Mark for many years now and really appreciate his attention to detail and technical knowledge of web design, including all things associated with websites. He is at all times helpful, understanding and happy to impart his knowledge, which is always educational.
Whilst I haven't dealt with Mark directly as a client, a client of ours hosts with him and the dealings I have had with Mark have been great. Easy to talk to, helpful and knowledgeable.
Amazing hosting with great support, always going above and beyond to help and make the clients happy. Recommended.
Mark @ 356i is a WIZARD. The work he has created on WordPress - Woocommerce is outstanding, Mark has created a game changing ecommerce store giving me absolutely satisfaction. His knowledge in the Web world is just impressive,their really isn't anything he doesn't know!
Response from the owner:Pleased to know your happy with my work. It means a lot. Thank you so much!
Mark is excellent. His prices are very reasonable and he does an excellent job. So far Mark has re-designed one of our websites to an excellent looking, quick & responsive site and will soon be taking over our hosting. Great
Response from the owner:Thank you so much Andy! Much appreciated!
Mark has been extremely helpful with some website and system issues we recently faced, offering easy solutions to all of the problems without any fuss at all. We cannot thank you enough for all of your help!
If you want the best....look no further. I'm slightly reluctant in leaving such a good review as we want him to ourselves! Not enough stars or words to explain this man's level or expertise and work ethic. Wow!
If carling did web hosts and support. Simply the best! Thank you so much Mark.
No words really. I've had a few companies myself and always give my best, and this is the first time I've experienced the same back.

What a savour mark has been for us. Can't do enough to help... 10 stars!!!!
Mark was absolutely amazing from the get go. Very professional and went above and beyond what was expected. I wish there was a 6 star option! His responses are as quick as his servers! Top man highly recommended. Thank you, Denvah at Full Tank Camper Van Hire
Dear Mark and 365ico.uk, I'll be forever in your debt for the wonderful service, my business came into existence because of your undivided support and care.
Absolutely brilliant. Great value hosting and very high quality, but the support you get from Mark is second to none, he will literally bend over backwards to help you, even at silly o'clock on weekends. You just won't get this level of support anywhere else. And he really knows his stuff.
I approached Mark at 365i to ask him to migrate my website to their server since my website was very slow on my existing server. Not only did he carry out the migration within 24 hours but he actually completely redesigned my website free-of-charge to a standard that I was blown away by. He then took me step-by-step through everything he had done so that I now feel that I can make any further changes myself should the need arise, although he assures me he is always happy to be contacted if I struggle. He has done a fantastic job and I would recommend him and 365i with no hesitation!
Very helpful and cover every area. Mark especially is very effective in finding solutions for any queries you may have and goes the extra mile to assist. Overall, excellent service!
Mark provided superb service - rapid response, careful consideration of my requirements and great website design. Everything was wrapped up really quickly and with superb quality. Highly recommended.
Seriously I should have listened to Mark from the moment he approached me to migrate to 365i, very professional hosting with state of the art control panel that automatically optimises almost every aspect of your website for faster loading.
Mark has done a great job building my website for me. Easy to work with and professional. Will be using him and his company for any help I need in the future. I will be using the hosting sevices he provides for my other webistes.
Mark is very helpful and puts a lot of effort in his work. Highly recommended.
Wow! My website colouredglass.co.uk was running very slow with a previous hosting company, I signed up in minutes at 365i.co.uk Not only is my website super fast and loading in less than 3 seconds from 11 seconds, I am saving £23.81 per Month!!! - Keep up the good work Team365i
Mark has looked after us for 14 years and designed 3 websites in this time. I have been lucky to find them, they have been a great help to us over the years. Always available to answer questions or make changes to our website quickly. Our business wouldn't be where it is now without the support of 365i.
Really impressed with the on-boarding attention. I have not had service like this before.
Mark has helped us numerous times with our website. His skills are second to none and he gets back to us very quickly with every project. We would definitely recommend him for all your web hosting and design needs.
Excellent service and technically brilliant. Would not hesitate to recommend.
Excellent Customer Service Very Fast Response.
Awesome hosting service, customer support second to none with dedicated UK based team, highly recommend to agency and business owners
Response from the owner:Thanks Johnny! Great to have you with us!
Service beyond fantastic. It's hard to put into words how thorough and in-depth the level of service was, and it ftruly felt as though Mark had a real passion for my business, and was himself thrilled to achieve high speeds! I cannot reccomend enough! Amazing!
After doing Internet Marketing for over 23 years, I know what QUALITY and RELIABILITY is. It's a fine line between your failure and success. Damage can happen in a second and restoration can take years. That's why I trust my precious projects to 365i host along with their other services besides just hosting. I NEVER had any scam upsets from 365i that other hosting companies tried to do when emergencies happened. Some even blamed me while charging ridiculous fees just for so-called premium hosting. Be assured that 365i is a TRUE PREMIUM HOSING and prices are low-funny. This day, I put my word on it: I have not seem anyone better than 365 when it comes to speed, reliability, support and ethics. Uploaded are the pictures of me and just some precious projects I trust 365i. Believe me, it is not easy to please me because I am a certified marketer by AWAI, student of Joe Vitale, Dan Kennedy and other marketing legends. I know when someone delivers quality and when someone talks empty promises. Hey, I am a copywriter, I smell that stuff a mile away. Yet, with 365i, I am ASSURED - less things to think about. If 365i does anything for me - it is always A+ QUALITY! The owner, Mr. Mark is a hero himself who treats you with respect, a superb web designer himself, a business owner, Internet marketer... Do you know what this means to you? That he is NOT just a "blah, blah, yeah, yeah, we can definitely do it" sales rep who will tell you anything you want to hear. If you are ready for truth, sweet or harsh, ask 365i. Not only they help you with superb hosting, but also with your business growth - WITHOUT any BS. Mark says it as it is. And even I am way over 20 years in the game, I still listen to wise advices of Mark! After you start dealing with 365i, you too will see the massive difference and automatically drop a huge weight off of your shoulders! No scammers here! Very honest owner from UK (born and raised in UK, holding REAL European values, like some others who will choke and sell their soul to the devil for $20.00).
Response from the owner:Thank you for a glowing review!
365i - What a great company to deal with. Friendly, professional, Knowledgeable and speedy service. The exceptional service from 365i has been crucial to my business and I highly recommend their services.
Great service, very friendly and knowledgeable. Mark has the patience to explain to those of us who don't speak tech! Would recommend.
Response from the owner:Oh thank you Peta. Much appreciated
Excellent. Thoroughly Recommend
365i has dramatically speeded up our wordpress website which was beyond dlow! Great service from people who seem to genuinely care about their customers. Thanks so much. N
These guys are so helpful! They migrated my website for me in a few minutes and then set about improving the page speed. Best move I’ve made in a long time! And great value too! Thank you 😊
Response from the owner:Thank you. We do our very best.
Prompt and efficient service - many thanks!
I’ve had a few websites over the years, so I thought I knew what to expect… I didn’t. The new Lockerfella site is way beyond anything I had in mind.

The big one for me is performance. I know how important Google PageSpeed is, and this site hits 100 across the board, which I never thought I’d see.

Fast, solid, and done properly. 365i is easily the best hosting I’ve used, with a team that really knows their stuff. You’d have to be mad to go anywhere else.
I needed to move my domain from the current provider to a new one with excellent service and superb customer focus - especially as I'm pretty hopeless with the web management side of IT! I found the company that gave me all of that and more in 365i. Absolutely brilliant service and help right from the start - in fact even before the start because Mark helped me sort the whole process out before I'd signed up. Can't beat that. Recommended. 7 stars,11/10. Thanks again Mark for all your help (and patience)!
I was really not happy with my website and its structure, but luckily I found Mark at 365i, I moved hosting to 365i, Mark very quickly found all of the faults with my Wordpress site that my previous company missed altogether, most importantly the crucial AI discovery, outdated high site security risk plugins, out of date website core. He fixed all of the issues and errors within 72 hours. Personal attention at the highest level and always available in times when support is urgently needed. It’s only been 2 weeks since the sites update and improvements but we are already seeing positive results especially within the AI search results.
Thank you for your support Mark
Jeffrey Avery MD
Avery Associates
Response from the owner:You’re very welcome Jeff. It’s a pleasure working with you!
Thanks 365i for going above and beyond on my Daughters wedding website. A friendly, professional service, a good quality look and feel and functionality we didn't even know we needed. Would definitely recommend you !
Response from the owner:It was an absolute pleasure creating the site for their big day!
Mark is extremely knowledgeable and a great person to speak and learn from - highly recommend his services!
Response from the owner:Thanks Alex! :-)
365i are fantastic! I'm not very good with IT and every one of my needs have been met with a friendly and beyond helpful response.
My most recent issue (self created I may add) was dealt with swiftly by Mark who I cant thank enough for his efforts supporting me. Thank you for a great service!
Response from the owner:Absolute pleasure Nick. So glad we could help ☺️
Very good support. Really Really impressed with the effort you’ve put into this, Mark. You’ve clearly gone the extra mile, and it shows. This web page has been a huge help — can’t imagine managing without it now. Thank you so much, truly appreciate it!appreciated! Thumbs up (y)
I don't know what to say???!

Absolutely BLOODY Marvellous!!

Mark on ticket chat, live chat, customer service top notch so easy to get in contact and so super helpful!

THanks guys!
Response from the owner:Thanks Callum! Reviews like that make us all proud of what we do! Thank you!
Exceptional Website Development Experience!
Working with Mark was an absolute pleasure. He understood our vision for the Grange Transport website and brought it to life beautifully. His attention to detail, creativity, and responsiveness throughout the entire process was outstanding. The final result was a modern, user-friendly site that perfectly reflects our brand and has already received fantastic feedback from our clients and staff. We couldn’t be happier and highly recommend his services to anyone looking for top-notch website development!
Thank you Mark!
Wow!!!! This guy goes above and beyond for anyone!! Must admit, I never really knew his limits but I can honestly say that without this amazing web page, I would be struggling!! Thankyou so much, I love it!!!
Response from the owner:Thank you so much Lena! 😁
Great service, best prices! Fast to respond, Mark goes beyond duty to find solutions to any trouble. Highly recommend!
Response from the owner:Thank you! :-)
Fantastic service. After the best part of 3 years agonising over what to do with an old website with Yell, and wanting a new site to reflect the new business name, in less than a week of speaking to Mark at 365i, everything is now pointing to a striking brand new website, with my domain name of my choice and at a very affordable price. Great work.
Response from the owner:It's been a pleasure!! :-)
Migrated from A2 Hosting to 365i and the level of customer service and support is absolutely exceptional. What Mark doesn't know about hosting and websites isn't worth knowing. He goes past just hosting and is always willing to help. Great to feel in safe hands. Highly recommend.
Amazing service. Mark is always happy to help and is easy to contact. Highly recommend!
Superb service, hosting is extremely fast with no issues at all. Mark is extremely helpful and very knowledgeable. Highly recommend 365i to anyone looking for hosting.
Having moved from a much slower hosting platform, this new setup is not only much faster, but has a far more user-friendly interface and some incredible friendly support, nothing is too much trouble, the whole process of transfer has been completed so seamlessly that there was barely any downtime and no loss of data. Really happy to have come across this company and looking forward to making use of the services offered within my new hosting package. Highly recommend :)

I wrote the above a couple of years ago (I think!) and since then have done a good bit more with more websites, the support when needed is always insanely fast, and often goes way above and beyond the call of duty, really cannot fault the service received from 365i, I stand by my original statement that I'd highly recommend. 5 stars is really not enough so here's a few more ***** ***** *****
Mark has been great to work with and I would definitely recommend his services. In addition to hosting, Mark has also designed a number of great looking, quick and responsive websites for us. Excellent work and service
Absolutely amazing customer service!
For years I been having constant issues with my website from plug-in issues to my hosting provider not giving me enough resources to actually host my site properly. Mark worked tirelessly and managed to not only solve all my website issues but also provide a much better hosting service at a fraction of the cost that I was previously paying.

I’m not very technically minded but he was able to explain things in a way I could understand and I’m so happy to have finally find a company that will help when and if things do go wrong.

With my website and hosting all sorted I can concentrate on running my business and I genuinely look forward to many years to come with 365i.
Very knowledgable and did a great job - I would definitely use again.
Absolute expert. Would whole heartedly recommend Mark for difficult IT issues. Good hosting too.
Was very generous with his time late, at night. Guided me through an unusual technical change. Highly recommended.
The best hosting provider I've ever had the pleasure of dealing with (and I've tried a few over the years!). Superb personal service, no foreign call centres and you get to deal with people who really know what they're talking about. Performance is top notch too - experienced an immediate increase in website responsiveness after transferring to them. Can't recommend highly enough.
Response from the owner:Many thanks David! :-)
Outstanding support & super friendly. I’d be lost without 365i. It’s like they do anything they can to help. Nothing is too much trouble. Oh, and fastest Wordpress hosting I’ve ever had! Totally recommended!
excellent company for all your web needs. Very knowledgeable very quick results and excellent communication. Recommended.
This guy was really helpful a genius at work
We have recently migrated our website to 365i. With Marks help not only was the migration seamless and speedy but Mark fixed a lot of persistent issues that had been around for ages. Since then the support we have got from Mark is exemplary and I simply could not have wished for better. Mark provides the best support packages you could wish for and this is the best business decision we have made in years. Perfect!!!
Response from the owner:Thanks Steve! Really appreciated!!
I've been with Mark for many years now and really appreciate his attention to detail and technical knowledge of web design, including all things associated with websites. He is at all times helpful, understanding and happy to impart his knowledge, which is always educational.
Whilst I haven't dealt with Mark directly as a client, a client of ours hosts with him and the dealings I have had with Mark have been great. Easy to talk to, helpful and knowledgeable.
Amazing hosting with great support, always going above and beyond to help and make the clients happy. Recommended.
Mark @ 356i is a WIZARD. The work he has created on WordPress - Woocommerce is outstanding, Mark has created a game changing ecommerce store giving me absolutely satisfaction. His knowledge in the Web world is just impressive,their really isn't anything he doesn't know!
Response from the owner:Pleased to know your happy with my work. It means a lot. Thank you so much!
Mark is excellent. His prices are very reasonable and he does an excellent job. So far Mark has re-designed one of our websites to an excellent looking, quick & responsive site and will soon be taking over our hosting. Great
Response from the owner:Thank you so much Andy! Much appreciated!
Mark has been extremely helpful with some website and system issues we recently faced, offering easy solutions to all of the problems without any fuss at all. We cannot thank you enough for all of your help!
If you want the best....look no further. I'm slightly reluctant in leaving such a good review as we want him to ourselves! Not enough stars or words to explain this man's level or expertise and work ethic. Wow!
If carling did web hosts and support. Simply the best! Thank you so much Mark.
No words really. I've had a few companies myself and always give my best, and this is the first time I've experienced the same back.

What a savour mark has been for us. Can't do enough to help... 10 stars!!!!
Mark was absolutely amazing from the get go. Very professional and went above and beyond what was expected. I wish there was a 6 star option! His responses are as quick as his servers! Top man highly recommended. Thank you, Denvah at Full Tank Camper Van Hire
Dear Mark and 365ico.uk, I'll be forever in your debt for the wonderful service, my business came into existence because of your undivided support and care.
Absolutely brilliant. Great value hosting and very high quality, but the support you get from Mark is second to none, he will literally bend over backwards to help you, even at silly o'clock on weekends. You just won't get this level of support anywhere else. And he really knows his stuff.
I approached Mark at 365i to ask him to migrate my website to their server since my website was very slow on my existing server. Not only did he carry out the migration within 24 hours but he actually completely redesigned my website free-of-charge to a standard that I was blown away by. He then took me step-by-step through everything he had done so that I now feel that I can make any further changes myself should the need arise, although he assures me he is always happy to be contacted if I struggle. He has done a fantastic job and I would recommend him and 365i with no hesitation!
Very helpful and cover every area. Mark especially is very effective in finding solutions for any queries you may have and goes the extra mile to assist. Overall, excellent service!
Mark provided superb service - rapid response, careful consideration of my requirements and great website design. Everything was wrapped up really quickly and with superb quality. Highly recommended.
Seriously I should have listened to Mark from the moment he approached me to migrate to 365i, very professional hosting with state of the art control panel that automatically optimises almost every aspect of your website for faster loading.
Mark has done a great job building my website for me. Easy to work with and professional. Will be using him and his company for any help I need in the future. I will be using the hosting sevices he provides for my other webistes.
Mark is very helpful and puts a lot of effort in his work. Highly recommended.
Wow! My website colouredglass.co.uk was running very slow with a previous hosting company, I signed up in minutes at 365i.co.uk Not only is my website super fast and loading in less than 3 seconds from 11 seconds, I am saving £23.81 per Month!!! - Keep up the good work Team365i
Mark has looked after us for 14 years and designed 3 websites in this time. I have been lucky to find them, they have been a great help to us over the years. Always available to answer questions or make changes to our website quickly. Our business wouldn't be where it is now without the support of 365i.
Really impressed with the on-boarding attention. I have not had service like this before.
Mark has helped us numerous times with our website. His skills are second to none and he gets back to us very quickly with every project. We would definitely recommend him for all your web hosting and design needs.
Excellent service and technically brilliant. Would not hesitate to recommend.
Excellent Customer Service Very Fast Response.
Awesome hosting service, customer support second to none with dedicated UK based team, highly recommend to agency and business owners
Response from the owner:Thanks Johnny! Great to have you with us!
Service beyond fantastic. It's hard to put into words how thorough and in-depth the level of service was, and it ftruly felt as though Mark had a real passion for my business, and was himself thrilled to achieve high speeds! I cannot reccomend enough! Amazing!
After doing Internet Marketing for over 23 years, I know what QUALITY and RELIABILITY is. It's a fine line between your failure and success. Damage can happen in a second and restoration can take years. That's why I trust my precious projects to 365i host along with their other services besides just hosting. I NEVER had any scam upsets from 365i that other hosting companies tried to do when emergencies happened. Some even blamed me while charging ridiculous fees just for so-called premium hosting. Be assured that 365i is a TRUE PREMIUM HOSING and prices are low-funny. This day, I put my word on it: I have not seem anyone better than 365 when it comes to speed, reliability, support and ethics. Uploaded are the pictures of me and just some precious projects I trust 365i. Believe me, it is not easy to please me because I am a certified marketer by AWAI, student of Joe Vitale, Dan Kennedy and other marketing legends. I know when someone delivers quality and when someone talks empty promises. Hey, I am a copywriter, I smell that stuff a mile away. Yet, with 365i, I am ASSURED - less things to think about. If 365i does anything for me - it is always A+ QUALITY! The owner, Mr. Mark is a hero himself who treats you with respect, a superb web designer himself, a business owner, Internet marketer... Do you know what this means to you? That he is NOT just a "blah, blah, yeah, yeah, we can definitely do it" sales rep who will tell you anything you want to hear. If you are ready for truth, sweet or harsh, ask 365i. Not only they help you with superb hosting, but also with your business growth - WITHOUT any BS. Mark says it as it is. And even I am way over 20 years in the game, I still listen to wise advices of Mark! After you start dealing with 365i, you too will see the massive difference and automatically drop a huge weight off of your shoulders! No scammers here! Very honest owner from UK (born and raised in UK, holding REAL European values, like some others who will choke and sell their soul to the devil for $20.00).
Response from the owner:Thank you for a glowing review!
365i - What a great company to deal with. Friendly, professional, Knowledgeable and speedy service. The exceptional service from 365i has been crucial to my business and I highly recommend their services.
Great service, very friendly and knowledgeable. Mark has the patience to explain to those of us who don't speak tech! Would recommend.
Response from the owner:Oh thank you Peta. Much appreciated
Excellent. Thoroughly Recommend
365i has dramatically speeded up our wordpress website which was beyond dlow! Great service from people who seem to genuinely care about their customers. Thanks so much. N
These guys are so helpful! They migrated my website for me in a few minutes and then set about improving the page speed. Best move I’ve made in a long time! And great value too! Thank you 😊
Response from the owner:Thank you. We do our very best.