Home › Forums › Pro Support › Feature Request: custom fields / meta This topic has 1 reply, 2 voices, and was last updated 2 years ago by elvin. Viewing 2 posts - 1 through 2 (of 2 total) Author Posts September 14, 2021 at 8:47 am #33780 SebastianParticipant It would be great to have the option to display the content of custom_fields in a card. get_post_meta($post->ID, '....', true); September 14, 2021 at 6:28 pm #33813 elvinModerator Hi Sebastian, That’s actually doable. You can put things into the cards through WPSP hooks. Here’s a list of hooks where you can put your custom field values in. https://wpshowposts.com/support/topic/bbpress-metadata-and-dates-in-wpshowposts/#post-28854 But you have to manually code them. Example: add_action('wpsp_after_title',function(){ echo get_field('your_custom_field',get_the_ID()); }); Author Posts Viewing 2 posts - 1 through 2 (of 2 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In