Fix a Missing Meta Description — Beginner's Guide
Your meta description is the short paragraph that appears below your page title in Google search results. It is not a direct ranking factor but a badly written or missing one will cost you clicks — even if your page ranks well. Google may rewrite it if it is missing, too short or too long. This guide walks you through exactly what a meta description is, how to find it, and how to fix it — step by step, with no coding experience needed.
What you will learn in this guide
- What a meta description is and why it affects how many people click your page
- How to check if your meta description is missing, too short or too long
- How to find the meta description inside your HTML file using Notepad++
- How to write a meta description that gets more clicks from Google
- How to upload your fixed file back to your website using FileZilla
- How to check Google has picked up your new meta description
1 What is a meta description — and why does it matter?
Before you touch any code, you need to understand exactly what a meta description is and why it affects how many people click your page in Google search results.
Where your meta description appears
Your meta description appears directly below your page title and URL in Google search results. It is the short paragraph of text that gives people a preview of what your page is about before they click.
| Where | What it looks like | Why it matters |
|---|---|---|
| Google search results | The short paragraph of grey text below your blue title and green URL | Tells people what they will find if they click — directly affects your click-through rate |
| Social media shares | The description shown when your URL is shared on Facebook, LinkedIn or WhatsApp | A compelling description gets more shares and clicks |
Is it a ranking factor?
Google does not use the meta description as a direct ranking factor — it will not make you rank higher on its own. However it directly affects your click-through rate (CTR). A well-written meta description means more people click your page even if it ranks at position 3 or 4. More clicks signal to Google that your page is relevant, which can improve rankings over time.
What happens if your meta description is missing or wrong
If your meta description is missing, Google will pull random text from your page content to use as the description — usually the first sentence it finds, which is rarely the most compelling text. You lose control of what people see before deciding whether to click.
If your meta description is too long, Google cuts it off with "…" mid-sentence. If it is too short, Google may ignore it and pull its own text instead.
Welcome to our website. We offer many services.
Home | Company Name
Lorem ipsum dolor sit amet consectetur...
Emergency plumber in Manchester available 24/7. No call-out fee. Call now for a free quote and same-day service.
Free SEO audit with 75+ checks — no sign-up needed. Find and fix every issue on your site in minutes.
2 Check your current meta description with AIPageSEO
Before you fix anything, you need to know exactly what your meta description currently says — or whether it exists at all.
- 1 Go to the AIPageSEO audit tool Open a new browser tab and go to https://aipageseo.com/seo-audit-platform.html. You do not need an account to run a basic audit.
-
2
Enter your page address
Type the full address of the page you want to check, for example
https://yourdomain.com. Make sure you include thehttps://at the start. - 3 Click Run Audit and wait It usually takes 10–30 seconds. Do not close the tab or refresh the page while it runs.
-
4
Find the Meta Description result
When the audit finishes scroll down to the HTML or On-Page SEO section and look for the Meta Description row:
Status What it means What to do 🔴 Missing You have no meta description at all Follow all steps in Section 4 below 🟡 Too short Under 70 characters Rewrite it — see Section 3 first 🟡 Too long Over 160 characters Shorten it — see Section 3 first 🟡 Duplicate Same description on multiple pages Write a unique description for each page 🟢 Pass Your meta description looks good No action needed right now - 5 Note down your current meta description text The audit will show you the full text of your current meta description. Write it down — you will use this in the next section to understand what needs to change.
Ctrl+F (Windows) or ⌘ Cmd+F (Mac) and search for meta name="description". If you get zero results, your meta description is missing.
3 How to write a meta description that gets more clicks
Before you open any files, write your new meta description here. It is much easier to plan the text first than to do it inside the code editor. Follow every rule below.
Rule 1 — Keep it as close to 160 characters as possible
Google displays approximately 920 pixels of description text on desktop. That works out to roughly 150–160 characters. Under 70 characters wastes the opportunity. Over 160 characters and Google cuts it off with "…".
To count characters: open Notepad++ (Windows) or TextEdit (Mac), type your description, and look at the status bar at the bottom — it shows the character count. Aim for between 150 and 160.
Rule 2 — Include your primary keyword naturally
Google bolds keywords in meta descriptions that match what the user searched for. This makes your result stand out visually in search results. Include your primary keyword once in the description — but write it naturally, not forced.
Plumber Manchester plumber emergency plumber Manchester cheap plumber Manchester call now plumber.
Emergency plumber in Manchester available 24/7. No call-out fee, fast response guaranteed. Call now for a free quote.
Rule 3 — End with a call to action
A call to action tells the user exactly what to do next — "Call now", "Get a free quote", "Read more", "Shop now". Pages with a clear call to action in the description consistently get higher click-through rates than those without.
Rule 4 — Every page must have a unique meta description
Never copy the same description across multiple pages. Each page is about something different — its description should reflect that. Duplicate meta descriptions are flagged by Google as a quality issue.
Rule 5 — Make it relevant to the page content
Your meta description must accurately describe what is on the page. If someone clicks expecting one thing and finds another, they will immediately leave — increasing your bounce rate and damaging your rankings over time.
Write your description now before continuing
4 Find your meta description in Notepad++ and fix it
You now know what your new meta description should say. In this section you will open your HTML file in Notepad++ and find the meta description tag inside it.
Step 1 — Work out which file to edit
| Page you are fixing | File to look for in FileZilla |
|---|---|
| Your homepage | index.html inside your httpdocs or public_html folder |
| An about page at yourdomain.com/about | about.html or a folder called about containing index.html |
| Any other page | The file name usually matches the last part of the URL |
- 1 Open FileZilla and connect to your server Fill in the four boxes at the top — Host, Username, Password, leave Port blank — and click Quickconnect. If you are not sure of your details see the Before You Start guide linked above.
-
2
Navigate to your website folder on the right panel
Double-click
httpdocs(Plesk) orpublic_html(cPanel). You will see your website files listed. -
3
Download a backup copy first
Find the file you need to edit, for example
index.html. Right-click it and choose Download. In the left panel find the downloaded file, right-click it, choose Rename, and rename it toindex-backup.html. This is your safety net — if anything goes wrong you can re-upload the original. - 4 Download the working copy to your Desktop Right-click the same file in the right panel again and choose Download. Make sure your Desktop is selected in the left panel first so it saves somewhere easy to find.
- 5 Open the file in Notepad++ Open Notepad++. Go to File → Open. Navigate to your Desktop, click on the HTML file you just downloaded, and click Open. The code opens in the editor. Do not worry about most of it — you only need to find one small part.
-
6
Use Find to locate the meta description instantly
Press
Ctrl + Fon your keyboard. A search box appears at the bottom of Notepad++. Typemeta name="description"and press Enter. Notepad++ jumps straight to that line. You will see something like this:<meta name="description" content="Welcome to our website." />The text insidecontent="..."is your current meta description. In this example it just says "Welcome to our website." — which tells Google and potential visitors nothing useful about the page. -
7
What if there is no meta description tag at all?
If the search finds nothing, your meta description is completely missing. Find the line that says
<title>instead. Click at the end of the closing</title>tag and press Enter to create a new blank line. You will type your new meta description tag on that line — see Step 8. -
8
Replace or add your new meta description
Click inside the
content="..."section and select the old text between the quote marks. Delete it and type your new description. The result should look like this (with your own words):<meta name="description" content="Emergency plumber in Manchester available 24/7. No call-out fee, fast response guaranteed. Call now for a free quote." />⚠️ Do not deletemeta name="description"orcontent=or the quote marks. Only replace the text between the quote marks insidecontent="...". If you accidentally delete more, pressCtrl + Zimmediately to undo. -
9
Double-check your work before saving
Look at the line you just edited. Check:
• It starts with<meta name="description" content="
• Your new description text is inside the quote marks
• It ends with" />
• The character count is between 150 and 160
• There are no line breaks inside the content attribute -
10
Save the file
Press
Ctrl + Son your keyboard. The red dot on the file tab at the top of Notepad++ disappears — this means the file is saved and ready to upload.
5 Upload your edited file back to your server
Your file is saved on your computer but your website has not changed yet. You need to upload the edited file back to your server using FileZilla.
- 1 Switch back to FileZilla Click on the FileZilla window in your taskbar. If it has disconnected, fill in the boxes again and click Quickconnect.
-
2
Make sure the right panel shows your website folder
The right panel should show
httpdocsorpublic_html. If it shows just/double-click into the correct folder. - 3 Find your edited file in the left panel Navigate to your Desktop in the left panel. You should see the edited file there.
- 4 Upload the file Right-click the file in the left panel and choose Upload. FileZilla will transfer the file to your server. A dialog box may appear asking if you want to overwrite the existing file — click OK or Overwrite. When the progress bar at the bottom disappears the upload is complete.
-
5
Check the change is live
Open a new browser tab and go to your website page. Right-click anywhere on the page and choose View Page Source. Press
Ctrl + Fand search formeta name="description". You should see your new description exactly as you typed it.
6 Tell Google about your new meta description
Google does not instantly know you have made a change. You can speed this up using Google Search Console.
If you already have Google Search Console set up
- 1 Log in to Google Search Console Go to https://search.google.com/search-console and sign in with your Google account.
-
2
Use the URL Inspection tool
At the top of the screen there is a search bar. Type in the full URL of the page you just edited, for example
https://yourdomain.com, and press Enter. - 3 Click Request Indexing Click the button that says Request Indexing. Google will add your page to its crawl queue. A message will appear confirming the request — click OK.
- 4 Wait 24–48 hours After 24–48 hours search Google for your page and check whether your new meta description appears. Note: Google sometimes writes its own description even when yours is correct — this usually means it feels the page content does not match the description you wrote.
If you do not have Google Search Console yet
Google Search Console is a free tool every website owner should have. Without it, simply wait a few days and then search Google for a unique phrase from your new meta description. If it appears in the search result snippet, Google has picked up the change.
7 Common mistakes to avoid
These are the most frequent errors people make when editing meta descriptions. Read through them so you do not make the same ones.
-
⚠
Deleting the attribute name or quote marks
If you accidentally delete
name="description"orcontent=or the surrounding quote marks, the tag will stop working. If this happens pressCtrl + Zimmediately to undo. - ⚠ Going over 160 characters Google will cut your description off with "…" mid-sentence if it is over 160 characters. Always count your characters before saving. Aim for 150–160.
- ⚠ Using the same description on every page Every page needs a unique meta description that accurately describes that specific page. Duplicate descriptions are flagged by Google as a quality issue.
-
⚠
Forgetting to save before uploading
If you forget to press
Ctrl + Sin Notepad++ before going back to FileZilla, you will upload the old version. Always check the red dot on the tab is gone before uploading. - ⚠ Expecting instant Google results Even after submitting a Request Indexing in Google Search Console, it can take 24–72 hours for the change to appear in search results. Check once the next day — not every 10 minutes.
- ⚠ Google rewrites your description anyway Sometimes Google ignores your meta description and writes its own. This usually means your description does not closely match the actual content on the page. Make sure your description accurately reflects what is on the page and Google will use it.