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: 25485
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Eamon,
    Thank you for the patience.

    Please upgrade to 1.3.0. It should fix the button markup.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Carsten,
    Thank you for confirming.
    Yes, sometimes the simplest changes does the magic 🙂

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Kevin,
    Thank you.

    I am sorry but I am unable to re-create it. Is it happening for some specific user or content type(e.g activity/ etc).

    Can you please provide me steps to re-create or test it and I will quickly assist.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi JC,
    1. You can remove the div as you please.
    Since tags/categories are taxonomies, we put 1 renderer for all taxonomies and separated them as a block. That is the normal use case.

    Please feel free to change

    
    			<?php if ( $this->has_tax() ) : ?>
                    <div class='simple-post-taxonomies-box clearfix'>
    					<?php $this->render_taxonomies(); ?>
                        <div class="clear"></div>
                    </div>
    			<?php endif; ?>
    
    

    to

    
    
    			<?php if ( $this->has_tax() ) : ?>
    					<?php $this->render_taxonomies(); ?>
    			<?php endif; ?>
    

    and move it near the comments.

    2. No, In the current condition, unless you modify the form, css will not help move it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: [Resolved] Members without profile picture #28201

    Hi Laurent,
    That’s good to know.

    Best Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: User view count partially not working #28199

    Thank you for the understanding. I am glad that is is working.

    We do assist with code but anything that needs more than 15 minutes of coding is beyond our forum support.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi James,
    Thank you.

    1. The function is defined in the same file. Please check line 561.
    Also, you are right about the toggle button. This needs to be updated. There is a solution though.

    You can set the panel visibility to ‘none’ like this

    
    
    add_filter( 'cb_panel_visibility', function ( $visibility, $user_scope, $panel ) {
    
    	if ( 'right' === $panel ) {
    		$visibility = 'none';
    	}
    
    	return $visibility;
    }, 10, 3 );
    

    and it will take care of it for the toggle as well as the panel.

    2. You are welcome. Yes, more document are coming in near future.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: [Resolved] Buddypress Giphy #28197

    Hi Linda,
    Thank you for the question.

    Are you using it with Community Builder Theme? BuddyPress Giphy/ BuddyPress Emoji are specific to our themes(current and upcoming).

    Please let me know and I will assist.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    This reply has been marked as private.