Forum Replies Created
-
Author
-
farhadnikParticipant
Hi
I’ve added this function:
add_action( ‘bp_profile_header_meta’, ‘display_user_color_pref’ );
function display_user_color_pref() {
$args = array(
‘field’ => ‘Full Name in English’, // Field name or ID.
);
$favorite_color = bp_get_profile_field_data( $args );if ($favorite_color) {
echo $favorite_color;
}}
and it works perfectly in members profile page:
farhadnikParticipantI use this page: https://peoplelovepeople.co.il/our_hostess as a members page..
https://www.peoplelovepeople.co.il/wp-admin/admin.php?page=bp-page-settings
But it still doesn’t work
farhadnikParticipantAs you can see, I’ve switched off all plugins and it still doesn’t work
https://drive.google.com/file/d/1PduTx86HFMNfMC3hqPxL5dcTXDz1dfnk/view
farhadnikParticipantHi,
It doesn’t work. You can see the action on this video:
https://drive.google.com/file/d/1ZQxixK4jTDmgl982wFgF3rMEBA72WUxX/viewTnx
farhadnikParticipantHi Radu,
I just wont to close this issue.
Can you please login to the DB with this:
https://www.peoplelovepeople.co.il/wp-admin
username: admin
password: yaelkurlander1and check the issue?
you can choose english version of the DB on the topMany Thanks
farhadnikParticipantHi,
function sq7_extra_fields_members_directory() {$location = bp_get_member_profile_data(‘field=Full name in English’);
$specialization = bp_get_member_profile_data(‘field=City’);if ($specialization || $location) {
echo ‘‘. ‘Location : ‘ . $location . ‘‘;
echo ‘‘. ‘Specialization : ‘ . $specialization . ‘‘;
}}
add_action(‘bp_directory_members_item’, ‘sq7_extra_fields_members_directory’);farhadnikParticipantI’ve inserted the code you sent me, but it doesn’t work.
Can I send you the DB username and password, and you will check the issue?Tnx
farhadnikParticipantHi
Please check the attachment file.
Did I take the write parameter ?Attachments:
You must be logged in to view attached files.farhadnikParticipantHi
I’ve added the code to the functions.php + deleted the code from members-loop.php
But it’s doesn’t workfarhadnikParticipantYes )) I have an another question..
Can I implement reviews (with star rating) + google map on member profile page?Thank you
farhadnikParticipantHi
I did it, but the db has imported the demo without design elements.
Now it looks like this:
http://peoplelovepeople.s271.upress.link/Attachments:
You must be logged in to view attached files. -
AuthorPosts