I’m still confused with the new issue on my Custom Profile Fields. I don’t know its bugged or I’m missing something in my child theme. I’m really need your help.
This is my simple code at spProfileShow.php
# show profile info
sp_ColumnStart('tagClass=spProfileShowInfoSection spRight&width=65%', 'profileInfo');
sp_ProfileShowDisplayName('', __sp('Username'));
sp_ProfileShowFirstName('', __sp('First Name'));
sp_ProfileShowLastName('', __sp('Last Name'));
sp_ProfileShowLocation('', __sp('Location'));
sp_ProfileShowWebsite('', __sp('Website'));
sp_ProfileShowBio('', __sp('Bio'));
sp_CustomProfileFieldsProfileDisplay('Birthday', $spProfileUser–>ID, 'Birthday');
sp_CustomProfileFieldsProfileDisplay('Gender', $spProfileUser–>ID, 'Gender');
sp_CustomProfileFieldsProfileDisplay('City', $spProfileUser–>ID, 'City');
sp_CustomProfileFieldsProfileDisplay('steam', $spProfileUser–>ID, 'Steam');
sp_ColumnEnd('', 'profileInfo');
sp_SectionEnd('tagClass=spClear', 'profileBasic');
###START
sp_SectionStart('tagClass=spProfileShowDetailsSection', 'profileDetails');
# show user identities
sp_ColumnStart('tagClass=spProfileShowIdentitiesSection spLeft&width=45%', 'profileIdentities');
echo '<p>'.__sp('Favorites').'<br /><hr>';
sp_CustomProfileFieldsProfileDisplay('Hobby', $spProfileUser–>ID, 'Hobby');
sp_CustomProfileFieldsProfileDisplay('Music', $spProfileUser–>ID, 'Music');
sp_CustomProfileFieldsProfileDisplay('Food', $spProfileUser–>ID, 'Food');
sp_CustomProfileFieldsProfileDisplay('Drink', $spProfileUser–>ID, 'Drink');
sp_CustomProfileFieldsProfileDisplay('Movie', $spProfileUser–>ID, 'Movie');
sp_CustomProfileFieldsProfileDisplay('Game', $spProfileUser–>ID, 'Game');
sp_ColumnEnd('', 'profileIdentities');
# show user stats
sp_ColumnStart('tagClass=spProfileShowStatsSection spRight&width=45%', 'profileStats');
echo '<p>'.__sp('Hardware').'<br /><hr>';
sp_CustomProfileFieldsProfileDisplay('Operating System', $spProfileUser–>ID, 'Operating System');
sp_CustomProfileFieldsProfileDisplay('Monitor', $spProfileUser–>ID, 'Monitor');
sp_CustomProfileFieldsProfileDisplay('Mouse', $spProfileUser–>ID, 'Mouse');
sp_CustomProfileFieldsProfileDisplay('Mousepad', $spProfileUser–>ID, 'Mousepad');
sp_CustomProfileFieldsProfileDisplay('Keyboard', $spProfileUser–>ID, 'Keyboard');
sp_CustomProfileFieldsProfileDisplay('Headset', $spProfileUser–>ID, 'Headset');
sp_CustomProfileFieldsProfileDisplay('Mainboard', $spProfileUser–>ID, 'Mainboard');
sp_CustomProfileFieldsProfileDisplay('CPU', $spProfileUser–>ID, 'CPU');
sp_CustomProfileFieldsProfileDisplay('Graphics Card', $spProfileUser–>ID, 'Graphics Card');
sp_CustomProfileFieldsProfileDisplay('Cooling System', $spProfileUser–>ID, 'Cooling System');
sp_ColumnEnd('', 'profileStats');
sp_SectionEnd('tagClass=spClear', 'profileDetails');
###END
The issue is…
- It has same value between some user profile
- We can’t see the other admin profiles although we login with admin user on the forum.
Many thanks for your respond.