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
Notifications
Clear all
Paid Addons Support Forum Only
Please note, that here we only support Paid Addons issues and questions.
gVectors Support staff works from 6am to 6pm (GMT+0)
All questions related to wpForo and wpDiscuz free plugins should be asked in the corresponding plugin support forum:
Jul 24, 2021 4:26 pm
3 Replies
Jul 24, 2021 4:54 pm
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