Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #540731

    I’m still struggling to define the right layout for the listing of my taxonomy items.
    I would like to get the same layout in place as is used for Categories. (See link at Private section)

    I have created a additional Taxonomy Type called “Topics”.
    But when review the list of Items here, I’m getting a layout that I don’t like.

    I would like to know how to maintain this layout or how to apply the layout of categories also to the new taxanomy “Topics”.

    #541745

    Hey stedia!

    both links seem to have pretty much the same layout for me. What do you want to change exactly?

    Regards,
    Andy

    #541756

    Wow – these pages are completely different.
    The layout of the first link (….persbericht) is ok
    But the layout of the second link – which is going to the taxonomy of my custom defined “Topics” is just showing the full content of my topics within the content area and having empty right sidebar. This sounds to be not as the same.

    How can I influence the layout of my list of items that are related to a taxonomy item?

    #542228

    What I’m asking is how I can influence the layout that is used when I view multiple items of a custom defined Taxonomy.

    For my blogs, I can define a page that is used, which can be set via the Theme General Options.

    Who can I influence the layout for other taxonomy listings?

    #544242

    Hey!

    Did you manage to resolve this? both links look the same on my end.

    Best regards,
    Josue

    #546405

    The layout are indeed the same now, as I found the following solution in some other support thread.

    I have added this to my function.php of my child theme.

    /*
    * Function to modify the layout for categories
    * 
    */
    
    add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); 
    function avia_change_category_blog_layout($layout, $context){
    if($context == 'archive') $layout = 'blog-grid';
    return $layout;
    }
    

    However, I would like to know if there another option is to maintain the structure of these archive pages different then via a function.php function.
    The page structure is different then my other pages as I don’t use the right sidebar on default.

    I know that you can set a page that contains the setup for blogs.
    What is the option to define the structure for these archive pages.

    #546932

    Hey!

    Sidebar settings for blog and archive can be set in Theme Options > Sidebar settings.

    Regards,
    Josue

    #547018

    I’m aware of that – But How can I arrange the various layouts for the archive items.

    Like presenting in a grid, lsit, etc.

    I can do this for Blogs but is not clear how to do this for Archives and Taxonomy listings.

    #547310

    Hey!

    Those layouts are either set via filters in functions.php or in Theme Options > Blog Layout, archives inherit the blog setting selected here.

    Best regards,
    Josue

Viewing 9 posts - 1 through 9 (of 9 total)
  • You must be logged in to reply to this topic.