How can I modify the blog posts (for example, I don’t want to show a date or category on the blog posts)?
Thanks
If you want to remove the date open up includes/loop-index.php and delete:
echo "<span class='date-container minor-meta'>".get_the_time('d M Y')."</span>";
echo "<span class='text-sep'>/</span>";
If you want to remove the categories open up includes/loop-index.php and delete:
echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";
echo $cats;
echo '</span><span class="text-sep">/</span>';