Notifications
Clear all

Custom field data in Members list table

4 Posts
2 Users
0 Likes
1,210 Views
Posts: 2
Customer
Topic starter
(@ambarish-chatterjee)
Member
Joined: 3 years ago

I have wpForo user custom field plugin. I want to fetch the custom field data in the member's list. But it returns a string of all the data. But I want to retrieve only one field. Please check the screenshot below. I only want the city data

image
3 Replies
Posts: 4168
 Tom
Admin
(@tomson)
Famed Member
Joined: 9 years ago

Hi @ambarish-chatterjee,

It's a JSON data, you can decode it using json_decode() PHP function: https://www.php.net/manual/en/function.json-decode.php#example-3446

 

Also, as a quick solution, you can use the wpForo function which returns user field by user id:

<?php wpforo_user_field( 'city', $member['ID']); ?>

 

sdsdsd

Reply
2 Replies
Customer
(@ambarish-chatterjee)
Joined: 3 years ago

Member
Posts: 2

Hey @tomson,

 

Thank you so much. This worked perfectly. I have another query, where I am struggling. How we can use the custom field data in our template?

image

Here I want to use custom field data.

Reply
 Tom
Admin
(@tomson)
Joined: 9 years ago

Famed Member
Posts: 4168

Hi @ambarish-chatterjee,

I'm sorry, but we don't provide template customization support. This is all on you. If you're PHP developer, you can ask for files or functions. And you should read this documentation to see who it could be customized in update safe way:

Reply
Share:
Scroll to top