Tagged: 

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1174624

    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

    #1174652

    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.

    #1174888

    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

    • This reply was modified 4 years, 6 months ago by OSLO2019.
    #1175053

    Hi OSLO,
    I don’t see anything about tags or categories on that page? Could you please repost the link?

    #1175057

    The link : “https://kriesi.at/documentation/enfold/blog-post/#change-archive-categorytag-blog-style”

    Section : Change archive (category/tag) blog style

    • This reply was modified 4 years, 6 months ago by OSLO2019.
    #1175198

    Hi,

    Thank you for sharing this :)

    Best regards,
    Basilis

    #1350202

    I have made that change suggested by OSLO2019, but where can I find options to select?

    #1350409

    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

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Customize Tag Page’ is closed to new replies.