Forum Replies Created

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • in reply to: Edit /category/ and /tag/ layout #1232050

    Thanks, this works.

    I used this for my second question (for information) :

    
    .archive .category-term-description {
    	margin: 0;
    }

    Best regards.

    in reply to: Edit /category/ and /tag/ layout #1231757

    Sorry I can’t link the website but here’s the class used for the “Articles” title, if it can help :
    <h3 class=”post-title tag-page-post-type-title”>Articles </h3>

    Also there’s a div above that h3 I’d like to remove if not used
    <div class=”category-term-description”></div>
    It’s adding 25px margin for nothing it seems like.

    Appreciate your help,
    Best regards

    in reply to: Edit /category/ and /tag/ layout #1231669

    So yeah apparently it was that first suggestion I was looking for. As in my blog layout setting I had the advanced layout and I needed to use the simple option as you did.

    Thanks for you help.

    Can I ask here really fast where I can remove the title in the /tags/ listing ? it’s showing “Articles” (french) in that page and I’d like not to.

    in reply to: Change the Information displayed below post title #1228810

    Thank you, that’s exactly what I was looking for, here’s the result :
    https://ibb.co/bzN7NzM

    So for people curious about what I did :
    (OG code)

    echo '<span class="blog-author minor-meta">' . __( 'by','avia_framework' ) . ' ';
     echo	'<span class="entry-author-link" ' . avia_markup_helper( array( 'context' => 'author_name', 'echo' => false ) ) . '>';
     echo		'<span class="author"><span class="fn">';
    				the_author_posts_link();
     echo		'</span></span>';
     echo	'</span>';
     echo '</span>';

    What I added/removed :

    echo '<span class="blog-author minor-meta">' . /*__( 'by','avia_framework' ) .*/ ' ';
     echo	'<span class="entry-author-link" ' . avia_markup_helper( array( 'context' => 'author_name', 'echo' => false ) ) . '>';
     echo		'<span class="author"><span class="fn">';
    				//the_author_posts_link();
    				the_tags( '', ', ', '<br />' );
     echo		'</span></span>';
     echo	'</span>';
     echo '</span>';

    Take note that the author has to be enabled in the enfold theme options to make the tags appear since we replaced the author with the tags.

    My Enfold version is 4.7.5.

    Best regards.

    in reply to: Change the Information displayed below post title #1228292

    I can’t link my website, but I can give you more context.

    My users will add a tag (only one) through the blog post maker like in the screenshot above :
    https://ibb.co/60LwQD2

    And I would like to make these tags appear in the blog posts listing in this place (where in my previous post I could make appear the author) :
    https://ibb.co/Jq2P2NK

    In case you are wondering, I have the tags enabled, but it’s not appearing anywhere :
    https://ibb.co/3hSvDgW

    In my blog post listing I have this setup :
    https://ibb.co/Yj5mnqs
    (style : Simple with Title + meta-data)
    But it seems like the tags are not considered as meta-data so they don’t appear. I don’t mind adding them myself and I don’t want to use a different style for my listing.

    As I said in the previous post, im trying to do something similar to this : https://kriesi.at/support/topic/enfold-modifying-the-information-displayed-below-post-title/
    I just can’t find the file I should edit.

    Thank you for helping,
    Best regards.

Viewing 5 posts - 1 through 5 (of 5 total)