BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 24741
    Brajesh Singh on in reply to: Gallery shortcode? #1384

    Hi,
    I am sorry for the trouble.
    Just had a look. It is a bug introduced by me that is causing problem on list-gallery shortcode pages. It is applying the class that should not be there. So, Yes, It is a css issue but purely my mistake.

    I just checked mpp-show-gallery for single gallery and that is working fine. Will check the other shortcode too and will have an update within an hour.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24741

    Hi George,
    I have finally started working on it. The goal is to make it at par with the BuddyBlog. So, we will have the permissions, editing capability( For members/moderators etc), listing of drafts and a few more things.

    Also, I am dropping the original templates and in future, there will be no need to move any file( It is still not required if using theme compat ). I will be taking a few days to make it fully functions( Have done initial bits today). It is going to be complete rewrite and I hope that will make it much usable than the earlier.

    I am still not sure if we should add support for custom taxonomy/post type like BuddyBlog or just keep it simple with categories/posts. If we decide(Based on your feedback), we will need to change the name too. Please do let me know your suggestions.

    I will update you in 2 days about the status and hopefully present you a final version by then.

  • Keymaster
    (BuddyDev Team)
    Posts: 24741

    Hi George,
    Thank you. I did stop further development of these plugins as almost same feature is coming as part of BuddyPress 2.4( and their uploading experience is much better ) .

    If you need a temporary fix for it, I can provide it or if you think we should move in other direction ( As per your other thread about the same). I will be happy with that too.

    Please let me know and I will be happy to help.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24741

    Hi George,
    Thank you.

    The new background in BP is nice. I have been working on one of our premium themes( coming by the end of next week) and have been exploring the options too. I was glad to see your post as I wanted to do something similar in the theme.

    The question that arises here is what features we need to make part of this plugin. The current implementation of BuddyPress core background does not give much control to the user but theme designers have full control over the appearance of the background.

    If we leave background and move to simple customizer( lite implementation of the WordPress customizer), what controls we want to give to the user?

    If we can make a list of feature here, I will be happy to have it by the next weekend when our theme comes.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24741
    Brajesh Singh on in reply to: Notify Admins #1378

    Hi Mary,
    Thank you for confirming.

    I will add in a day or 2 options in the wp login notifier plugin. We don’t have to use code to add emails as that plugin has options panel and I just need to extend that. Will keep you updated.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24741

    Hi George,
    Just confirming that you were right about the issue. I mistook BuddyBlog templates for bcg and thought it was there. I will be doing an update later today.

    There are 2 things that I am thinking of:- If we are going for an update, It will be nice to have almost same functionality aas BuddyBlog here too. Like listing of drafts, editing which is currently not there.

    I am not sure at the moment if I should just add the pagination or work to make it feature complete(It lacks a lot of feature at the moment). Whatever is the decision, will have an update late tonight( Indian time ).

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24741
    Brajesh Singh on in reply to: Notify Admins #1372

    Hi Mary,
    I am sorry. It took me a little longer to figure out. There was a mistake on my part. There were two typos in my code. I was passing ‘header’ and expecting ‘headers’ causing the empty email list.

    You can see the change here.
    https://github.com/buddydev/bbp-notify-admins/commit/6fe27671a327bec2a2ef1f2a55ee9b901659ce65

    I have updated the plugin to version 1.0.2 with the fix.

    Please upgrade and now the above code will work.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24741
    Brajesh Singh on in reply to: Notify Admins #1370

    Did you try posting by your admin account? If yes, please try creating a topic/replying with normal user account(Super admins and current user are excluded).

    Also, since the other users are sent as bcc, please do check spam folders too.

  • Keymaster
    (BuddyDev Team)
    Posts: 24741
    Brajesh Singh on in reply to: Notify Admins #1368

    Hi Mary,
    Welcome to BuddyDev forums.

    Thank you for asking the question. I have updated the plugin and version 1.0.1 is now available on WordPress.org plugin repo. It includes a filter that allows us to add any number of extra emails.

    Please upgrade to version 1.0.1 and then you can put following in your theme’s functions.php

    
    
    function bpp_notify_admin_extra_email_address( $emails, $context = null ) {
    	//$context will be 'topic'/'reply' if you need to do extra filtering
    	
    	$new_emails = array(
    		'a@example.com',
    		'b@example.com',
    		//keep adding
    	);
    	
    	return array_merge( $emails, $new_emails );
    }
    add_filter( 'bbp_notify_admin_email_addresses', 'bpp_notify_admin_extra_email_address', 10, 2 );
    
    

    Change the email address/add more as you need.
    Please note, there is no need to append admin email and it will be already included.

    Hope that helps. Please do let me know if it works for you or not?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24741
    Brajesh Singh on in reply to: Happy Birthday Brajesh #1366

    Thank you George and Thank you Hans 🙂