Currently, unpublishing pages support and removing it from the page’s listing are not available. However, here’s what you can do to minimize the pages’ exposure to visitors.
Method 1: Unpublish your page
Step 1: From your GemPages Dashboard, go to the Pages tab.
Step 2: In the top-right corner of the page you want to delete, click the three-dot button then select Unpublish.
Step 3: Unpublish confirmation.
Method 2: Hide the current by adding custom code
Step 1: Go to your Shopify Admin > Online Store > Themes.
Step 2: Select the theme you want to edit, and then click Actions > Edit code.
Step 3: After that, look for the file “theme.liquid” under the Layout section or via the search bar. Select to open the file.
Step 4: To exclude the Search template, paste the following code in the <head> section:
{% if template contains 'search' %}
<meta name="robots" content="noindex">
{% endif %}
Step 5: To exclude a specific page from the search engine, paste the following code in the <head> section:
{% if handle contains 'page-handle-you-want-to-exclude' %}
<meta name="robots" content="noindex">
<meta name="googlebot" content="noindex">
{% endif %}
Make sure that you replace the page-handle-you-want-to-exclude with the correct page handle. Check out the article about page handle for more information
Step 6: Click on “Save” when finished.
Thank you for your comments