👻 Halloween Treat: Our biggest-ever 25% OFF memberships — use SPOOKYSOCIAL before Nov 3! 🎃

BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25200

    Hi Leo,
    I am sorry for the inconvenience.

    Can you please tell me which version of BP Simple Front End post plugin are you using?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25200
    Brajesh Singh on in reply to: Simple Front End Post #3746

    Hi Glenn,
    This function needs to be posted in the file where you want to display the new post/edit post form.

    Here is how the Simple Front ENd post plugin works:-

    1. A plugin/theme registers a form with various settings for the post form using `bp_new_simple_blog_post_form’

    2. You will need to display the form somewhere. to display the form you use

    
    $form = bp_get_simple_blog_post_form('my form');
    if ( $form ) {//if this is a valid form
     $form->show();//it will show the form
    }
    

    We use the name of the form that we registered earlier. If you don’t have access to the template files, we can convert the code from second step to shortcodes and use it inside the post/page if needed.

    Hope that helps.
    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25200
    Brajesh Singh on in reply to: BuddyPress pages dasn't show off #3745

    Hi Michael,
    Do you want the BuddyPress profile links in the menu?

    if yes, Please visit Appearance->menu and at the right side top you will see screen options. Please make sure “BuddyPress” is checked there. Once i is checked, BuddyPress dependent pages will appear in the left link selector box.

    Please let me know if you are looking for something else.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25200
    Brajesh Singh on in reply to: Conditional Fields plugin won't activate #3733
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25200
    Brajesh Singh on in reply to: [Resolved] BuddyPress hosting in India #3732

    All the best with your project Lavish 🙂

  • Keymaster
    (BuddyDev Team)
    Posts: 25200

    Sorry about this but I don’t have any plan for BP Album. I will be interested in BP Media importer in future but BP album is out of question. The time investment can not be justified.

    Also, I will be more interested in helping out if someone takes on the importer coding for BuddyPress Media. I will personally like to spend that time on adding new features to MediaPress and making it feature complete.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25200

    No Problem. all the best with the project.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25200
    Brajesh Singh on in reply to: Build Social network FaceBook like #3729

    Hi Michael,
    Welcome to BuddyDev.

    Congratulations for starting with WordPress, BuddyPress & bbPress.

    The first step is to make a plan. do not make a plan based on a theme. Instead, I will suggest for making a proper plan, list of features, must haves and optional(nice to have features) etc and then evaluating the BuddyPress/bbPress/WordPress for the situations.

    As far as themes are concerned, all the free/premium BuddyPress themes which have been released till today are bad. None of these have proper code(Yes, I have access to all premium themes for every existing BuddyPress vendor out there).

    I don’t have any particular choice. You may decide based on the appearance but all are equally bad and I don’ suggest any for long term project.

    We have been working on one of our own themes too, but it is delayed. We do have plans to release it in 2 weeks. If you are interested, I can send a copy in 2 weeks.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25200
    Brajesh Singh on in reply to: [Resolved] Community Activity on Profile #3728

    Hi Joy,
    I am sorry, I could not reply to yopur PM earlier.

    Please do not use the above code.

    Do you want to set the “All Activity” as default page when activity is clicked? If yes, Please put the following code in bp-custom.php

    
    function buddydev_set_default_nav() {
    	bp_core_new_nav_default (
    		array(
    			'parent_slug'       => buddypress()->activity->id,
    			'subnav_slug'       => 'all-activity',
    			'screen_function'   => 'bp_community_activity_screen'
    		)
    	);
    }
    add_action( 'bp_setup_nav', 'buddydev_set_default_nav', 20 );
    
    

    That will do it. Please do let me know if it works or not?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25200
    Brajesh Singh on in reply to: Conditional Fields plugin won't activate #3721
    This reply has been marked as private.