Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1354314

    Hi I just want to remove the word “by” so it says just the name of the author. The reason is I want to use press release as an author sometimes and I don’t want it to say bypress release.

    #1354315

    in loop-index.php you have that filter : avf_show_author_meta search for it – one of the next lines is:

    $meta_author  = '<span class="blog-author minor-meta">' . __( 'by', 'avia_framework' ) . ' ';
    

    there is the linking word : by
    so my advice is to have a child-theme loop-index.php
    edit that line to :

    $meta_author  = '<span class="blog-author minor-meta">';
    

    and create a child-theme subfolder called : includes and put a version of that edited loop-index.php inside it.

    PS: if you like to have the same on author loop – look at loop-author.php
    search there also for the same filter name and change this line in a similar way – proceed with the changed copy in the same way.

    #1354324

    Guenni007 you are amazing! Your instructions were very easy to follow and it worked right away!
    Vielen Dank!
    Tina

    #1354328

    Hi,

    Thanks for helping out @guenni007 :-)

    Best regards,
    Rikard

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.