-
AuthorPosts
-
February 10, 2017 at 8:51 pm #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:)
February 10, 2017 at 10:13 pm #745615Hi 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!
BasilisFebruary 11, 2017 at 12:49 pm #745751Hello 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.
February 15, 2017 at 4:41 pm #747520Hi,
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,
YigitFebruary 15, 2017 at 4:59 pm #747533Hello 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/2iLAkYtCan I do it with this post you shared?
- This reply was modified 7 years, 9 months ago by pimroll.
February 15, 2017 at 5:02 pm #747538Hi!
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,
YigitFebruary 15, 2017 at 5:09 pm #747545Hello Yigit,
Thanks, that was exactly what I meant but can I customize the size of the images in the grid aswell?
Best Regards,
February 15, 2017 at 5:11 pm #747547Hi,
Try the following:
1. Install this plugin: https://wordpress.org/plugins/simple-image-sizes/
2. Go to Settings > Media
3. Change theportfolio
image size (increase its width / height).
4. Regenerate the thumbnails by clicking the button at the bottom.Best regards,
YigitFebruary 15, 2017 at 8:45 pm #747655Got it thanks!
February 15, 2017 at 8:49 pm #747658 -
AuthorPosts
- The topic ‘How can I display only the list of blog posts when someone clicks on the tag’ is closed to new replies.