Hi guys, general question. I'm trying to add tabs on restaurant page via "custom message" in restaurant meta.
However when addind tabs it gives make the prices goes to NULL in cart but ONLY when a product has on addon ()option) is there anyway to fix this? Does anybody know? Maybe @danoki 😀
`<p></p><div class="tabset">
<input type="radio" name="tabset" id="tab1" aria-controls="marzen" checked="">
<label for="tab1">Tab1</label>
<input type="radio" name="tabset" id="tab2" aria-controls="rauchbier">
<label for="tab2">Tab2</label>
<input type="radio" name="tabset" id="tab3" aria-controls="dunkles">
<label for="tab3">Tab3</label>
<input type="radio" name="tabset" id="tab4" aria-controls="dunk">
<label for="tab4">Tab4</label>
<div class="tab-panels">
<section id="marzen" class="tab-panel">
<table class="table table-bordered"><tbody><tr><td>tab1 text</td></tr></tbody></table>
</section>
<section id="rauchbier" class="tab-panel">
<table class="table table-bordered"><tbody><tr><td>
<table class="table table-bordered"><tbody><tr><td>TAB2 TEXT</td></tr></tbody></table></td></tr></tbody></table>
</section>
<section id="dunkles" class="tab-panel">
<table class="table table-bordered"><tbody><tr><td>
<table class="table table-bordered"><tbody><tr><td><b>TAB3 TEXT</td></tr></tbody></table>
</td></tr></tbody></table>
</section>
<section id="dunk" class="tab-panel">
<table class="table table-bordered"><tbody><tr><td>
<table class="table table-bordered"><tbody><tr><td><TAB4 TEXT</td></tr></tbody></table>
</td></tr></tbody></table>
</section>
</div>
</div>`