Close

H2 heading tags

MotorStarters
8 years ago
#9863 Quote
Avatar
  • 5
Hi, how do I change all the tab names to <h2> heading tags?
iliyan.tanev
8 years ago
#9866 Quote
Avatar
  • Moderator
  • 347
Hi,

You will need to go to Plugins\SevenSpikes.Nop.Plugins.NopQuickTabs\Views\ProductTab, open the _ProductTabsWithAjax.cshtml or _ProductTabsWithoutAjax.cshtml, depending if you are using the tabs with or without ajax, there you will find a foreach loop with the following content:


<li>
      <a href="#[email protected]">@tabInfo.Title</a>
</li>


Place the h2 tag around the anchor tag.

Hope this helps!
Regards,
Iliyan Tanev
Nop-Templates Dev Team
MotorStarters
8 years ago
#9894 Quote
Avatar
  • 5
Perfect, thanks