Add excerpt meta field on Team page

0
Add excerpt meta field on Team page 1
jenbub
Sep 25, 2018 07:48 PM 1 Answers General
Member Since Sep 2018
Subscribed Subscribe Not subscribe
Flag(0)

I like the idea of having truncated text on the team page, but I'd like to write my custom truncated text (it is different than the text on the individual employee page). Is there a way to display the excerpt text (from the excerpt meta field) on the team page?

2 Subscribers
Add excerpt meta field on Team page 1
Add excerpt meta field on Team page 3
Submit Answer
Please login to submit answer.
1 Answers
Sort By:
Best Answer
0
Add excerpt meta field on Team page 4
PickPlugins
Sep 25, 2018
Flag(0)

Welcome to our forum.

There is an action hook for single team member, you can remove existing function for content and then add your own function to the hook to display custom content. please see the example code below

remove_action('team_action_single_team_member','team_action_single_team_member_main_content', 20);

add_action('team_action_single_team_member', 'new_team_content');


function new_team_content(){

    $team_member_id = get_the_id();

    echo 'Hello Content';

}

Regards

Add excerpt meta field on Team page 5
jenbub
- Sep 27, 2018 09:34 PM
Flag (0)
0

Thank you!!

Add excerpt meta field on Team page 6
PickPlugins
- Sep 27, 2018 08:40 PM
Flag (0)
0

Ooops sorry, there is a filter hook for filter content on team grid items, please see here
https://pickplugins.com/documentation/team/action-hooks/team_layout_element_id/

Regards

Add excerpt meta field on Team page 5
jenbub
- Sep 27, 2018 08:17 PM
Flag (0)
0

The concept will work,but I'm actually looking to put the excerpt text on the main team page; not the single team member pages. Can you help provide the code for that?

Sign in to Reply
Replying as Submit