Title: uzsbm's Replies | WordPress.org

---

# uzsbm

  [  ](https://wordpress.org/support/users/uzsbm/)

 *   [Profile](https://wordpress.org/support/users/uzsbm/)
 *   [Topics Started](https://wordpress.org/support/users/uzsbm/topics/)
 *   [Replies Created](https://wordpress.org/support/users/uzsbm/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/uzsbm/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/uzsbm/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/uzsbm/engagements/)
 *   [Favorites](https://wordpress.org/support/users/uzsbm/favorites/)

 Search replies:

## Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] different ad widget for mobile](https://wordpress.org/support/topic/different-ad-widget-for-mobile/)
 *  Thread Starter [uzsbm](https://wordpress.org/support/users/uzsbm/)
 * (@uzsbm)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/different-ad-widget-for-mobile/#post-9634379)
 * ok, I will check it out. Thank you
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] show updated date only](https://wordpress.org/support/topic/show-updated-date-only/)
 *  Thread Starter [uzsbm](https://wordpress.org/support/users/uzsbm/)
 * (@uzsbm)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/show-updated-date-only/#post-9583956)
 * figured it out
    I removed `<?php _e('Published', 'hueman'); ?> <time class="published"
   datetime="<?php echo $published_date; ?>"><?php echo $published_date; ?>` and
   it just shows the updated date now
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] mobile menu not working](https://wordpress.org/support/topic/mobile-menu-not-working-76/)
 *  Thread Starter [uzsbm](https://wordpress.org/support/users/uzsbm/)
 * (@uzsbm)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/mobile-menu-not-working-76/#post-9582816)
 * My child theme was causing the issue
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] mobile menu not working](https://wordpress.org/support/topic/mobile-menu-not-working-76/)
 *  Thread Starter [uzsbm](https://wordpress.org/support/users/uzsbm/)
 * (@uzsbm)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/mobile-menu-not-working-76/#post-9582061)
 * Ok, I disabled all my plugins and none of them where causing the issue.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] Related posts and previous post navigation not showing](https://wordpress.org/support/topic/related-posts-not-showing-8/)
 *  Thread Starter [uzsbm](https://wordpress.org/support/users/uzsbm/)
 * (@uzsbm)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/related-posts-not-showing-8/#post-7588367)
 * Thanks for the help. I just redid the single.php file from the original and the
   problem is solved.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] Related posts and previous post navigation not showing](https://wordpress.org/support/topic/related-posts-not-showing-8/)
 *  Thread Starter [uzsbm](https://wordpress.org/support/users/uzsbm/)
 * (@uzsbm)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/related-posts-not-showing-8/#post-7588366)
 * Hi, still working on this. When I switch to the standard theme, the navigation
   appears. Can you tell me what in my child theme post page is wrong?
 *     ```
       <?php get_header(); ?>
   
       <section class="content">
   
       	<?php get_template_part('inc/page-title'); ?>
   
       	<div class="pad group">
   
       		<?php while ( have_posts() ): the_post(); ?>
       			<article <?php post_class(); ?>>
       				<div class="post-inner group">
       					<h1 class="post-title"><?php the_title(); ?></h1>
   
       					<?php get_template_part('inc/post-formats'); ?>
   
       					<div class="clear"></div>
   
       					<div class="entry">
       						<?php the_content(); ?>
       <div align="center" class="ads-posts-desktop"><?php echo do_shortcode('[widget id="text-52"]') ?></div><div align="center" class="ads-posts-mobile"><?php echo do_shortcode('[widget id="text-52"]') ?></div>
       					<div class="entry-inner">
       							<?php wp_link_pages(array('before'=>'<div class="post-pages">'.__('Pages:','hueman'),'after'=>'</div>')); ?>
       					</div><div class="clear"></div>
       					</div><!--/.entry-->
   
       				</div><!--/.post-inner-->
       			</article><!--/.post-->
       		<?php endwhile; ?>
   
       		<div class="clear"></div>
       		<?php the_tags('<p class="post-tags"><span>'.__('Tags:','hueman').'</span> ','','</p>'); ?>
   
       		<?php if ( !ot_get_option( 'author-bio' ) && get_the_author_meta( 'description' ) ): ?>
       				<div class="author-bio">
       				<div class="bio-avatar"><?php echo get_avatar(get_the_author_meta('user_email'),'128'); ?></div>
       				<p class="bio-name"><?php the_author_meta('display_name'); ?></p>
       				<p class="bio-desc"><?php the_author_meta('description'); ?></p>
       				<div class="clear"></div>
       			</div>
       		<?php endif; ?>
   
       		<?php if ( ot_get_option( 'post-nav' ) == 'content') { get_template_part('inc/post-nav'); } ?>
   
       		<?php if ( ot_get_option( 'related-posts' ) != '1' ) { get_template_part('inc/related-posts'); } ?>
   
       		<?php comments_template('/comments.php',true); ?>
   
       	</div><!--/.pad-->
   
       </section><!--/.content-->
   
       <?php get_sidebar(); ?>
   
       <?php get_footer(); ?>
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] Adding more social icons](https://wordpress.org/support/topic/adding-more-social-icons-1/)
 *  Thread Starter [uzsbm](https://wordpress.org/support/users/uzsbm/)
 * (@uzsbm)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/adding-more-social-icons-1/#post-7623159)
 * The ones in the drop down list when I go into Social Links under Global Settings
   in the theme editor.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] Related posts and previous post navigation not showing](https://wordpress.org/support/topic/related-posts-not-showing-8/)
 *  Thread Starter [uzsbm](https://wordpress.org/support/users/uzsbm/)
 * (@uzsbm)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/related-posts-not-showing-8/#post-7588285)
 * Can he mark it resolved if not the thread starter?
    I turned off comment plugins
   and the issue is not resolved. These features were working until I updated the
   theme.

Viewing 8 replies - 1 through 8 (of 8 total)