Hi, I would like to insert some content before the buddypress activity page content and I would like to know if it is posible. I check some articles like: https://buddydev.com/inject-content-into-buddypress-activity-stream-after-a-certain-number-of-activities/ and I know that exist a shortcode to use activity stream in any page (https://es.wordpress.org/plugins/bp-activity-shortcode/), but I’d need to add some custom content (not just text… some images, shortcodes or videos) before the main content.
Thanks a lot!
Hi,
BuddyPress provides you a hook to add content before activity directory . You can attch tobp_before_directory_activity
action.
example.
add_action( 'bp_before_directory_activity', function () { echo "hello activity"; } );
Hope that helps.
Regards
BrajeshHi Brajesh,
So how can I place a content like this into that code?
“[mk_page_section sidebar=”sidebar-1″][vc_column][mk_fancy_title tag_name=”h3″ size=”24″ font_weight=”600″ margin_bottom=”5″ font_family=”none” align=”center”]Contacta con nosotros[/mk_fancy_title][mk_contact_form button_text=”ENVIAR MENSAJE” phone=”true” captcha=”false”][/vc_column][/mk_page_section]”
Could I place just in the “hello activity” text?
Thanks!
Please use
echo do_shortcode( "Your content ");
you will need do_shortcode to render the content from shortcode.
Regards
Brajesh
You must be logged in to reply to this topic.