Product POage Tabs

For general questions and discussions specific to the AbleCommerce GOLD ASP.Net shopping cart software.
Post Reply
kwikstand
Commodore (COMO)
Commodore (COMO)
Posts: 410
Joined: Mon Feb 19, 2007 8:12 pm
Contact:

Product POage Tabs

Post by kwikstand » Thu Aug 04, 2016 5:02 am

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

nadeem
Captain (CAPT)
Captain (CAPT)
Posts: 258
Joined: Tue Jul 31, 2012 7:23 pm

Re: Product POage Tabs

Post by nadeem » Thu Aug 04, 2016 5:35 am

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.

nadeem
Captain (CAPT)
Captain (CAPT)
Posts: 258
Joined: Tue Jul 31, 2012 7:23 pm

Re: Product POage Tabs

Post by nadeem » Thu Aug 04, 2016 6:13 am

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.

Post Reply