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: 25468
    Brajesh Singh on in reply to: Ajax Registration force one column #9037

    Hi Nathanial,
    Thank you for posting.

    It is the default behaviour. Most probably some css is conflicting with theme.

    Can you please link me to the site(where it is enabled) and I can provide a quick solution.

  • Keymaster
    (BuddyDev Team)
    Posts: 25468

    Hi Ryan,
    As far as I see, you have the lightbox disabled

    
    enable_activity_lightbox:	0
    enable_gallery_lightbox:	0
    
    

    Can you please enable it from the settings and let me know if that works.

    Regards
    Brajesh

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

    Hi Justin,
    As you may see, the article loop is being used from ghostpool’s theme.

    Either I will need access to that file to see how they are fetching the thumbnail or the better option is to contact them and ask them for support.

    If it was a normal loop, It should have worked with the thumbnail feature too(and length of text too).

    Please contact them and let me know if they are able to help or not?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25468

    Hi Alex,
    Please delete the Sitewide activity widget using ftp(or plugin admin if accessible)

    Then reinstall it. It seems you have one version already installed and got another one too.

    Please try and let me know.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25468

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

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

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