Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #745582

    Hello,

    I have a blog: http://bit.ly/2iLAkYt

    And I have 3 blog posts and every one of them has tags under it but when I click on the tag it directs me into the post.

    But I want to direct people into the blog posts view (and there should be only posts, where the same tag is attatched).

    Like its in this blog: http://bit.ly/2kQYjoF

    Please can you help me:)

    #745615

    Hi pimroll!

    I pressed a tag
    http://dreammarketing.ee/tag/google-tag-manager/

    and it loaded me a page, with all the posts with that tags.
    What is that you want and it is different from what?

    Cheers!
    Basilis

    #745751

    Hello Basilis,

    I want to direct people into this view: http://bit.ly/2iLAkYt

    Where there is a list of all the blog posts which have this tag.

    Like its in this blog: http://bit.ly/2kT4597

    Where foe example the tag name is “mobiiliturundus” and if you click on it it goes into the blog post view not to the post itself.

    I hope you understand, what I mean.

    #747520

    Hi,

    I am not sure if i understood you clearly as clicking tags goes to tag archive on my end. If you would like to change tag archive style, please refer to this post – http://kriesi.at/documentation/enfold/change-archive-categorytag-blog-style/

    Best regards,
    Yigit

    #747533

    Hello Yigit,

    What I mean by that is that if you click on the tag right now, it sends you to the same blog post.

    But I want send people to the blog grid view, where there is a list of all the posts, where this tag has been added, the view like this:
    http://bit.ly/2iLAkYt

    Can I do it with this post you shared?

    • This reply was modified 7 years, 2 months ago by pimroll.
    #747538

    Hi!

    Yes, you can add following code to Functions.php file in Appearance > Editor

    add_filter('avf_blog_style','avia_change_tag_blog_layout', 10, 2); 
    function avia_change_tag_blog_layout($layout, $context){
    if($context == 'tag') $layout = 'blog-grid';
    return $layout;
    }

    Regards,
    Yigit

    #747545

    Hello Yigit,

    Thanks, that was exactly what I meant but can I customize the size of the images in the grid aswell?

    Best Regards,

    #747547

    Hi,

    Try the following:
    1. Install this plugin: https://wordpress.org/plugins/simple-image-sizes/
    2. Go to Settings > Media
    3. Change the portfolio image size (increase its width / height).
    4. Regenerate the thumbnails by clicking the button at the bottom.

    Best regards,
    Yigit

    #747655

    Got it thanks!

    #747658

    Hey!

    You are welcome! Let us know if you have any other questions or issues :)

    Best regards,
    Yigit

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘How can I display only the list of blog posts when someone clicks on the tag’ is closed to new replies.