Place content from plug-in below the cover header and profile pic
-
I have a plug-in that generates Stories like web stories in BP. It integrates fine except it places the resulting stories about the cover image header. I would like it below because it just looks clunky above the header. The developer has offered the following code snippets to implement a different placement. But I am unsure as to where it would go. Any pointers or assistance would be appreciated.
add_filter(
'wpstory_bp_profile_displaying_hook',
function () {
// Default: bp_before_member_home_content
return 'your_custom_hook';
}
);
// For user single stories.
echo do_shortcode( '[wpstory-user-single-stories]' );
// For user public stories.
echo do_shortcode( '[wpstory-user-public-stories]' );
- You must be logged in to reply to this topic.