Loading...

Knowledge Base

How to Add Custom Pages in SuperSite

When you want to add informational or content pages to your SuperSite storefront. This article explains how to create custom pages in SuperSite.


Adding a Custom Page in your SuperSite

The SuperSite has been built using multiple HTML, CSS, and Javascript files which are cumulatively known as templates.

If you want to add a custom page in your SuperSite, you can do so by simply adding your own HTML under MyUploadedPages folder. Here's the complete path to this folder:

Dashboard » Manage Site » Edit/Translate Content Pages » MyUploadedPages

To add a new page, click on the Add your own HTML page button.

Here's a screenshot to illustrate the same:

Testing Image

Note that you only need to add the HTML that will go within the <body>...</body> tags. Please do not include the <html>, <head> and <body> tags in your HTML code as these are built-in tags which are picked up automatically from the main template files.

Here's a screenshot to illustrate how it should look like:

Testing Image

Note that every custom file you add in the MyUploadedPages folder will have a .html extension. For example, if you add a file called mynewpage, the filename would be mynewpage.html

Adding a Page Title, Meta Description and Meta Keywords to your custom page

There are separate files for Page Titles, Meta Description, and Meta Keywords. These files are located in the Misc folder. Here's the complete path:

Page Titles:

Dashboard » Manage Site » Edit/Translate Content Pages » Misc » Page_titles.txt

Here, you simply need to add a new line in the format given below to add a title for your new page:

mynewpage.html=My Page Title

Meta Description:

Dashboard » Manage Site » Edit/Translate Content Pages » Misc » Meta_description.txt

Here, you simply need to add a new line in the format given below to add a Description for your new page:

mynewpage.html=My Description

Meta Keywords:

Dashboard » Manage Site » Edit/Translate Content Pages » Misc » Meta_keywords.txt

Here, you simply need to add a new line in the format given below to add Keywords (comma-separated) for your new page:

mynewpage.html=Keyword 1, Keyword 2, Keyword 3

Customizing the URL of your new page

By default, the URL of your new page would look like this:

https://yoursupersitedomain/content.php?action=mypages&page=mynewpage.html

For SEO and better accessibility, you may want to customize this URL and make it shorter, simpler, and cleaner. Here's how you can achieve this:

  1. In the SuperSite customization panel (admin area), click on the "Settings" tab
  2. Go to the "Customize URLs" section and click on the Modify URLs button
  3. On the next page, scroll down to the "MyUploadedPages" section at the bottom and replace the default URL with your custom URL
    Here's a screenshot to illustrate this:

    Testing Image />

  4. Click on the Save button
  5. Reload the cache for the changes to take effect

Loading...