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: 25488

    Hi Alayna,
    Thank you for asking. BuddyPress needs the subject for the thread.
    It can be accomplished by doing the following steps:-

    1. Hide subject box on the send message page and auto generate subject before saving
    2. Hide the subject on the single thread page using css(or modifying the message loop).

    Please do let me know if you need specific code.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25488
    Brajesh Singh on in reply to: Edit Blog Post layout #3603

    Hi Brendan,
    Welcome to BuddyDev.

    You can copy the “bp-simple-frontend-blog-post/form.php” to your theme/feposting/form.php”.

    At the moment, there is an issue(I have made a wrong include), so It won’t work. Please allow me to fix in 2 hours and push an update. I will message again after that.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25488
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25488
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25488
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25488

    Hi,
    I am sorry, I could not work on it. Please allow me to work on it tomorrow(it’s already 4:25AM here).

    It needs a few major changes. We escaped the data that’s why we are loosing the shortcode in the content(in display). I will have to look at other way to make sure the data is escaped(for security reasons to avoid any XSS attack) but the shortcodes are not lost.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25488
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25488
    Brajesh Singh on in reply to: [Resolved] BP Simple Front End Post Form #3589

    Hi Leo,
    Thank you for confirming.

    We will update the BP Simple Front End post plugin in next 2 days(hopefully tomorrow) and will add this. we are also going to fix a few notices as you pointed earlier in the update.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25488
    Brajesh Singh on in reply to: Change Who's Online to Friend only #3586

    Hi Dandy,
    No problem.
    Please put this in your bp-custom.php

    
    
    function buddydev_change_no_online_text( $translated_text, $text, $domain ) {
    
    	if ( $text == 'There are no users currently online' ) {
    		$translated_text = 'Sorry, you don’t have any friends online';
    	}
    	return $translated_text;
    
    }
    add_filter( 'gettext', 'buddydev_change_no_online_text', 20, 3 );
    
    

    That should do it.

  • Keymaster
    (BuddyDev Team)
    Posts: 25488
    This reply has been marked as private.