SEO Tips, Tricks and Best Practices

City Hive is an e-commerce platform as opposed to a website platform. We work to optimize SEO from the outset, so you have time to focus on making sales instead of improving SEO by hand.

This feature is available with the following subscription plans. Merchants not on one of these plans will be automatically upgraded
  • Pro
  • Expert

Popular Uses:

  • Analytical Tools and Monitoring
  • Content Strategies 

How is a City Hive Serverless Site different?


As opposed to traditional website platforms like Wix or WordPress, City Hive’s Serverless platform puts you ahead by including the best practices and recommendations issued by Google in all of our sites, right out of the box!  
Our serverless sites offer a fast, optimized, secure solution that still allows customization when needed to boost your sales.

What does City Hive do for SEO?

  1. Sitemaps - City Hive generates 3 different sitemaps to boost indexing by all search engines and crawlers. Two of these maps are automatically submitted to Google, and the third map lives directly in the footer links.

  2. Speed - City Hive Serverless Sites function at twice the speed of our competitors, offering customers a better shopping experience and improving the site’s ranking on Google Search.
  3. Schema - On each City Hive page, the schema is updated to include business info (think address, type of store, and other basic info) as well as information pertaining to the page content. The schema for our product pages includes the product name, description, image, pricing, and who’s selling it.
  4. Breadcrumbs - City Hive feeds google “breadcrumbs”, or pieces of information to show where a product comes from (i.e. the product itself, the category, the view, and then at the highest level the site). This helps the search engine figure out the type of product a store is selling and can contribute to a better results display when searching. (i.e displaying Wine > Sparkling > La Marca Prosecco, better experience and eye-catching)
  5. Information Credibility - Given our database of names, descriptions, and other product information, websites using this information for their products are deemed trustworthy and credible.

What can you do to improve SEO?

  1. Add a site description - We offer our customers the option to add customized site descriptions. These descriptions will show up for the main site as well as product pages. Want to update yours?  Update the site title directly through your studio page!
  2. Add a site title - Is your store name just not packing enough of a punch? City Hive offers the ability to expand this by adding a site title. Want to update yours?  Update the site description directly through your studio page!
  3. Create content through Pages- Your store is unique and the knowledge that you have can be easily shared with your customers online. Create custom pages to give more information about your store and your team, to highlight a product or brand, to post weekly sale flyers, and more.
  4. Create a custom site structure using H1 & H2 tags with URLs - Your H1 tag should contain your most important keywords for your site. Insert a custom element in the website's home page. To do this, visit the website page your studio section and click on Custom Code section on the left.
    1. To insert the code, click on the JavaScript section and Screenshot 2024-11-07 at 1.54.04 PM and add your custom code into the content section. Use the following structure and replace the content with something that will make your store stand out online.
      1. Explanation: 
        1. H1: Use a single <h1> tag for the main topic or focus of the page, as this is the primary heading.

        2. H2: Use <h2> tags for main sections throughout the page. Each main section should have its own <h2> heading that clearly describes its content.

        3. Links in Headings: Each <h2> contains a link to its respective page. This helps reinforce the importance of these pages and guides users.

        4. Semantic HTML: Use <header> & <section> to create a well-structured and accessible layout that search engines favor.

        5. Example code:
          <!DOCTYPE html>
          <html lang="en">
          <head>
              <meta charset="UTF-8">
              <meta name="viewport" content="width=device-width, initial-scale=1.0">
              <title>Your Website Title</title>
              <meta name="description" content="A brief description of your website that accurately reflects its purpose.">
          </head>
          <body>

              <header>
                  <h1>Your Website’s Main Topic or Focus</h1>
                  <nav>
                      <ul>
                          <li><a href="index.html">Home</a></li>
                          <li><a href="about.html">About Us</a></li>
                          <li><a href="services.html">Services</a></li>
                          <li><a href="contact.html">Contact Us</a></li>
                      </ul>
                  </nav>
              </header>

              <!-- Section 1 with H2 and link -->
              <section id="about-us">
                  <h2><a href="about.html">About Us</a></h2>
                  <p>Information about your company, mission, and team.</p>
              </section>

              <!-- Section 2 with H2 and link -->
              <section id="services">
                  <h2><a href="services.html">Our Services</a></h2>
                  <p>Details about each service you offer.</p>
                  
                  <!-- Each service is listed as a link without additional heading levels -->
                  <ul>
                      <li><a href="service1.html">Service 1</a> - Brief description of Service 1.</li>
                      <li><a href="service2.html">Service 2</a> - Brief description of Service 2.</li>
                      <li><a href="service3.html">Service 3</a> - Brief description of Service 3.</li>
                  </ul>
              </section>

              <!-- Section 3 with H2 and link -->
              <section id="contact-us">
                  <h2><a href="contact.html">Contact Us</a></h2>
                  <p>Details for reaching out, such as email, phone number, and a contact form.</p>
              </section>

          </body>
          </html>