• Hi,

    Happy to find this awesome free theme, only one thing bothers me. I need to use the translation plugin Polylang and I want to have flags in the nav. Now that don’t work cuz of the theme nav that have the image feature. How can I disable that feature in navigation? It’s not enough to choose the option not to show image in nav.

    Cheers/Stephan

Viewing 1 replies (of 1 total)
  • Theme Author tbcrew

    (@tbcrew)

    Hi. There’s no option for hiding/showing the thumbnails in navigation. You have to edit the file functions.php:
    @line 1305-1322 there’s the code of the navigation block. Replace it with

    <div class="nav-single fixfloat">
    		<?php if ( $prev ) { ?>
    			<span class="nav-previous ">
    				<a rel="prev" href="<?php echo esc_url( get_permalink( $prev ) ); ?>" title="<?php echo esc_attr(strip_tags( __( 'Previous Post', 'boozurk' ) . ': ' . $prev_title ) ); ?>">
    					<span><?php echo $prev_title; ?></span>
    				</a>
    			</span>
    		<?php } ?>
    		<?php if ( $next ) { ?>
    			<span class="nav-next">
    				<a rel="next" href="<?php echo esc_url( get_permalink( $next ) ); ?>" title="<?php echo esc_attr(strip_tags( __( 'Next Post', 'boozurk' ) . ': ' . $next_title ) ); ?>">
    					<span><?php echo $next_title; ?></span>
    				</a>
    			</span>
    		<?php } ?>
    	</div><!-- #nav-single -->

Viewing 1 replies (of 1 total)
  • The topic ‘Navigation’ is closed to new replies.