Hello,
we purchased Kleo WP theme and it is looking great so far. However, we run into an issue with the top bar which is not displaying, even we set “Display top bar” in theme settings to ON.
I am a developer myself, and I wanted to check-in what’s going on. It seems that output of these function returns int(0) always (file page-parts/general-header-section.php):
$top_bar = sq_option( ‘show_top_bar’, 1 );
$top_bar = apply_filters( ‘kleo_show_top_bar’, $top_bar );
If I comment out last line (apply_filters), top_bar is being displayed, however we do not have control over that in Theme options anymore (it is displaying even if we turn it off).
We are using Kleo Child theme but with no code modifciations applied yet! It is fresh newly installed theme.
Furthermore, I checked row ‘kleo_kleo_child’ and it seems like that option (show_top_bar) is mapped fine as s:1 value.
Thank you.