Discussions
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
How to Display Videos or Related Items in Tabs on PDP in NetSuite SuiteCommerce Advanced?
Hi everyone,
I am working on customizing the Product Detail Page (PDP) in NetSuite SuiteCommerce Advanced 2023.1.0 using Manor Theme. I have customize the code to display tabs and their content, as shown below:
<div role="tabpanel">
<!-- When more than one detail is shown, these are the tab headers -->
<ul class="product-details-information-content-tabs" role="tablist">
{{#each details}}
<li class="product-details-information-tab-title {{#if @first}} active {{/if}}" role="presentation">
<a href="#" data-action="selected-tab" data-id="{{@index}}" data-target="#product-details-information-tab-{{@index}}" data-toggle="tab">{{name}}</a>
</li>
{{/each}}
</ul>
<!-- Tab Contents -->
<div class="product-details-information-tab-content" data-type="information-content" data-action="tab-content">
{{#each details}}
<div role="tabpanel" class="product-details-information-tab-content-panel {{#if @first}}active{{/if}}" id="product-details-information-tab-{{@index}}" {{#if @first}}itemprop="description"{{/if}} data-action="pushable" data-id="product-details-information-{{ @index }}">