You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Inside productdetails, but not in lists / categories, $block->getTaxText() ( \Magenerds\GermanLaw\Block\AfterPrice ) is executed twice, though it is not directly from inside the module which I searched through. Maybe Magento´s behaviour changed (also because Magenerds/BasePrice#2 is a similar issue in another module)...?
For a quick and dirty fix you can use css as seen in the screenshot .tax-details + .tax-details { display: none; }
Best regards, Pierre.
The text was updated successfully, but these errors were encountered:
The problem was that Magento wants to render the tier prices but as the product does not have tier prices it is empty, therefore it looks like duplicate rendering. There is a fix, which only displays the text, if tier prices are available: 65127c8
Inside productdetails, but not in lists / categories, $block->getTaxText() ( \Magenerds\GermanLaw\Block\AfterPrice ) is executed twice, though it is not directly from inside the module which I searched through. Maybe Magento´s behaviour changed (also because Magenerds/BasePrice#2 is a similar issue in another module)...?
For a quick and dirty fix you can use css as seen in the screenshot
.tax-details + .tax-details { display: none; }
Best regards, Pierre.
The text was updated successfully, but these errors were encountered: