BuddyDev

Search

Replies

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Sort Galleries by Category, Gallery Filtering #6574

    Hi Fidd,

    I have just completed the addon for MediaPress. This will able user to create categories and assign MediaPress Gallery into those categories. Please check the GitHub link

    https://github.com/mediapress/mpp-gallery-categories

    Please download the latest Code of MediaPress from the GitHub Repository

    https://github.com/buddydev/mediapress

    Thank You
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: How to add categories to Mediapress? #6573

    Hi Piotr,

    I have just completed the addon for MediaPress. This will able user to create categories and assign MediaPress Gallery into those categories. Please check the GitHub link

    https://github.com/mediapress/mpp-gallery-categories

    Thank You
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: MPP-Media-Rating (Fatal PHP Error!) #6395

    Hello Gastro,

    Sorry for the inconvenience. It seems you are working with PHP version lower than 5.5. I have updated the plugin. Please download the latest version of plugin and give it a try. Please let me know if it is working or not.

    Thank you
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Disable Private Message Function of specific User Role #6388

    Hi Dandy,

    Please install our plugin “BuddyPress Private Message Rate Limiter” and Try the following code in your “bp-custom.php” file. I don’t understand blogger role. Please check appropriate capability reference here

    https://codex.wordpress.org/Roles_and_Capabilities

    
    
    function buddydev_disable_private_messaging_for_blogger( $allowed_count ) {
    
    	if( current_user_can( 'create_sites' ) ) {
    		//should we change it?
    		//if yes, change for super admin
    	} elseif( current_user_can( 'list_users' ) ) {
    		//site admin or above
    	} elseif( current_user_can( 'publish_pages' ) ) {
    		//editor or above
    	} elseif( current_user_can( 'edit_published_posts' ) ) {
    
    	} elseif ( current_user_can( 'edit_posts' ) ) {
    		//contributor or above
    	} elseif ( current_user_can( 'read' ) ) {
    		//subscriber or above
    		$allowed_count = 0;
    	}
    
    	return $allowed_count;
    }
    add_filter( 'bp_rate_limit_pm_remaining_count', 'buddydev_disable_private_messaging_for_blogger' );
    
    

    Thank You
    Ravi

    • This reply was modified 8 years, 6 months ago by Ravi.
    • This reply was modified 8 years, 6 months ago by Ravi.
  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: "[x]Clear notifications" moves up during live notification #6386

    Hello Christopher,

    Can you provide us a demo account on your site so that we may help.

    Thank you
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Required profile feild not working #6384

    Hello Valarie,

    Sorry for the inconvenience. Please let me know what procedure you are following to sign-up users.

    Thank You
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: "[x]Clear notifications" moves up during live notification #6382

    Hello Christopher,

    Thank You for posting here. This is not the expected behavior. Please let me know which theme you are using and On which browser you are getting this issue.

    Thank You
    Ravi

    • This reply was modified 8 years, 6 months ago by Ravi.
  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: How to change the buddypress REG form size #6013

    Hello Valarie,

    Thank you for posting here. Please place the following code into the bottom of your current theme CSS file.

    
    to change the popup window size
    
    .bpajax-register-window{
    	max-width: 800px;
    }
    
    to change Form title color
    
    .bpajax-register-title{
    	background-color: black;
    }
    

    Please let me know if it works for you or not.

    Thank you
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: HELP!! BP Magic Continue reading is not expanding the page #5986

    Hello Mars,

    Thank you for posting. Is it about activity read more or post read more?.

    Thank You
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: bp-magic is not responsive? #5985

    Hello Nana,

    Thank You for appreciation. I am sorry but BP Magic is not responsive at the moment. We’ll consider it for future.

    Thank You
    Ravi