Product POage Tabs
Product POage Tabs
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.
Contractor's Solutions
www. contractors-solutions.net
www. contractors-solutions.net
Re: Product POage Tabs
You can simply hide the "Reviews" tab form product page. To do so open ConLib/ProductPage.ascx
Locate
and replace with
Similarly,
Locate
and replace with
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.
Locate
Code: Select all
<li id="reviewsTab" runat="server" clientidmode="Static"><a href="#reviewsPane" class="tab">Reviews</a></li>
Code: Select all
<li id="reviewsTab" runat="server" clientidmode="Static"><a href="#reviewsPane" class="tab" style="display:none;">Reviews</a></li>
Locate
Code: Select all
<div id="reviewsPane" runat="server" clientidmode="Static" class="tab-pane">
<uc9:ProductReviewsPanel ID="ProductReviewsPanel1" runat="server" />
</div>
Code: Select all
<div id="reviewsPane" runat="server" clientidmode="Static" class="tab-pane" visible="false">
<uc9:ProductReviewsPanel ID="ProductReviewsPanel1" runat="server" />
</div>
Re: Product POage Tabs
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.