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: Mass Messaging plugin creation #10001

    Hi Dale,
    Thank you.

    The best solution for this case will be a custom one using a proper job/message queue like(beanstalkd/RabbitMQ).
    If you are running on a VPS or dedicated, This will be a way better setup than the general one.

    I am not sure of many of our members will get any benefit out of it. We do not intend to develop a plugin that uses wp cron as it won’t be efficient for the larger sites. If you are interested, will be glad to do it as a custom job.

    About your message via contact form, Yes, we had received the message around 1-2 months ago and I had sent you a reply(delayed reply) but never heard back.

    You already have my email, please get in touch.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25471
    Brajesh Singh on in reply to: Query for Member Types Pro user creation #10000

    Hi Dale,
    Can you please point me to the documentation for action when the user account gets created by the Garvity Form?

    If there is an action, I can help you with the code to add member type on the account creation via gravity form.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25471
    Brajesh Singh on in reply to: [Resolved] MediaPress Previous Next links #9996

    Hi Graham,
    You can do it easily in css

    
    
    a.mpp-next { float:right;}
    /**
    We do no need to do anythign with the mpp-previous as it is already at left
    I am posting the selector here in case you want to add some styling etc.
    */
    a.mpp-previous{
    }
    
    

    Please add it(You my do via Customizer Additional Css) and It will do the needful.

    Hope that helps.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25471
    Brajesh Singh on in reply to: BuddyPress Editable Activity – not working #9995

    Hi,
    Sorry about the delay. It is coming today for sure.

  • Keymaster
    (BuddyDev Team)
    Posts: 25471
    Brajesh Singh on in reply to: BuddyPress Ajax Registration #9994

    Hi Diana,
    Will you like to use the field name or description as the placeholder? Please let me know and I will put some code. It should work.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25471

    Hi,
    I am sorry, It is not yet polished enough to be in public domain(the plugin). Will release in next 3-4 days and link here.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25471
    Brajesh Singh on in reply to: Rename Wall Photo Gallery (2) #9992

    Hi,
    That last modification makes it work.

    Here is a better version though

    
    
    /**
     * Filter wall gallery title
     *
     * @param string $title name of the wall gallery.
     * @param array  $args {
     *  Context details.
     * @type string $component component name(e.g groups|members|sitewide)
     * @type int    $component_id numeric component id( e.g group id or user id based on the component)
     * @type string $type media type(e.g photo, video,audio, doc etc)
     *
     * }
     *
     * @return string new title
     */
    function mpp_custom_wall_gallery_name( $title, $args ) {
    
    	// in this example, we are going to change the title for the groups wall gallery like this
    	// <group name> wall gallery.
    	if ( 'groups' === $args['component'] ) {
    		$title = sprintf( '%s wall %s gallery', groups_get_group( $args['component_id'] )->name, strtolower( mpp_get_type_singular_name( $args['type'] ) ) );
    	}
    
    	return $title;
    }
    add_filter( 'mpp_wall_gallery_title', 'mpp_custom_wall_gallery_name', 10, 2 );
    
    

    I have tested it and it works fine.
    Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25471
    Brajesh Singh on in reply to: Mediapress issue #9986

    Hi Andy,
    The current dashboard add option is not properly designed for author or lower levels. We need to work on it a little bit. For now, Please let the users use front end gallery creation.

    We will make sure to put a new release next week and make the backend options proper for user with all kind of roles(based on the site policy)

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25471
    Brajesh Singh on in reply to: Rename Wall Photo Gallery (2) #9985

    Hi Francoise,
    I will test and report back. I see there is a typo in my above code

    
    $title = sprintf( '%s wall %s gallery', groups_get_group( $args['component_id']->name ), mpp_get_type_singular_name( $args['type'] ) );
    

    It should be

    
    $title = sprintf( '%s wall %s gallery', groups_get_group( $args['component_id'])->name , mpp_get_type_singular_name( $args['type'] ) );
    

    Most probably taht is causing the issue. I will still test and report back.

  • Keymaster
    (BuddyDev Team)
    Posts: 25471
    Brajesh Singh on in reply to: BuddyPress Ajax Registration #9984

    Hi Diana,
    Thank you for the kind words.

    To make the placeholder, Please copy the file ‘ajax-register-form.php’ from the ajax registration plugin to your theme.

    Once you have done it, you will see some php code

    You can add the placeholder attribute to the text fields. Please do note that it won’t be feasible for the dynamic profile fields(BuddyPress generates the actual html for that), but you can do it for the username, email, password etc as they are static fields.

    Hope that helps.

    Regards
    Brajesh