I use information box with link and button.
I set a Link in general section and check the “open link in new tap”.
And I also make the button in information box through writing some text in button text in button section.
Now it shows two duplicated new taps when I click a button in the information box.
I think it’s because this elements has two link tag.
One is the onclick event on woodmart-info-box and the other is “a” tag inside the button in information box.
Please fix it.
Here is the code.
<div class=" cursor-pointer woodmart-info-box text-left box-title-default icon-alignment-top box- color-scheme-dark with-btn btn-position-static " onclick="window.open("http://naver.me/FCNEdSJa","_blank")">
<div class="info-box-content">
<div class="info-box-subtitle subtitle-style-default subtitle-color-default">sub title</div>
<h4 class="info-box-title">Title</h4>
<div class="info-box-inner">Brief content</div>
<div class="info-btn-wrapper"><div class="woodmart-button-wrapper text-left">
<a href="http://naver.me/FCNEdSJa" title="aaa" target="_blank" class="btn btn-color-default btn-style-default btn-size-default">Button text</a>
</div>
</div>
</div>
</div>