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

    Hi again.

    In the single blog post, can you please let me know where I can edit the meta elements?

    I would like to:
    1. Remove the “in” text displayed for Post Category.
    2. Remove the extra “/” as I don’t have any any to display after that.

    Thanks!

    #294273

    Hey cindy531!

    Thank you for using our theme.

    You have to modify a theme file. If you are using a child theme, copy enfold/includes/loop-index.php to the corresponding child theme fiolder enfold-child/includes/, otherwide modify the original file:

    
    // goto line 165:
                    echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";
                    echo $cats;
                    echo '</span><span class="text-sep text-sep-cat">/</span>';
    
    // and replace with:
                    echo '<span class="blog-categories minor-meta">';
                    echo $cats;
                    echo '</span>';
    
    

    Best regards,
    Günter

    #294632

    Perfect. Thanks Günter!

    #294822

    Hey!

    Glad I could help you. Enjoy the theme.
    Best regards,
    Günter

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Edit the meta elements on a single blog post’ is closed to new replies.