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

    Thank you.

  • Keymaster
    (BuddyDev Team)
    Posts: 25472

    Hi George.
    Thank you for asking.

    We don’t have a favourite and featured media available as public release but I remember @ravisharma working on these two. He is supposed to be back by 10th Feb, I will ask and update here.

    For Rating, we do have one addon

    https://buddydev.com/plugins/mpp-media-rating/

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472
    Brajesh Singh on in reply to: Looking for suggestions #13297

    Hi George,
    Thank you for asking.

    At the moment, There are a few dependencies and It will be much better to abstract out those things in core to allow using the metabox with any other post type.

    We will need some time before we can do that. Sorry about this.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472

    No problem. Please take your time.

    Regards
    Brajesh

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

    Hi giulietta ,
    Thank you for testing.

    Please let the theme authors know about the issue and they will be able to help you.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472

    Hi trolinof ,
    Thank you.

    Yes, I have noticed the title issue while testing. We will push an update this week and let you know.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472

    Hi Tom,
    Thank you for purchasing the plugin.

    Yes, It works with BuddyPress Groups(for activities). I just tested with BuddyPress 2.9.3 and WordPress 4.9.4

    Here are two screenshots.

    https://i.imgur.com/SLgXRSk.png
    https://i.imgur.com/D0rJk7Y.png

    If you are looking for the forum post, It won’t. The plugin is for activity only.

    Can you please re confirm that it is not allowing posting group activity as anonymous?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472

    Hi trolinof,
    I have checked the plugin now.

    1. The redirect is working fien for me. I will suggest trying deactivating some of the plugins and check it.

    2. Title:- It has 2 parts
    a). Separator. What you say ‘|’ was the old separator specified by the theme. WordPress currently uses ‘-‘ as the default separator.
    You can change this by the following code

    
    
    /**
     * Change WordPress page title separator.
     *
     * @param string $sep separator.
     *
     * @return string
     */
    function buddydev_update_wp_page_title_separator( $sep ) {
    	return '|';
    }
    add_filter( 'document_title_separator', 'buddydev_update_wp_page_title_separator' );
    

    b) Order of title parts:- This will need some modifications as the current order is posts|Blog|Username| Page-xyz|Sitename

    This part needs improvement. We will push it in our next update.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472
    Brajesh Singh on in reply to: Member Type Email & Configuration #13276

    Hi Mohammad,
    I have looked at the file now. It was a 9000+ lines of code and I am not sure why will someone put everything in a single file.

    I could not find any code for inserting user. It will be much better if you can ask these two questions on the membership plugins forum and let me know their answer.

    1. Is there any hook(action/filter) that they fire when a user’s account is created?
    2. If yes, then what is the correct way to access registration form fields by name on that action?

    Thank you
    Brajesh