Kovas
Forum Replies Created
-
Forum: Plugins
In reply to: [Beautiful taxonomy filters] Dropdown order conflictHi Jonathan,
SCPOrder allows to sort not only Post Types, but Taxonomies also. So in archive page I have posts sorted by custom order (first by taxonomy, then by post, both custom), but it also affects order in BTF’s dropdown and I want to keep it alphabetical.
Forum: Plugins
In reply to: [Beautiful taxonomy filters] Is it possible to customize HTML output?Thanks, i’ll check it out.
Thing is, I’m buildng a website with responsive grid system, so it would be nice to have control over layout. Not just for me, but everyone who works with grids/frameworks 🙂
Forum: Fixing WordPress
In reply to: wp_nav_menu: List only 2nd level (separate submenu)?Well, it works fine when you have pages, but there’s a problem with posts.
When i’m in a post of a category, WordPress decides, that I don’t need.current-menu-ancestorclasses anymore, so only thing I can get is a link back to current category (I want to display whole upper level, not just current parent).Forum: Fixing WordPress
In reply to: wp_nav_menu: List only 2nd level (separate submenu)?Well, I did it with CSS.
First, you need to output whole
wp_nav_menu.
Then hide all menu links with:#menu-name a { display: none; }Then display only children of current menu:
#menu-name .current-menu-item li a, #menu-name .current-menu-ancestor li a { display: block; }And finaly – do styling on
#menu-name .sub-menufor container and#menu-name li afor menu links – this way, in case when there’re no children, you won’t have an empty block.Forum: Fixing WordPress
In reply to: Double category orderSo, does anyone know? This can’t be very hard. But i’m just missing something I guess.