BuddyDev

Search

Replies

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: visitor counter #30821

    Hello Ankit,

    It seems, It’s a normal WordPress menu “Visitors”. Please let me know if you are adding this menu using WordPress admin menu section yes or no.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Adding sub-nav to existing tab #30820

    Hello Bill,

    Thank you for posting. For modifying the existing tab you need to refer the following URL

    https://buddydev.com/docs/buddypress-user-profile-tabs-creator-pro/modify-existing-profile-tab/

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Can't accept friend requests #30805

    Hello Faizal,

    It was a bug with our plugin. Please update the plugin and check it.

    https://buddydev.com/plugins/buddypress-friendship-restrictions/

    Regards.
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Can't accept friend requests #30743

    Hello Faizal,

    Thank you for posting are you using BuddyPress Platform?. Please look into the console using F12 in Chrome browser and look Is there any javascript error showing or not.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: BuddyPress Group Tabs Creator Pro #30713

    Hello James,

    Please ignore my last message. There are chances that any tab created is causing the issue. Please deactivate tabs one by one and check. If any of the tab causing this issue. Also, share the screenshot of all tabs in the admin.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: BuddyPress Group Tabs Creator Pro #30712

    Hello James,

    Sorry for the inconvenience. I have tried with only two plugins “BuddyPress” and “BuddyPress Group Tabs Creator Pro” and it is working fine for me. Please temporarily deactivate other plugins and switch to the default theme. There might be chances that any plugin or your theme conflicting with this plugin.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Adeala,

    Thank you for posting. There is not a direct setting to prevent the recording of activity based on type. Yet, You can achieve this using code. Try the following code in your “bp-custom.php” file.

    
    /**
     * Modify activity args
     *
     * @param array $r Activity args.
     *
     * @return bool
     */
    function buddydev_modify_record_activity_args( $r ) {
    
    	if ( $r['type'] && in_array( $r['type'], array( 'bbp_reply_create', 'bbp_reply_edit' ) ) ) {
    		$r = false;
    	}
    
    	return $r;
    }
    add_filter( 'bbp_after_record_activity_parse_args', 'buddydev_modify_record_activity_args' );
    

    Let me know if it works or not.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: MediaPress myCRED Addon #30703

    Hello Linda,

    I have checked and it seems myCred have played on UI. Now you can configure MediaPress under admin section goto Points > Hooks > Available Hooks

    Look for MediaPres move it to “Active Hook” then you can configure MediaPress setting there.

    Regards
    Ravi

    • This reply was modified 5 years, 1 month ago by Ravi.
  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] BuddyBlog issues #30658

    Hello Abdul,

    Thank you for posting. Please first complete the BuddyBlog settings to get it to work properly. You can find settings under admin section settings tab. Please check and let me know.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello,

    Thank you for posting. Sorry but couldn’t get you clearly. Are you looking for a way to hide some sitewide activity from showing in member’s activity stream? Please help me to understand your requirement.

    Regards
    Ravi