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: 25471
    Brajesh Singh on in reply to: [Resolved] Profile Tab creator Pro issue #12656

    It is at the bottom of the same screen. Please see this
    https://buddydev.com/docs/guides/plugins/buddypress-plugins/buddypress-user-profile-tabs-creator-pro/adding-buddypress-user-profile-tab-sub-navs/

    I will post a few video tutorials today/tomorrow to make it easier. For now, Please see the above tutorial.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25471
    Brajesh Singh on in reply to: [Resolved] Profile Tab creator Pro issue #12654

    Hi Rajkumar,
    Thank you for purchasing.

    Have you created a sub tab? Until BuddyPress 3.0 comes out, you will need to create a sub tab(It is used as the default landing page for that tab).

    Also, if you have created a sub tab, please make sure you are either not specifying the default sub tab slug or specifying the correct one.

    Please give it a try and let me know if it works for you or not?

    Please also take a look at this
    https://buddydev.com/docs/guides/plugins/buddypress-plugins/buddypress-user-profile-tabs-creator-pro/buddypress-user-profile-tab-options/

    The last section.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25471
    Brajesh Singh on in reply to: APi for upload the medias in mediapress #12653

    Hi Rossini,
    Thank you for posting.
    Are you looking for a REST kind of API?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25471
    Brajesh Singh on in reply to: [Resolved] BP Featured Members Avatar Size #12650

    What is the current value. It should be in the range BuddyPress allows(controlled by thumb,full which is normally upto 450 px).

    Can you please post me what value are you using? Also, Is there any chance that you are overriding the featured members list template?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25471
    Brajesh Singh on in reply to: Title of images breaks grid view #12648

    Hi Monsur,
    I am sorry about that.

    I will test on the site and update(In the second half of the day today).

    I will post back after that.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25471

    Hi George,
    Happy New year 🙂

    Welcome to the world of Programming. I am sure It will be an awesome experience and very helpful for your suture projects.

    Also, Congratulations on creating your first plugin 🙂

    About the Gallery creation, You will need to decide the following:-

    component:-
    members – the gallery appears on user profile on WordPress
    groups- The gallery will appear on a group depending on component_id
    sitewide – It is site gallery. Suitable for non BuddyPress sites.

    component_id:-
    – It depends on the component. It should be the user id for the ‘members’ or ‘sitewide’ and group id for the ‘groups’ gallery

    type :- possible values ‘photo’, ‘video’, ‘doc’, ‘audio’ determines which type of gallery you want to create

    status:- any of the available/applicable statuses. Could be ‘public’, ‘loggedin’ etc.

    and then there are attributes for the title/slug etc.

    If you can determine the above, you can use mpp_create_gallery() to automatically create a gallery. We do it for activity uploads.

    You can see an example here.
    https://github.com/buddydev/mediapress/blob/master/modules/buddypress/activity/mpp-activity-hooks.php#L166

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25471
    Brajesh Singh on in reply to: [Resolved] BP Featured Members Avatar Size #12646

    Hi Nick,
    If you are using widget, please check the widget options. It should give you an option for avatr size. You can put any number.

    If you are using the shortcode, you can add

    
    avatar_size=50
    

    Or any other value instead of 50 in the shortcode.

    Hope that helps.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25471
    Brajesh Singh on in reply to: registration form not working #12645

    Hi Ronna,
    Thank you for purchasing the plugin.
    I checked it on your site.

    You are using some custom code to disable registration button on non registration page.

    For example

    http://group.ag2link.com/register/

    On this page if you open the ajax modal using top register link, the submit button works but if you are any other page, It is disabled.

    Please check your custom javascript and see if you have the event handler attached with registration submit button.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25471

    Thank you.
    I am glad it worked 🙂

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25471

    Hi Richard,
    Thank you.

    Now, I see the issue.

    In MediaPress, it assumes that all the gallery slugs are unique(that’s why you see wall-photo-gallery-1, wall-photo-gallery-2 in normal cases).

    This is how WordPress post types normally work. All items in the post type should have unique slug.

    It seems your migration has caused duplicate slugs and that’s why the error is happening. I will suggest writing a php script to update the slugs.

    PS: We don’t use guids at all.

    Regards
    Brajesh