Hi,
you need to apply the change indicated within the php file directly.
Find the file named post-meta.php (under dosislite / template-parts ) and replace.
If you did not make a child theme then your changes might be erase when the them will update.
A child theme means you will use the theme of your choice as your base, and you will have a dedicated space to make modification that will not be erased by any update.
Best Regards,
Hi,
In your childtheme, copy the post-meta.php.
You will have to replace this part :
<span><?php echo esc_html__( ‘by’, ‘dosislite’ ) ?>by</span> <?php the_author() ?>
With the following if you want one by:
<span><?php echo esc_html__( ‘by’, ‘dosislite’ ) ?></span> <?php the_author() ?>
With the following if you don’t want any “by”:
<span><?php the_author() ?>
Hope this helped!
Flo