How to add activity form to BP Activity Shortcode
-
There was an older post here that described how to add activity form input to the BP Activity Shortcode plugin. https://buddypress.org/support/topic/add-activity-form-and-loop-on-my-home-page/
This is the functionality I was looking for but that code didn’t seem to work. I searched the BuddyPress v2.2.0 code and found this newer template code.
To add the Activity Form to your feed, insert this code at line 92 of bp-activity-as-shortcode.php
<?php if ( is_user_logged_in() ) { bp_get_template_part( 'activity/post-form' ); } ?>
You can get BP Activity Shortcode here.
- The topic ‘How to add activity form to BP Activity Shortcode’ is closed to new replies.