Hi Greg, in order to change or remove the markup of the post metadata, you need to override the ‘loop-single.php’ template by copying the one in the CBOX theme to the same relative position in your child theme (I’m going to call its enclosing folder ‘cbox-child’ below).
In this instance it means copying ‘cbox-theme/templates/loops/loop-single.php’ to ‘cbox-child/templates/loops/loop-single.php’ where you can remove the metadata completely by commenting out the line that reads:
infinity_get_template_part( 'templates/parts/post-meta-top');
For you, it should then read:
//infinity_get_template_part( 'templates/parts/post-meta-top');
If you want finer control of what’s in the metadata section itself, copy ‘cbox-theme/templates/parts/post-meta-top.php’ to ‘cbox-child/templates/parts/post-meta-top.php’ and edit its content to your requirements. As long as your child theme is the active theme, this will take precedence over the one in ‘cbox-theme’.
Cheers, Christian