How to display the description tab in Jigoshop Sommerce Theme
May 29, 2012 / by Marco / Categories : jigoshop, Technology
By default, Jigoshop loads the Related products tab when displaying a product. If you want to change this so that another tab (e.g Description) is displayed then follow these instructions:
1. Open the Jigoshop.php file in /wp-content/themes/sommerce/inc
2. From line 212 to 222 replace with the following:
if ( get_the_content() == ” && ! yiw_if_related() && ! $_product->has_attributes() && ! comments_open() )
return;
$current_tab = ‘#tab-description’; /*
if ( yiw_if_related() )
$current_tab = ‘#related-products’;
elseif ( get_the_content() != ” )
$current_tab = ‘#tab-description’;
elseif ( comments_open() )
$current_tab = ‘#tab-reviews’;
elseif ( $_product->has_attributes() )
$current_tab = ‘#tab-attributes’;*/
So it should look like this:
OTHER ARTICLES YOU MAY LIKE
WHEN TO HIRE YOUR FIRST EMPLOYEE (AND WHEN NOT TO)
For many entrepreneurs, hiring the first employee is a major milestone. It represents growth, momentum, and the possibility that your business is evolving from a solo operation into something larger. At the same time, it can feel intimidating. Bringing someone onto your team introduces new responsibilities, financial commitments, and operational challenges. The decision to hire […]
read more
USE THESE TOOLS TO BUILD YOUR BUSINESS
Building a business has never been short on ambition, but it has often been short on time, budget, and operational headroom. Founders are expected to market like a media team, sell like a seasoned closer, support customers around the clock, manage projects with precision, and still find space to think strategically. That is exactly why […]
read more

