Tagged: tag
Hi,
I’ve created a page with the item “Article Blog” and a “Widget Zone” for filter articles by tag. It’s works.
When i click on a filter, i open a page like http://domainname.com/tag/nameoftag
How i can edit this page ?
Can i apply a “grid model” like on the page with all articles ?
Thanks
I have same question for ‘category page’. It has an awful full text scroll layout right now and I’m struggling to make it more presentable.
I found this for customize tag post or Category post:
But why Enfold not include this page on backoffice like other page ?!
Another question :
It’s works but when i am on a tag page, i lose my widget for filter.
How i can add this widget on this page ?
Thanks
Hi OSLO,
I don’t see anything about tags or categories on that page? Could you please repost the link?
The link : “https://kriesi.at/documentation/enfold/blog-post/#change-archive-categorytag-blog-style”
Section : Change archive (category/tag) blog style
Hi,
Thank you for sharing this :)
Best regards,
Basilis
I have made that change suggested by OSLO2019, but where can I find options to select?
Hi,
@evtrans: There is no option for it in the dashboard but you can use this code in the functions.php file to manually adjust the layout of the tag and archives pages.
`add_filter(‘avf_blog_style’,’avia_change_tag_blog_layout’, 10, 2);
function avia_change_tag_blog_layout($layout, $context){
if($context == ‘archive’) $layout = ‘single-small’;
if($context == ‘tag’) $layout = ‘single-small’;
return $layout;
}
Available layouts are single-small, single-big, blog-grid and multi-big. Please feel free to open another thread if you have more questions about the theme.
Best regards,
Ismael