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: 25273
    Brajesh Singh on in reply to: [Resolved] Very Basic JavaScipt Problem #5439

    Hi Lee,
    You are over writing the functions. Trying using initB in the name for one and then you can call gdbbPressTools.initB();

    PS: Two member functions can not have same name.They will override the previous one.

    Hope that helps.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: Media added on group all no longer showing #5438

    Hi Rhys,
    I am sorry for the inconvenience.
    Is there any new plugin/code you have added since that last week? It could be a conflict.

    can you please point me to the group page?

    Also,are you able to upload from group wall? Does it goto gallery but not to the activity stream?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25273

    Hi Hans,

    The problem is spaces are allowed in username in Standard WordPress. They are no allowed on multisite. so, most probably you are using this plugin on non Multisite and since the username is valid, It does not warn them.

    PS: If the username was invalid, There whould have been no registration.

    Can you please check again.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25273

    Hi Ada,
    We do not using anything specific. All we do is use wp_editor function to generate the editor with support for media upload.
    https://codex.wordpress.org/Function_Reference/wp_editor

    Most probably the premium plugin is checking for whether they are inside admin etc before adding the plugin.

    I am sorry, but I don’t have much to offer in this regard.

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: I'm not a programmer!!! #5435

    Hi Jobee,
    Do you understand the basic protocol for asking refund or support? Did you ask for refund via contact? if not, then why so much frustration?

    Code is not for you but advance developers who want more control. There is only one configuration as checkbox to allow preloading of form or not. There is no other configuration , so you don’t see a setting. What were you expecting to see 1000 settings like a TF theme/plugin?

    About refund, We provide 100% refund and you should have asked for refund period. Check your account and see if it is issued or not?

    Next time, Have some patience and provide developers opportunity to help.

    And yes, It is not magic, It could be because of a crappy theme or another plugin that you might be using. We maintain quality code and do not provide crap like 90% of the companies in WordPress eco system. Stop blaming us without asking for support and giving enough information.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: A Desperately Needed Plug-in #5388

    Hi Lee,
    To start troubleshooting I will suggest first checking the bp_notifications table and see if notifications from ‘bdbp_unotifier’ is being added or not?

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: A Desperately Needed Plug-in #5386

    Hi Lee,
    The code should work fine on php 5.3

    Have you tried posting an activity after activating the plugin and then logging in as the friend of the user?

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: A Desperately Needed Plug-in #5384

    Hi Lee,
    Can you please download this(It is specifically for 1.8)
    https://github.com/buddydev/bp-user-activity-notifier/archive/bp1.8.zip

    Others looking at this thread, Please use
    https://github.com/buddydev/bp-user-activity-notifier/ instead.

    Since WordPress 3.7 will not work on my system(I am using php 7+), I had to make some guess work for the back compatibility and was not able to test. Please give it a try and let me know.

    Thank you

  • Keymaster
    (BuddyDev Team)
    Posts: 25273

    Hi Elio,

    Thank you for asking.

    1. You can create members/index-directory-type-MEMBERTYPE.php for each and put the code there or the easy way is to edit yourtheme/buddypress/members/index.php and use bp_get_current_member_type() to check for your member type and output the correct form.

    Hope that helps.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: A Desperately Needed Plug-in #5382

    Hi Arvind,
    Please put this in your bp-custom.php

    
    function buddydev_add_more_notifiable_user_ids( $user_ids ) {
    
    	if ( function_exists( 'bp_follow_get_following' ) ) {
    		$user_ids = array_merge( $user_ids, bp_follow_get_following( array( 'user_id' => bp_loggedin_user_id() ) ) );
    	}
    
    	return array_unique( $user_ids );
    }
    
    add_filter( 'buddydev_user_notifier_notifibale_user_ids','buddydev_add_more_notifiable_user_ids' );
    
    

    That will notify users on any new activity of the people they are following.


    @ljmac
    ,
    No problem. I am on it.