Hello,
We are experiencing an issue with the WoodMart Header Banner on our website.
The Header Banner itself is enabled and the empty banner area appears correctly above the header, but the actual content is not rendered on the frontend.
We have tested both content types:
* Text
* HTML Block
Neither of them is displayed. The result is simply an empty/white banner area.
We have already confirmed that the settings are being saved correctly. For example:
`text
header_banner: 1
header_banner_content_type: text
header_banner_shortcode: TEST PANELI
header_banner_html_block: 36942
`
So WoodMart is correctly retrieving the saved values.
We also inspected the frontend HTML. The banner wrapper is present:
`html
<div class=”header-banner wd-hb” role=”complementary” aria-label=”Header banner”>
<div class=”container wd-entry-content”>
…
</div>
</div>
`
However, the actual banner content inside the container is empty.
To test this further, we manually output:
`php
woodmart_get_opt(‘header_banner_shortcode’)
`
via the wp_body_open hook, and the content displays correctly.
This confirms that:
* the WoodMart setting is saved correctly;
* woodmart_get_opt() returns the correct content;
* PHP output works correctly;
* the issue seems to be specifically related to WoodMart’s own Header Banner rendering.
We also cleared all website/cache layers during testing.
The website is currently using WoodMart 8.5.5.
Could you please check why the Header Banner renderer is not outputting the saved text or HTML Block content?
Thank you.