How to display posts of any category by adding a page template for Hueman WordPress theme

Screenshot of how the display of category posts looks.  No images, just title and content. Actually, We have have created a child theme for Hueman with ACF (Advanced Custom Fields) inbuilt. With this child theme, you can assign any page with our page template. And then you can assign category to that page template. The… Continue reading How to display posts of any category by adding a page template for Hueman WordPress theme

How to remove featured image in homepage of Hueman theme?

In the content-featured.php, remove the following lines (from 5th line) <?php if ( has_post_thumbnail() ): ?> <?php the_post_thumbnail(‘thumb-large’); // only difference to content.php ?> <?php elseif ( ot_get_option(‘placeholder’) != ‘off’ ): ?> <img src=”<?php echo get_template_directory_uri(); ?>/img/thumb-medium.png” alt=”<?php the_title(); ?>” /> <?php endif; ?> This will remove the big fat featured image in homepage of… Continue reading How to remove featured image in homepage of Hueman theme?