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
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25472
    Brajesh Singh on in reply to: [Resolved] Site Wide Activity Plugin #14340

    I hope they are able to help. I am not sure what changes they have made but the problem lies that the actual content of activity message box is not sent to the server. Tell them to look into it and they will be able to fix it.

    Best Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472
    Brajesh Singh on in reply to: [Resolved] Site Wide Activity Plugin #14338
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25472
    Brajesh Singh on in reply to: MultiSite #14337

    Hi Madhavi,

    The first thing I will suggest is check if your hosting supports wildcard DNS Queries. Not all godaddy hosting support it.

    https://in.godaddy.com/help/set-up-wildcard-dns-3301

    From this article, you should be able to check what kind of account you have and whether it support the wildcard.

    Most probably, the hosting does not support it and you might need to upgrade from them.

    Please check and let me know what you find there.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472
    Brajesh Singh on in reply to: [Resolved] transfer and store demo files #14334

    Hi Monica,
    Thank you for posting.

    1. I am not sure of the first question, if you can help me understand it better, I will be able to assist. Do you need help in moving the content from your development server to live server?

    2. Please take a look at this

    https://buddydev.com/plugins/buddyblog/

    You may be able to use it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472
    Brajesh Singh on in reply to: [Resolved] BuddyPress Activity Spam #14332

    Hi Julia,
    Please use this to disable all

    
    add_filter( 'bp_activity_do_mentions', '__return_false' );
    
    

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472

    Hi Julia,
    1. Not sure if we will be able to provide support for location field. If it is using javascript etc, It might need fix on the other plugins end. We will update you of our findings early next week.

    3. Sorry but the code is tested. You most probably have something else interfering with it.

    As for the design decision, It was made tp ease the process of signup and that’s why. We did added the code to disable it later.

    When our future version comes, you will be able to control this settings from the settings page.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472
    Brajesh Singh on in reply to: Ajax registration – form has gone whacky #14330

    Thank you Diana.

    I am sorry for the delayed reply.

    Please put this in your child theme

    
    /**
     * Load on login page.
     */
    function buddydev_login_load_ajaxr_styles() {
    	wp_enqueue_style( 'bp-custom-ajaxr', get_stylesheet_directory_uri() . '/bp-ajax-register.css' );
    }
    
    add_action( 'login_enqueue_scripts', 'buddydev_login_load_ajaxr_styles' );
    
    

    That will load the styles from your child theme on the wp-login.php page too and should fix the form.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472
    Brajesh Singh on in reply to: Delete account. #14329

    Hi Martin,
    Thank you for clarifying.

    So, the problem lies with the bbPress generated content. Please allow me to test it today and get back to you later today/early tomorrow.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472

    Hi Herve,

    1. Please see https://buddydev.com/buddypress/disallowing-activity-recording-for-components-or-some-activity-types-in-buddypress/

    2. You will need to replace the table and the year for each of the following instructions.

    a). List all activities for a user

    
    SELECT * FROM 'wp_bp_activity' WHERE YEAR(date_recorded) = 2016
    

    b). Delete for a year

    
    
    DELETE FROM <code>wp_bp_activity</code> WHERE YEAR(date_recorded) = 2016
    
    

    c). List orphan activity meta

    
    SELECT * FROM <code>wp_bp_activity_meta</code> WHERE activity_id NOT IN( SELECT id from wp_bp_activity )
    
    

    d). Cleanup the orphan meta

    
    DELETE FROM <code>wp_bp_activity_meta</code> WHERE activity_id NOT IN( SELECT id from wp_bp_activity )
    
    

    All the above actions are destructive and it is strongly suggested to take database backup before them. Also, Manually deleting activity will cause other complications.

    3. The less interesting needs to be quantified. How do you define something less interesting?

    Regards
    Brajesh