Shape the future of Social networking with WordPress: Join Project Midnight Sun! The next generation platform for community building with WordPress!

BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25287

    Please allow us to test it today and get back to you.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25287

    Hi Alex,
    Thank you.

    MediaPress media are normal WordPress attachments.

    When the new WordPress Gutenberg editor comes, Users will be able to select images from the media library.

    That means, we don’t need to do anything to achieve it, It will be a nice feature available to users without any extra effort.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25287
  • Keymaster
    (BuddyDev Team)
    Posts: 25287
    Brajesh Singh on in reply to: Ajax reply #13663

    Hi Alex,
    Thank you for posting.

    Allow me to look at it next week and get back to you.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25287

    Please make sure that you copy the code from the topic here and not from the mail.

    The code sent on email notification is entity encoded and will cause issue.

    Please check if copying from here works or not?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25287

    Hi Allan,

    May I Request you to please open a new topic with the following details:-
    1. BuddyPress Version
    2. WordPress Version
    3. Conditional Profile field plugin version.
    4. Using any custom xprofile field ? if yes, please link to the plugin.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25287
    Brajesh Singh on in reply to: [Resolved] Nested Menus Missing #13656

    Hi Ethan,
    Thank you for the update.

    Sure, I will be glad to assist when needed.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25287
    Brajesh Singh on in reply to: [Resolved] Nested Menus Missing #13654

    Hi Ethan,
    It seems there are some confusion on the way menus work. My apologies if we were unable to clarify it in the documents.

    The main menu is not used on mobile screens.

    The mobile screen menu is your left panel menu. Try to add nested elements on the WordPress menu assigned to the left panel location.

    About the screenshot, It is not possible to upload here, please use an upload service like imgur to upload and link here.

    Also, Here is the primary menu generation code

    
    /**
     * Primary Menu block
     * 
     * Generate Primary Menu
     */
    function cb_primary_menu() {
    	// if a nav menu is not assigned to the primary menu, do not show anything.
    	if ( ! has_nav_menu( 'primary' ) ) {
    		return;
    	}
    
    	$menu_class = 'main-nav-' . cb_get_option( 'main-nav-alignment', 'left' );
    	wp_nav_menu( array(
    		'container'      => false,
    		'menu_id'        => 'nav',
    		'menu_class'     => 'main-menu ' . $menu_class,
    		'items_wrap'     => '<div  id="%1$s" class="%2$s"> <ul>%3$s</ul></div>',
    		'theme_location' => 'primary',
    		'fallback_cb'    => 'cb_main_nav',
    	) );
    }
    
    

    We attach the function ‘cb_primary_menu’ to various actions for showing menu in top or secondary header.
    I don’t see anything special. It is normal WordPress Menu generation code.

    Are you using any custom code or plugin for menu handling.

    PS: – You may use the “Set as private reply” in the forum to link me to your site where the problem is and I can quickly assist you.

    It is possible to have some css conflict causing it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25287
    Brajesh Singh on in reply to: [Resolved] Nested Menus Missing #13651

    Hi Ethan,
    Thank you for posting.

    1. No, community builder does not have any specific implementation for the main menu.,

    For the left and Right panel, we are using custom Walker(CB_TreeView_Navwalker) for showing the tree menu.

    If you are trying to do something with the left/right panel menu, the walker may override.

    You can overcome that by copying/creating the panel the child theme.

    I am still not sure what is happening but the theme does not contain any code for restricting nav items.

    Can you please provide more context(which of the menu) and how is it happening. Any link to screenshot will be also very helpful.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25287

    Thank you too for the patience.

    @ravishrma,
    Thank you for updating.

    Best Regards
    Brajesh