Hi,
You will need to do a template overriding using a child theme.
http://docs.presscustomizr.com/article/239-using-a-child-theme-with-hueman
The file to override is content.php
Both home and archive post grid is generated by this file.
You can duplicate it into your child theme and edit it.
The code to move is the following.
<h2 class="post-title entry-title">
<a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a>
</h2><!--/.post-title-->
Thank you
-
This reply was modified 9 years, 4 months ago by
Denzel Chia.
Thanks a lot! I tried it and it works! For the featured category, how its possible to do the same thing?
-
This reply was modified 9 years, 4 months ago by
arcilli.
Hi,
The file to override is content-featured.php
The code to move is the same.
Thank you