Hi,
After update to 5.2.5 the navbar is missed from homepage but navbar loads well on single pages but the blog root appears on navbar right after homepage icon which I need to hide it (BLOG phrase).
This is code of _navbar.php:
<?php
// =============================================================================
// VIEWS/GLOBAL/_NAVBAR.PHP
// -----------------------------------------------------------------------------
// Outputs the navbar.
// =============================================================================
$navbar_position = x_get_navbar_positioning();
$logo_nav_layout = x_get_logo_navigation_layout();
$is_one_page_nav = x_is_one_page_navigation();
?>
<?php if ( ( $navbar_position == 'static-top' || $navbar_position == 'fixed-top' || $is_one_page_nav ) && $logo_nav_layout == 'stacked' ) : ?>
<div class="x-logobar">
<div class="x-logobar-inner">
<div class="x-container-fluid max width">
<?php x_get_view( 'global', '_brand' ); ?>
</div>
</div> <!-- end .x-logobar-inner -->
</div> <!-- end .x-logobar -->
<div class="x-navbar-wrap">
<div class="<?php x_navbar_class(); ?>">
<div class="x-navbar-inner">
<div class="x-container-fluid max width">
<?php x_get_view( 'global', '_nav', 'primary' ); ?>
<div class="c-social"><?php x_social_global(); ?></div>
</div>
</div> <!-- end .x-navbar-inner -->
</div> <!-- end .x-navbar -->
</div> <!-- end .x-navbar-wrap -->
<?php else : ?>
<div class="x-navbar-wrap">
<div class="<?php x_navbar_class(); ?>">
<div class="x-navbar-inner">
<div class="x-container-fluid max width">
<?php x_get_view( 'global', '_brand' ); ?>
<?php x_get_view( 'global', '_nav', 'primary' ); ?>
<div class="c-social"><?php x_social_global(); ?></div>
</div>
</div> <!-- end .x-navbar-inner -->
</div> <!-- end .x-navbar -->
</div> <!-- end .x-navbar-wrap -->
<?php endif; ?>
This is my blog URL : www.otoraby.com
Could you please guide me on these issues?
Thank you in advance.