Hi, I’m really glad because the profile page on our forum site already done but we still have an issue again in there.
Before we update Custom Profile Fields, we use this code into spProfileShow.php
if ( ! empty( $spProfileUser->steam ) ){
echo ‘<div class=”spColumnSection spProfileLeftCol”>’;
echo ‘<p class=”spProfileLabel”>Steam:</p>’;
echo ‘</div>’;
echo ‘<div class=”spColumnSection spProfileSpacerCol”></div>’;
echo ‘<div class=”spColumnSection spProfileRightCol”>’;
echo ‘<p class=”spProfileLabel”>’;
sp_CustomProfileFieldsDisplay(‘Steam’, $spProfileUser->ID);
echo ‘</p>’;
echo ‘</p></div>’;
}
and after we update, the code to be very very simple (its amazing) like the below
sp_CustomProfileFieldsProfileDisplay(‘Steam’, $spProfileUser–>ID, ‘Steam’);
The issue is the data doesn’t has hyperlink like we want although we already add http://
Before we update, the data still has hyperlink if the data has “http://”. Would you like let me know what should I do for the code again?
Many thanks for your next respond.