Kunena 7.0.2 Released

The Kunena team has announce the arrival of Kunena 7.0.2 [K 7.0.2] in stable which is now available for download as a native Joomla extension for J! 5.3.x/5.4.x/6.0.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 / K 6.4 and issues discovered during the last development stages of K 7.0

This category contains miscellaneous, uncategorised user contributions, (templates, modules, plugins and hacks) relating to older versions of Kunena that are no longer supported.

The topics in this category are for historical interest only. Owing to the structural changes that occurred in K 2.0, many of the ideas in these topics will not work with later versions and, for that reason, the topics are locked.

Solved How to add new fields to the user profile

More
13 years 5 months ago - 13 years 5 months ago #134055 by nikola562349
How to add new fields to the user profile
1) insert a new field to the end of the table structure "kunena_users"
Code:
(name: "textfield45" type: "varchar (50)" null: "1")

2) in the file "site \ components \ com_kunena \ controllers \ user.php" in function "saveProfile" insert a line of conservation:
Code:
$ this-> me-> textfield45 = JRequest :: getString ('textfield45','');
3) in the file "site \ components \ com_kunena \ template \ blue_eagle \ html \ user \ default_summary.php" concluded the field:
Code:
<? php if (! empty ($ this-> me-> textfield45)):?> <li> <strong> <? php echo 'A new text';?>: </ strong> <? php echo $ this -> me-> textfield45;?> </ li> <? php endif;?>

4) in the file "site \ components \ com_kunena \ views \ user \ view.html.php" create new feature "echotextfield45 ()" which is entered to change the line

fields:
Code:
echo '<input type="text" size="50" maxlength="50" name="textfield45" value="'. $this-> escape ($ this-> profile-> textfield45).' "/> ';

5) in the file "site \ components \ com_kunena \ template \ blue_eagle \ html \ user \ edit_tab.php" create a new tab and it displays a new feature "echotextfield45() "
Last edit: 13 years 5 months ago by Jiminimonka.

Please Log in or Create an account to join the conversation.

More
13 years 2 months ago #138887 by jonny3010
cant get it to work :(

Please Log in or Create an account to join the conversation.

More
13 years 2 months ago #138893 by rgrae81
more details could be helpful ;)

Please Log in or Create an account to join the conversation.

More
13 years 2 months ago #139208 by jonny3010
how do i add field to profile?

i want to add im game name and other fields

Please Log in or Create an account to join the conversation.

Time to create page: 0.256 seconds