Available on the Awesome plan
ON THIS PAGE
- What is the All Reviews Page?
- All Reviews Page installation
- Customize your All Reviews Page URL
- Disable product reviews sub-tab on All Reviews Page
- Remove Judge.me branding from All Reviews Page
1. What is the All Reviews Page?
The All Reviews Page helps you build a dedicated page to collect and display both product and shop-level reviews. This widget is a good place to redirect your visitors browsing through your shop to the specific product pages and convert them into customers. It also helps you collect more shop reviews and improve your search ranking. You can install and customize the All Reviews Page on our Awesome plan ($15/month).
Need more inspiration for the All Reviews Page? Check our examples page.
2. All Reviews Page installation
Follow these instructions to install the All Reviews Page:
- From your admin dashboard, go to Settings > Other Widgets > All Reviews Page.
- Toggle the bar to enable the All Reviews Page.
- Set the All Reviews Page Title and All Reviews Page Handle. We use the All Reviews Page Handle to set the URL for your All Reviews Page. By default, your page URL is shop-domain.com/pages/reviews.
- After you enable the All Reviews Page in your settings, we'll automatically create a Page for you in your Shopify Sales Channels > Pages, and send you an email to announce when your page is ready.
- If you can't see Reviews Page, maybe it is accidentally hidden by Shopify. In this case, you can just click on your Review Page in Shopify Sales Channels > Pages, then change it to "Visible".
3. Customize your All Reviews Page URL
If you want to create a custom URL for your All Reviews Page, please follow these steps:
- From your Shopify admin dashboard, go to Sales Channels > Online Store > Navigation > URL Redirects
- Click the Create URL Redirects button
- Type /reviews in Redirect from, and type /pages/reviews in Redirect to
- Click Save Redirect. Now your customers now can go to the pretty /reviews link and be redirected to your All Reviews Page (/pages/reviews).
Note
On the first load, your All Reviews Page will load 25 product reviews and 25 shop reviews from Shopify meta fields. After that, each moment you scroll down a new load of reviews will take place. Each load of new reviews will include 25 new reviews. Therefore, the infinite scrolling of the All Reviews Page doesn't increase the loading times for your store's visitors.
4. Disable product reviews sub-tab on All Reviews Page
If you want to only show shop reviews, then please add the following:
- Add the following CSS in any of your CSS files:
.jdgm-subtab__name[data-tabname="product-reviews"] {
display: none !important;
}
- Add the following script in templates/page.judgemeallreviews.liquid
<script>
$(document).ready( function() {
setTimeout( function() {
$('.jdgm-all-reviews-page .jdgm-subtab__name[data-tabname="shop-reviews"]').click();
}, 500);
});
</script>
5. Remove Judge.me branding from All Reviews Page
Add the line to your snippet judgeme_all_reviews.liquid
<style>
.jdgm-branding-footer {
display:none !important;
}
</style>