Support

Please or Register to create posts and topics.

BigCommerce Cornerstone: Add More Product Tabs Easily

””

A lightweight add-on that lets your Add More Product Tabs Easily  in your BigCommerce store.

DEMO – https://knife-demo.mybigcommerce.com/fiber-blade/

How to Add JS in Script Manager

  1. Copy the JS file URL:

  2. Open your Script Manager.

  3. Add a new script, and paste the above URL.

  4. Save and publish the changes.

 

How to Add Tabs

””

Copy and paste below HTML sample code. 

HTML

<!– separator –>
<ul>
<li class=”tab”>
<a class=”tab-title” href=”#tab1″>How to Use</a>
</li>
</ul>
<div class=”tab-content” id=”tab1″>
 How to Use content
</div>
<!– separator –>
<ul>
<li class=”tab”>
<a class=”tab-title” href=”#tab2″>Ingredients</a>
</li>
</ul>
<div class=”tab-content” id=”tab2″>
 Ingredients content
</div>
<!– separator –>
<ul>
<li class=”tab”>
<a class=”tab-title” href=”#tab3″>Allergens</a>
</li>
</ul>
<div class=”tab-content” id=”tab3″>
 Allergens content
</div>
<!– separator –>
<ul>
<li class=”tab”>
<a class=”tab-title” href=”#tab4″>Info sheets</a>
</li>
</ul>
<div class=”tab-content” id=”tab4″>
 Info sheets content
</div>
<!– separator –>