Home › Forums › Calendar Products › Events Calendar PRO › event cal pro dropping menus
- This topic has 12 replies, 4 voices, and was last updated 13 years, 9 months ago by
Rob.
-
AuthorPosts
-
June 21, 2012 at 4:43 pm #21008
Matthew
ParticipantOn this site: http://coachkevintucker.com/ i have a number of menus in place. in the header and footer templates.
But on the event grid, list and single views, they all drop, and its loading all pages in the header nav, and nothing in the footers. http://coachkevintucker.com/?post_type=tribe_events
I have changed the menus around, and even the template event cal is using, no luck.
WP 3.4, Event cal pro 2.0.7
June 21, 2012 at 5:21 pm #21019Matthew
ParticipantJust a follow up test. I dropped my custom theme to try on a default 2012 theme. Same thing. the menu just completely drops to list all pages when you hit events.
June 22, 2012 at 12:35 pm #21075Rob
MemberHey Matthew. Thanks for the note here; I have seen a couple reports of issues related to this since we launched 2.0.7 so it’s definitely possible that something is up – though I am unable to recreate it on my default 2011 theme (which is the latest default theme WP offers me in 3.4).
What happens if you enable a pretty permalinks structure, like /%postname%/ ? My guess is that will resolve this issue (we’re aware that default permalinks cause some problems and will have that fixed for 2.1), but if not I can bring a dev in to take a look directly. Thanks for your patience so far.
June 23, 2012 at 11:38 am #21109Marko
ParticipantHello,
Same problem on my site. Main menu disappears on the event grid and list views when default permalink structure is used. When I use pretty permalinks the menu is there, but then I have a different problem unrelated to the Events Calendar Pro plugin. A quick fix for this before the next update would be much appreciated.
Thanks!June 25, 2012 at 11:16 am #21151Jonah
ParticipantCan you guys please share exactly how you are creating the menu/theme locations and the code you are using in your templates to call the menus?
Thanks,
JonahJune 26, 2012 at 12:34 am #21168Marko
ParticipantHey Jonah,
I used Bones starter theme (http://themble.com/bones/) to create the one I’m using.
function bones_theme_support() {
add_theme_support( 'menus' ); // wp menus
register_nav_menus( // wp3+ menus
array(
'main_nav' => 'The Main Menu', // main nav in header
'footer_links' => 'Footer Links' // secondary nav in footer
)
);
}
function bones_main_nav() {
// display the wp3 menu if available
wp_nav_menu(
array(
'menu' => 'main_nav', /* menu name */
'theme_location' => 'main_nav', /* where in the theme it's assigned */
'container_class' => 'menu clearfix', /* container class */
'fallback_cb' => 'bones_main_nav_fallback' /* menu fallback */
)
);
}
// this is the fallback for header menu
function bones_main_nav_fallback() {
wp_page_menu( 'show_home=Home&menu_class=menu' );
}
// in header.php
I hope that this is what you asked for.
Thanks.June 26, 2012 at 12:25 pm #21198Matthew
ParticipantLooks like permalinks took care of the issue. We planned on using them, just didnt do that yet since we were in production still.
Our menu call in: ‘Main’ )); ?>
June 26, 2012 at 12:25 pm #21199Matthew
Participantsorry, try this again:
php wp_nav_menu( array(‘menu’ => ‘Main’ ));June 26, 2012 at 12:45 pm #21202Jonah
ParticipantHey Matthew, so changing the permalinks worked for you? What did you change them to?
– Jonah
July 10, 2012 at 4:45 am #21860Marko
ParticipantHey Jonah,
Any thoughts on why the menu is not showing when default permalink structure is used?Thanks!
July 10, 2012 at 1:47 pm #21892Jonah
ParticipantHi Marko,
We’ve identified this as a bug and will be fixing it ASAP in a future release. Thanks for being patient!
Cheers,
JonahJuly 10, 2012 at 2:10 pm #21900Marko
ParticipantGreat, thanks!
July 12, 2012 at 11:08 am #22012Rob
MemberWe appreciate your patience, Marko.
Matthew: let us know if you’re all set here based on the above, or if you’ve still got questions. Thanks man!
-
AuthorPosts
- The topic ‘event cal pro dropping menus’ is closed to new replies.
