-
AuthorPosts
-
November 23, 2015 at 1:02 pm #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”.
November 24, 2015 at 4:23 pm #541745Hey stedia!
both links seem to have pretty much the same layout for me. What do you want to change exactly?
Regards,
AndyNovember 24, 2015 at 4:34 pm #541756Wow – 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?
November 25, 2015 at 10:05 am #542228What 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?
November 30, 2015 at 1:04 am #544242Hey!
Did you manage to resolve this? both links look the same on my end.
Best regards,
JosueDecember 3, 2015 at 2:14 pm #546405The 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.December 4, 2015 at 12:48 pm #546932Hey!
Sidebar settings for blog and archive can be set in Theme Options > Sidebar settings.
Regards,
JosueDecember 4, 2015 at 2:45 pm #547018I’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.
December 5, 2015 at 12:28 am #547310Hey!
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 -
AuthorPosts
- You must be logged in to reply to this topic.