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: 25333
    Brajesh Singh on in reply to: [Resolved] Custom Gallery From BuddyPress Fields #2805

    Hi Paul,
    Thank you for the deails.

    Here is an example how we add the media

    
    $media_data = array(
    				'title'				=> $title,
    				'description'		=> $content,
    				'gallery_id'		=> $gallery_id,
    				'user_id'			=> get_current_user_id(),
    				'is_remote'			=> false,
    				'type'				=> $media_type,
    				'mime_type'			=> $type,
    				'src'				=> $file,
    				'url'				=> $url,
    				'status'			=> $status,
    				'comment_status'	=> 'open',
    				'storage_method'	=> mpp_get_storage_method(),
    				'component_id'		=> $component_id,
    				'component'			=> $component,
    				//'context'			=> $context,
    				'is_orphan'			=> 0,
    			);
    
    			$id = mpp_add_media( $media_data );
    
    

    where
    – type can be ‘photo’, ‘audio’, ‘video’ etc
    – component can be ‘members’, ‘groups’ etc
    -context csn be ignored

    -component_id – is user id or group id
    -src is the absolute path of the file on the file system
    -url – is absolute url of the file
    -mime_type is the mime type
    -status – can be ‘public’, ‘private’ etc

    Please do not call the mpp_add_media on mpp_loaded. Post types are only registered after mpp_init
    So, It will be better to call at ‘mpp_actions’ or anything after mpp_init’ or WordPress init hook.

    Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25333

    Hi Jay,
    I am sorry for the inconvenience.

    1. Which version of MediaPress are you using? Is it 1.0.3?

    2. Is MediaPress network active or only enabled on the main site?

    Please let me know these details and I will have some idea.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25333

    Hi Devin,
    No That is not the case. BuddyBlog completely supports custom post type and their permalink and that is what is happening on your site.

    There is a difference between default WordPress permalinks and the permalinks for custom post type. For custom post type, you specify it using the rewrite slug at the time of registration.

    I guess you are assuming that the custom post type should use similar schema as the default posts but that is not the case. Whether you use BuddyBlog or not, that will have no effect on it.

    Can you please tell me the structure you want to use for your custom post type permalink, May be I can find some option for rewrite slug.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25333

    Thank you for the screenshots.

    That makes it clear. I was thinking the issue is with the Header actions but I see you meant the problem with the tabs.

    I am looking at at and It is most probably a bug. A solution will be coming a little late today.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25333
    Brajesh Singh on in reply to: [Resolved] member type on registration #2797

    Hi Blade,
    Thank you for the kind words.

    Can you please check this with twenty sixteen theme? I just checked and the Member types were listed on View profile /edit profile page.

    If you can help me find out the issue, I may be able to help.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25333
    Brajesh Singh on in reply to: [Resolved] Custom Gallery From BuddyPress Fields #2796

    Hi Paul,
    Welcome to BuddyDev.

    I am sorry but I don’t understand the question completely.

    MPP_Media_Query is used to list the media.

    To add a media you will use mpp_add_media() and to add a gallery you will use mpp_create_gallery()

    If you can explain a little more what you are trying to accomplish, I am be able to help better.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25333
    Brajesh Singh on in reply to: MediaPress #2795

    Hi Michael,
    I have added the filters support. Once you enable the filters, It will list 4 sub tabs(or depending on which types are active) under MediaPress to list “Photos”, “Videos” etc. Please visit your MediaPress settings to enable the type filters.

    About po/mo file, what is the name you are assigning them?

  • Keymaster
    (BuddyDev Team)
    Posts: 25333

    Hi Devin,
    Thank you for the login details. I checked and it is working as expected.

    I understand that you don’t want the “user_post” in the url. It is because you have named your custom post type to “user_post”. Please see this section on codex on how to change the rewrite slug

    https://codex.wordpress.org/Function_Reference/register_post_type#rewrite

    Once you change the slug, It will use that. Please do note that the permalinks for custom post types have their own structure and will not exactly follow what is there for posts.

  • Keymaster
    (BuddyDev Team)
    Posts: 25333

    Hi Jasmin,
    Thank you for posting. I am glad the second issue is fixed.

    The first one is the default behavior. This plugin only shows the recent visitors to the user if they are visiting their own profile. For Example, User A can not see the visitors of User B.

    Can you please post me a screenshot to show if t is not doing that?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25333
    Brajesh Singh on in reply to: [Resolved] member type on registration #2782

    Hi Blade,
    Thank you for the kind words 🙂

    Please upgrade to 1.0.2 from here

    https://buddydev.com/plugins/bp-xprofile-member-type-field/

    and put this code in your bp-custom.php

    
    add_filter( 'bd_xprofile_field_type_membertype_as_radio', '__return_true');
    
    

    That will make it work as radio.
    Hope that helps. Please do let me know if that works for you or not?

    Thank you
    Brajesh