SEO Audit (price of a coffee)Starting at $1 →
Web Tools

Print and PDF Button with PrintFriendly

September 6, 20267 min read
Office printer producing a document

A client prints your pricing page and ends up with the menu, the cookie banner, three ads and your footer spread over four sheets. PrintFriendly fixes this with one line of code: the visitor gets a clean version they can print or download as a PDF. It is useful, it is free, and there are two things to know before installing it.

What PrintFriendly actually does

PrintFriendly is an online service, running since 2009, that turns a web page into a readable document. When the visitor clicks the button, a preview window opens: the menu, sidebars and banners are gone, leaving only the content. They can remove a paragraph or an image with one click, shrink the text, then print, download a PDF or email the page.

The technical appeal comes down to one thing: the service detects your page's content area on its own. You have no print stylesheet to write or maintain. The resulting PDF keeps links clickable and supports Letter as well as A4 paper.

Sites where it is worth it

A print button only matters if your pages actually get printed. Among our clients, it is always the same cases:

  • Pricing tables and service lists, which a client compares on paper before deciding.
  • Clinics and practices: intake forms, pre-op instructions, directions.
  • Restaurants and caterers, whose menus go to the kitchen or the dining room.
  • Real estate: a listing sheet taken along to a showing.
  • Recipes, guides and procedures followed with your hands busy.

Conversely, on a five-page brochure site nobody prints, the button adds a network request and an interface element for nothing. Better to skip it.

Installing it on WordPress

The plugin is called “Print, PDF & Email by PrintFriendly.” As of September 6, 2026, version 5.5.12 dates from August 13, 2026, is tested up to WordPress 7.1 and requires WordPress 4.9 at minimum. Its WordPress.org rating is 3.8 out of 5 across 237 reviews.

  1. Plugins → Add New, search for “PrintFriendly,” install and activate.
  2. Settings → Print Friendly & PDF: choose where the button appears (posts, pages, categories) and its position.
  3. Uncheck what you do not need. Many sites only need the PDF: email and print clutter the interface without being used.
  4. Add a header and footer with your logo, address and phone number. This is the step everyone skips, and the only one that pays off.
  5. Test on a real page, not the home page: flaws show up on a long article.

Installing it on a non-WordPress site

PrintFriendly provides a JavaScript button that works on any page, including over HTTPS and on password-protected sites. On a Next.js or Shopify site, you paste the script into your template and place the button wherever you want. A JavaScript-free variant exists, useful if your security policy restricts third-party scripts.

The two things to know before installing

1. The free version shows ads

The plugin is free and complete, funded by advertising. The ads do not appear on your site: they show in the preview window, between the click and the print, and never reach the paper. It is discreet, but it is a third party speaking to your visitor in the middle of your funnel. If that bothers you, the Pro version removes them—check current pricing on the vendor's site, it changes.

2. Your pages pass through an external server

To build the preview, page content is sent to PrintFriendly's servers, located outside Quebec. On a brochure site this is inconsequential: those pages are already public. But if the button ends up on a client area, a patient record or a named quote, you are disclosing personal information to a third party outside Quebec—which Law 25 governs and which must appear in your privacy policy.

In practice the rule is simple: button on public pages, never behind a login.

The in-house alternative, in ten lines of CSS

If you want neither an external service nor ads, a print stylesheet does most of the job:

@media print {
  header, nav, footer, aside,
  .cookie-banner, .cta, .share { display: none; }
  body { background: #fff; color: #000; font-size: 12pt; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
  img { max-width: 100%; page-break-inside: avoid; }
}

Nothing leaves your server, no ads, no dependency. What you lose: the editable preview and PDF generation. The visitor has to use their browser's “Save as PDF” function, which most people know how to do.

What about SEO?

No direct effect. Google does not rank a page higher because it has a print button, and the generated PDF is not indexed—it is produced on demand and has no fixed URL. The effect lies elsewhere: a visitor who leaves with your document keeps your name, phone number and address in front of them, sometimes for weeks. That is a conversion gain, not a ranking gain, and it should be measured as such.

In short

PrintFriendly is a good tool for a specific need. Install it if your pages really get printed—pricing, menus, forms, listings—and take the five minutes needed to put your logo and contact details in the document header. Keep it away from authenticated pages. And if your need is simply “make it print cleanly,” the CSS block above is enough.

Frequently asked questions

Is PrintFriendly really free?

The free version is complete and functional, but ad-supported: ads appear in the preview window your visitor sees before printing. They are not printed and never appear on your site, only in that preview. A paid Pro version removes them. Check current pricing on printfriendly.com, as it changes over time.

Does my page content leave my server?

Yes. To build the preview and the PDF, page content is processed by PrintFriendly's servers, hosted outside Quebec. For a brochure site this has no consequence. If your pages display personal information—a client area, a patient record, a named quote—that disclosure to a third party falls under Law 25 and must appear in your privacy policy.

Does it help my SEO?

No, not directly. No search engine ranks a page higher because it has a print button. The effect is indirect: a visitor who leaves with your PDF keeps your name and contact details in front of them. That is a conversion and recall gain, not a ranking gain.

Do I need a plugin, or can I add it to any site?

Both work. On WordPress, the “Print, PDF & Email by PrintFriendly” plugin places the button and handles settings from the admin. On a Next.js, Shopify or hand-built site, PrintFriendly provides a JavaScript button to paste into your template. The service detects the content area itself, so there is no print stylesheet to write.

What is the alternative if I do not want an external service?

A hand-written print stylesheet: a few CSS rules in an @media print block that hide the menu, footer and banners, and force a white background. Nothing leaves your server and there are no ads. In exchange you get no editable preview and no PDF generation: the visitor uses their browser's “Save as PDF” function.

Is the plugin maintained?

Yes. As of September 6, 2026, version 5.5.12 dates from August 13, 2026 and is tested up to WordPress 7.1. The service has existed since 2009. Its WordPress.org rating is 3.8 out of 5 across 237 reviews—decent without being outstanding, with criticism focused on ads in the free version.

Unsure about a third-party tool?

We check what a plugin really does with your data before installing it on your site.