Page 1 of 1
Product POage Tabs
Posted: Thu Aug 04, 2016 5:02 am
by kwikstand
How can I delete the "Reviews" tab on the product page? My SEO guy says Google doesn't put as much importance on content that needs a click to see it, so I put it underneath the description.
Re: Product POage Tabs
Posted: Thu Aug 04, 2016 5:35 am
by nadeem
You can simply hide the "Reviews" tab form product page. To do so open ConLib/ProductPage.ascx
Locate
Code: Select all
<li id="reviewsTab" runat="server" clientidmode="Static"><a href="#reviewsPane" class="tab">Reviews</a></li>
and replace with
Code: Select all
<li id="reviewsTab" runat="server" clientidmode="Static"><a href="#reviewsPane" class="tab" style="display:none;">Reviews</a></li>
Similarly,
Locate
Code: Select all
<div id="reviewsPane" runat="server" clientidmode="Static" class="tab-pane">
<uc9:ProductReviewsPanel ID="ProductReviewsPanel1" runat="server" />
</div>
and replace with
Code: Select all
<div id="reviewsPane" runat="server" clientidmode="Static" class="tab-pane" visible="false">
<uc9:ProductReviewsPanel ID="ProductReviewsPanel1" runat="server" />
</div>
This will hide the reviews tab from the page. Let me know if you want to completely remove/comment out the reviews code from the page.
Re: Product POage Tabs
Posted: Thu Aug 04, 2016 6:13 am
by nadeem
By the way, second part is optional. If you are using review panel somewhere else like under product description, then you have to do only first part update, that is; to hide the reviewsTab.