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: 25275

    Hi Lavish,

    Thank you for using the BuddyPress Members Type plugin.

    For member type directory title, since BuddyPress currently does not support it, you can put the following in your bp-custom.php to make it work

    
    
    /**
     * Modify members directory title for the member types
     *
     * @param array $title title parts
     *
     * @return array
     */
    function bpdev_modify_page_member_directory_title( $title ) {
    
    	if ( ! bp_is_members_directory() ) {
    		return $title;
    	}
    
    	$member_type = bp_get_current_member_type();
    
    	if ( ! $member_type ) {
    		return $title;
    	}
    
    	$type_object = bp_get_member_type_object( $member_type );
    
    	$sep = apply_filters( 'document_title_separator', '-' );
    
    	$title['title'] = $title['title'] . ' ' . $sep . ' ' . $type_object->labels['singular_name'];
    
    	return $title;
    }
    
    add_filter( 'document_title_parts', 'bpdev_modify_page_member_directory_title', 1000 );
    
    

    Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25275
    Brajesh Singh on in reply to: Buddyblog pagination issues #9020

    Hi Nitin,
    Welcome to BuddyDev.
    I had a look at your site.

    The problem is with the pagination links. It is incorrect.

    It should be like this
    http://new.ichars.com/members/ichars-admin/buddyblog/my-posts/page/2/

    Any chance you have a modified pagination/template for BuddyBlog.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25275

    Hi Nash,
    I am sorry I could not offer the help in time. I am glad you figured it.

    The problem with lighbox is it needs the media to be displayable/playable.Though It is possible to embed the video player or the doc viewer, we haven’t added the support for it.

    We are using Magnific Popup
    http://dimsemenov.com/plugins/magnific-popup/

    If you see an easy way to do it, please let me know and I will support.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25275
    Brajesh Singh on in reply to: BuddyBlog Post Formatting #9011

    Hi Justin,
    Please copy the contents of this file

    https://pastebin.com/nnbiwA58

    And put it in yourtheme/buddyblog/posts.php

    Does it work? It will need more changes for adding the editing link. Also, I have left the GhostPool’s pagination. I am not sure if that will work. Please do check that.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25275

    Hi Gibby,
    Thank you for posting.

    Are you using BuddyBlog to allow users create content in a new post type. If you are using it for blogging, you don’t have to worry about that setting.(You will see the check boxes like Category, tags, Post Format etc).

    About Uncategorized, WordPress will always assign a category. The Uncategorized is the default category. That’s why you are seeing it.

  • Keymaster
    (BuddyDev Team)
    Posts: 25275
    Brajesh Singh on in reply to: Comments Default on Buddyblog #9003

    Hi Devin,
    I have finally tested it.

    I am sorry but the comments are working properly.
    Since this is an old topic, I am closing it. Please open a new topic and provide me your site details. I will like to test it(you can give me guest access there).

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25275
    Brajesh Singh on in reply to: BuddyBlog Post Formatting #9002

    Hi Justin,
    I had a look at the pages again.

    In your theme you have a blog-template.php

    Please post its content on paste bin and link me. I can extract some section from it and post the new posts.php for you.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25275
    Brajesh Singh on in reply to: [Resolved] Activity stream upload issue #9000

    Thank you for marking it as resolved.

    I have replied to your last question on the other thread

    https://buddydev.com/support/forums/topic/removing-drop-box-from-activity-stream/

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25275

    Hi Randlel,
    Please use the following css

    
    #mpp-upload-dropzone-activity {
    
    display:none !important;
    }
    
    

    Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25275
    Brajesh Singh on in reply to: BuddyPress Stealth Mode for Site Admin #8998

    Hi Lulu,
    Did you delete the old one? Also, is there any caching plugin active? if yes, Please clear it.

    And if that does not work too, Can you please link me to the screenshot of the screen?

    Thank you
    Brajesh