Is It Possible to Remove the NitroPack Plugin Footer Link?

James Parsons by James Parsons Updated Jan 19th, 2024 16 min read

0:00 Listen to audio podcast

Nitropack Remove Bar

In the last few years, Google has been putting forth new SEO rules that have driven some webmasters up a wall, and have led others to develop an entirely new set of businesses. These are their new use of site speed, loading times, and other loading metrics as part of search engine ranking. Site speed, as measured by PageSpeed Insights, and the Core Web Vitals are both parts of an overall initiative to speed up the web by encouraging faster sites to rank better.

The new business model is, as you might imagine, tools and services designed to speed up your site. Talented developers have created suites of tools to help speed up slow sites, while others work with plugin developers to speed up their offerings or prevent them from slowing down a site.

What Is NitroPack?

As you might imagine from the intro, NitroPack is one such offering. NitroPack, found here, is a plugin that you can add to a website. They have options for WordPress, Magento, WooCommerce, and even custom-developed websites.

NitroPack Website

What all does it do?

  • NitroPack includes a suite of caching tools, which allows dynamic websites to generate and serve static pages, has automatic cache expiration and refreshing, and has smart caching for different kinds of viewers.
  • Image optimization. Their tools automatically smush images, compress them in lossless formats, size them more appropriately for a site, convert them to WebP, and lazy load them.
  • Code minification. JS, CSS, and HTML can all be minified, to eke out those few extra kilobytes of saved space and help streamline code.
  • CDN usage. Part of a fast site is serving content via a network of fast servers around the world, rather than routing all traffic regardless of location to one centralized server. NitroPack has a CDN service that they use to serve your content.

You can see their full list of features here. You can also read a longer defense of how their plugin works and why you should use it over custom development in this blog post.

It's no wonder that they're becoming increasingly popular as an easy way to speed up a site that otherwise would require a lot of individual plugins, custom development work, or tedious iterations to get sped up.

There's just one problem:

NitroPack adds a link and advertisement for themselves in the footer of your site for everyone to see.

It's annoying, it stands out, it advertises a service you might not want to advertise, and it can disrupt your site design. It advertises to your competitors that you're optimizing your site speed, and they may decide to copy you and outperform you. It might even be a security concern; if someone finds a security hole in NitroPack, it would be trivially easy to find every site that uses it and auto-target them for exploitation.

Advertisement Example

There are plenty of reasons why people want to remove this advertisement, but can you? I've done some research, and I have a lot to say about the subject.

Option 1: Hiding the Link

The first option you have is to simply hide the footer link, or the footer itself, entirely. This is the simplest and easiest method, but it's also the most dangerous and least effective.

If you look up how to get rid of the link in your footer, you'll often see people suggesting a CSS trick. They recommend that you add an attribute to the footer link, namely this code:

.npf{display: none !important}

Boom; next time you reload your site, the footer link is gone. Easy peasy, right?

Well, not exactly.

First of all, they updated their plugin so that this no longer works, but more on that later.

The second problem (and this is the biggest one here) is that you're not getting rid of the link. You're hiding it. If you were to load your site with CSS disabled, the link would still be there. If you were to inspect your site code, you could find the link there in your footer. It doesn't display to people running a standard browser, but people aren't who you're worried about.

GetNitro Code in Source

Hiding a link is not the same as removing the link. It might look like it's gone, but Google, other search engines, and anyone who uses a bot/scraper to view the internet can just ignore that CSS directive. They look directly at site code, and can easily see hidden elements.

There's a very good reason for this: spam.

Years ago, when Google cared a lot about specific links and keyword usage but didn't have an advanced nuance for detecting PageRank sculpting or keyword spam, you would see websites use a lot of different tricks to hide text and links on their site. They might have a large white footer with white text that is full of spam keywords and links, effectively hiding it from users. They might have banks of keywords and links hidden with JavaScript. And, of course, they might hide all of this spam with the display:none; CSS code.

Google Hidden Links

A site that ranks for keywords when those keywords aren't visible to the viewer's eye is a bad search result. Google very quickly started developing ways to detect this kind of spam, and penalized sites that hid text and links. You don't see it as much these days, simply because it no longer works.

What do you think Google is going to think when they load up your site and see that there's a hidden link in your footer that regular users can't see? That's right; they could get the wrong idea and think that you're a spam site. Not only that, but they might think that NitroPack is a spam site and that they're hacking other sites.

Matt Cutts, former head of Google's Web Spam team, kept it simple on his blog:

"I don't recommend that people use CSS to hide text."

The reason Google does this is that this spam practice was abused - a lot. It still happens, even today. If a hacker gains access to your site, they might destroy your site and steal your data. That's not very common, though, unless it's a personal attack on you or your business. More often, the hacker will be subtle and try to extract value from your site. They might add some hidden advertisements or hidden links to your site. Their money sites (the ones they link to) gain link value from your site right up until your site is penalized. Google often flags the sites that get linked to in this manner as potential spam sites.

I'm sure NitroPack doesn't want to fall into this category, which is part of why they make it so hard to remove their footer link. Hiding the link isn't going to do your website (or theirs) any favors. Your site will be using a spam technique to hide a link, and NitroPack could be affected because people who use their service are hiding those links. Chances are that NitroPack will blacklist you if they detect you doing this, and then you're left with a slow site and a non-functional plugin.

NitroPack also is aware that this is a method people use, and they've since made it much more difficult to do. They randomly generate the CSS classes for their footer and even the parent divs. They also use display:block !important; in their inline code, which will overrule any of your CSS changes to ensure that it stays visible.

Randomized CSS Class

The same is true for other footer-hiding features, like adding content over the top of it or setting margins to zero.

This is still technically possible with CSS or JavaScript. Even so, option one is not a good idea, even though it's the most commonly recommended option. Don't do this.

Option 2: Infinite Scroll

Option two is an option for some of you, and not for others, and it depends entirely on the reason you want to hide the link.

If you don't like that a service you're using is adding a link to your site and you want to get rid of it, well, this option doesn't work for you. You can go ahead and skip this section.

On the other hand, if you just don't want your users to see that you're linking to some third-party service, this might be an option. So what is the option?

Z
Z
Z
Is your blog earning you business? If not, let's fix that.

We create blog content that converts - not just for ourselves, but for our clients, too.

We pick blog topics like hedge funds pick stocks. Then, we create articles that are 10x better to earn the top spot.

Content marketing has two ingredients - content and marketing. We've earned our black belts in both.

If you run an internet-based business and are looking to scale, schedule a call to speak with our founder:

Implement infinite scrolling on your site.

Infinite Scrolling Illustration

You might set this up on your homepage so that when users scroll down, more and more blog posts keep loading and they never reach your footer. It's kind of the same way Twitter and Facebook work with their feeds. Both of those sites have footers, but you never see them because your feed never ends.

You might also set it up on individual blog posts, so that when a user reaches the bottom of a blog post, they automatically transition to a related post, including changing the URL. You can do the same thing for a store, to transition through products.

There are three main drawbacks to this option.

1. The first is that it doesn't remove the link, or hide it. Anyone browsing with scripts turned off can still reach your footer, and still see the link, and Google can still see it because they don't render infinite scrolls. This can cause SEO issues of its own.

2. The second is that it requires a major revision of your website to do. Implementing infinite scrolling requires engineering scripts to trigger on your site, and may mean changing your site design, including stripping anything in your footer that you wanted to use and put it in a sidebar or top bar. It's a lot of major work to simply hide a plugin link.

3. The third issue is that it pretty much can't be used on every page of your site. An About Us page, a privacy policy page, a contact page; these don't have anything to infinite scroll to, and so the footer will appear. Any workaround is going to be janky at best. For those reasons, I don't recommend this option either.

Ultimately, this doesn't remove the link - it just prevents the user from ever seeing it without hiding it.

Option 3: Removing the Link

The third option is to hack the code of the plugin and remove the link.

I know I said that very simply, but it's not simple at all. NitroPack, for obvious reasons, doesn't want you to remove their advertising link from your site through unofficial means. They do have an official way to remove the link, which I'll discuss next.

Picking Through NitroPack Code

The trouble here is that NitroPack is engineered to make it difficult to hide or remove the footer. There's no simple line of code you can comment out. You would need a developer to dig into the code and figure out how it works, figure out what scripts are generating the footer, and re-engineer the plugin to not have that code in it. Much of their code is hosted on their servers, so this may not even be possible.

That, my friends, is a lot of work. It's a lot of developer man-hours. That gets expensive very quickly. More importantly, even if it's possible, it's temporary. When you engineer a custom version of a plugin like this, it only works until the plugin needs updating. When you then update the plugin, the code has changed, and you need to re-engineer a footer-less version of the plugin again. Given how a lot of these kinds of plugins might update once a month or more, you're going to spend more time in the dev cycle than not.

I don't have an easy answer on how to do this. You'll have to pay a developer to handle it, and even then, you need to find one that is unscrupulous enough to want to violate terms of use and help you with this, while still having the talent to do it. You'll also most likely have to end up starting the whole process over again when they push a new update to their app.

Option 4: Buying a Paid Plan

The NitroPack link and logo in the footer are only present in the free version of the plugin. It's an alternative method of paying for the plugin - they get a free advertisement, and you don't have to pay anything. If you can't (or don't want to) pay for a paid version of the plugin, you "pay" by advertising the plugin on your site.

NitroPack Pricing Plans

If you decide to opt for the paid version of the plugin, the footer disappears. It's that simple. You also get all of the benefits of a paid version of the plugin, including higher pageview limits, more CDN bandwidth, better and more sophisticated speed algorithms, more image optimization options, and priority support.

Sure, you do have to pay for it. The cheapest paid version is $17.50 per month if paid annually, or $21 per month if paid monthly. That's not an insignificant fee for a small site, but if you're making any sort of profit from your site, it may be worthwhile for you to use.

So, why not just pay for the plugin?

Option 5: Alternative Plugins

While paying for the plugin is the best option to still use NitroPack and get rid of the footer, there's one other way to get rid of the footer: don't use NitroPack.

Alternative Plugins

NitroPack is a set of tools and configurations that speeds up your site. You can do that yourself. It's not as easy as setting up a single plugin, but you can use a variety of free plugins that don't have restrictions, or very cheap paid options, to get the same effects.

The drawback to this is that you have to wrangle multiple plugins and figure out how to get them all to work nicely together. The benefit is that you don't have to pay nearly as much (if anything), and you don't have to worry about third-party branding on your site.

These plugin recommendations are for WordPress. Other platforms may have other options or need to manually implement different plugins.

Here are the major features of NitroPack, and what kind of plugins you can use to replicate the features for free or cheap.

  • Site Caching: There are a handful of options including WP Rocket (my favorite), W3 Total Cache, WP Super Cache and others.
  • Image Optimizations: I wrote a post a while back comparing several image optimization tools, including EWWW, Imagify, ShortPixel, and Smush. Imagify works with WP Rocket, so that's what I chose.
  • CDN: I use KeyCDN, which is super easy to use and charges a trivial amount of money, under 5 cents per gigabyte used. Other CDNs include MaxCDN, Sucuri, Cloudflare, and Rackspace, among others.
  • Code Optimization: Making your code smaller is very easy and typically can be done automatically, or manually with a tool any time you push an update. Try options like Autoptimize, Fast Velocity Minify, or Merge+Minify+Refresh. You can also look into lazy-loading your images and videos. All of these features are already packaged into WP Rocket, so if you chose that, you can skip this step.
  • You can also check out my full list of WordPress plugins aimed at improving site speed and performance, to get an idea of other tools and techniques you can use.

So there you have it. With a simple selection of other plugins, you can replicate the features of NitroPack while avoiding the monthly cost and the obtrusive banner.

I think that NitroPack is a great plugin to get all of those features in one place, but the free plan that injects an advertisement at the bottom of your site is a deal-breaker. That said, paying for their cheapest plan is perfectly acceptable for a smaller site. The cheapest plan does cap you at 50,000 page views per month, however, and that's not exactly a lot of visitors. If your average visitor looks at 5 pages on your website, that amounts to only a few hundred unique visitors per day. If you get hit with some spam traffic, which is very common, you could end up paying a lot of money for those spam visitors.

If your site falls into the sweet spot of traffic where you can use the speed increases but it doesn't exceed the page views that they cap you at, NitroPack is great. On the other hand, if your site gets more traffic, you have the potential to go viral, or you don't have the budget for it, moving to some alternative plugins is going to be far more cost-effective.

Have you ever heard the expression "Good, cheap, or fast - pick two"? I think that's relevant here. For most, NitroPack is simply a quick "set-it-and-forget-it" solution. Displaying their advertisement on a business site is cheap, and paying for their service is not cheap compared to the alternatives.

The choice, of course, is yours.

2022 Update

Asif, the creator of the "Wordpress Geek" YouTube channel, shared some code that he wrote to remove the Nitropack footer. You can find it below in the comments section.

Also, I mentioned in this article that removing the footer link is against their terms of use, but I figured it would be worth re-iterating. To quote the Nitropack terms page:

"If Clients using the Free Plan are found to remove the promotional banner without subscribing the Client website to a Paid Plan, NitroPack shall consider this unfair usage of the service. In such a scenario, NitroPack preserves the right, at any time, to do a one-sided termination of the Service without prior notice."

So, while this may be legal to do, Nitropack is known to silently terminate the service of anyone who removes their footer link. You may find that your PageSpeed scores suddenly dropped without notice. Also, since NitroPack is constantly updating its platform, any code that is working now may stop working in the future.

In my opinion, these JavaScript and CSS hacks are temporary, and even if they are working, the risk of silently losing service and seeing your PageSpeed score drop makes it less appealing to me. If you like the software, I recommend you purchase it! Otherwise, do what I did and optimize your site the old-fashioned way.

Written by James Parsons

James Parsons is the founder and CEO of Content Powered, a premier content marketing agency that leverages nearly two decades of his experience in content marketing to drive business growth. Renowned for founding and scaling multi-million dollar eCommerce businesses through strategic content marketing, James has become a trusted voice in the industry, sharing his insights in Search Engine Watch, Search Engine Journal, Forbes, Entrepreneur, Inc, and other leading publications. His background encompasses key roles across various agencies, contributing to the content strategies of major brands like eBay and Expedia. James's expertise spans SEO, conversion rate optimization, and effective content strategies, making him a pivotal figure in the industry.