Skip to main content

Command Palette

Search for a command to run...

Enhancing SEO for Power Pages 📈

Updated
4 min readView as Markdown
Enhancing SEO for Power Pages 📈

"Being on the second page of Google results is like being at a party and standing in the corner." - Tim Ferriss.

Having built Power Pages websites in the past, I've encountered challenges in finding information on optimising Power Pages sites for search engines. Therefore, I thought I would share some thoughts that can enhance the SEO performance of public-facing Power Pages websites. {.lead}

1) Keyword Optimisation

Keywords for SEO are specific words or phrases that reflect the topics and themes of a webpage, helping search engines understand and rank content for relevant searches.

For example, for a coffee shop that offers home delivery, keywords might include "coffee delivery" or "coffee near me." To gather keywords, you can reach out to the client to see if they have a marketing team that can provide keywords. If not, I use Google Keyword Planner to generate ideas. Check out this tutorial for an introduction to using keywords to boost SEO.

Once we have our target keywords, we can incorporate them into content web pages by adding them to the title to help attract visitors.

In the portal management app, navigate to the web page > localised content > content > title.

To add a description go to the page template > description.

2) Headings Structure

A clear HTML heading structure (h1, h2, etc.) helps search engines digest webpage content and context, increasing the chances of landing on the first page of search results.

<header>
  <h1>Welcome to Delicious Beans Coffee Shop</h1>
  <nav>
    <ul>
      <li><a href="#about">About Us</a></li>
      <li><a href="#menu">Menu</a></li>
      <li><a href="#delivery">Delivery</a></li>
      <li><a href="#contact">Contact Us</a></li>
    </ul>
  </nav>
</header>
<main>
  <section id="about">
    <h2>About Us</h2>
    <p>
      Learn about our passion for great coffee and our commitment to serving the
      finest beans from around the world.
    </p>

    <h3>Our Story</h3>
    <p>
      Discover how Delicious Beans Coffee Shop came to be and the values that
      drive us.
    </p>

    <h3>Our Mission</h3>
    <p>
      Find out what we strive to achieve every day and our dedication to our
      customers and community.
    </p>
  </section>
</main>

3) Responsive Design

As Power Pages supports the Bootstrap framework, you can use the grid system and containers to make the website mobile-friendly. Search engines like Google prioritise mobile-friendly websites in their search results ranking.

4) Image Optimisation

Website performance and SEO are significantly linked, and by optimising images used in Power Pages, this helps with the overall loading speed of the website.

Here are some of my quick tips to optimise images:

  • Compress images: Use image compression tools or plugins to reduce the file size. This helps improve page load times, particularly for users with slower internet connections or mobile devices.

  • Optimise Image Alt Text: Add descriptive and relevant alt text to each image for accessibility.

  • Utilise Bootstrap’s responsive image class: The img-responsive class preserves the aspect ratio of the image and it helps create a better user experience for mobile users by ensuring that images adjust smoothly to smaller screen sizes.

5) URL Structure

Finally, for web pages, you can ensure your URLs are meaningful by integrating keywords into the structure. This helps search engines to process your content.

For instance, continuing with the coffee shop theme, a good example of an SEO-friendly URL for a contact page would be the following:

  • Parent URL: https://www.examplecoffee.com/contact-us

  • Sub URL (for a location like California): https://www.examplecoffee.com/contact-us/california

A bad example would be the following, as it doesn't give the user context that the previous example delivers:
https://www.examplecoffee.com/phone

Visit a website that you use often and review its URL structure. I find that a good URL structure establishes brevity and clarity by using hyphens to separate words, ensuring readability for users and search engine crawlers.

Conclusion

😁Thanks for reading, we explored five key ways to enhance SEO for Power Pages. By implementing the above techniques, you can improve your website's visibility, user experience, and overall performance in search engine rankings.

Have a great day!

👋 If you liked this then please sign up to my newsletter that will notify you once a new blog comes out.