MyBB Community Forums

Full Version: How do I edit text of a profile
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to change signature here to awards

https://gyazo.com/0c9c53b2da84a07874396313313348e4

Where do I do this?
You would be able to do it in member_profile templates.
member tamplates>>member_profile
and find signature html and replace them with awards, add this to show awards list
{$memprofile['ougc_awards']}
if you dont want your awards in a list go to ougcawards_profile
and replace everything with this
{$awardlist}
(2020-03-04, 03:37 AM)WallBB Wrote: [ -> ]You would be able to do it in member_profile templates.

Thanks for the reply! Where do I find this?

Sorry I'm quite a noob Angel
I gove you answer where to find it
(2020-03-04, 04:49 PM)Mastersly Wrote: [ -> ]member tamplates>>member_profile
and find signature html and replace them with awards, add this to show awards list
{$memprofile['ougc_awards']}
if you dont want your awards in a list go to ougcawards_profile
and replace everything with this
{$awardlist}

I'm really sorry but I checked every folder and can't find member templates

Is it a folder? Is it a .php file?

Im sorry this works so long. My filezilla client looks like this: https://gyazo.com/baba42a5f0944fa64768b033579d5ddf
ohh,member tamplates are in
ACP >>Templates & Style>>Templates>>YOUR THEME>> Member Templates>>member_profile
(2020-03-05, 07:57 AM)Mastersly Wrote: [ -> ]ohh,member tamplates are in
ACP >>Templates & Style>>Templates>>YOUR THEME>> Member Templates>>member_profile
Ohh thanks

Is this signature.html?
<html>
<head>
<title>{$mybb->settings['bbname']} - {$lang->profile}</title>
{$headerinclude}
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/report.js?ver=1804"></script>


<script>
$(document).ready(function(){

$('ul.tabs li').click(function(){
var tab_id = $(this).attr('data-tab');

$('ul.tabs li').removeClass('current');
$('.tab-content2').removeClass('current');

$(this).addClass('current');
$("#"+tab_id).addClass('current');
})

})
</script>

<style>
.container2{
margin: 0 auto;
}



ul.tabs{
margin: 0px;
padding: 0px;
list-style: none;
}
ul.tabs li{
background: none;
color: #fff;
display: inline-block;
padding: 10px 15px;
cursor: pointer;
margin-top: 10px; 

}

ul.tabs li.current{
    background: rgba(15,15,15,0.95);
color: #fff;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

.tab-content2{
display: none;
padding: 1px;
width: 100%

}

.tab-content2.current{
display: inherit;
}
</style>




</head>
<body>
{$header}
<div class="float_right" style="text-align: center">{$buddy_options}{$ignore_options}{$report_options}</div> <br /><br />
<fieldset>
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="75%">
<span class="largetext"><strong>{$formattedname}</strong></span><br />
<span class="smalltext">
({$usertitle})<br />
{$groupimage}
{$userstars}<br />
<br />
<strong>{$lang->registration_date}</strong> {$memregdate}<br />
<strong>{$lang->date_of_birth}</strong> {$membday} {$membdayage}<br />
<strong>{$lang->local_time}</strong> {$localtime}<br />
<strong>{$lang->postbit_status}</strong> {$online_status}
</span>
</td>
<td width="25%" align="right" valign="middle">{$avatar}</td>
</tr>
</table>
</fieldset>
<br />


<div class="container2">

<ul class="tabs">
<li class="tab-link current" data-tab="tab-1"> Forum info</li>
<li class="tab-link" data-tab="tab-2">Contact details</li>
<li class="tab-link" data-tab="tab-3">Profile</li>
<li class="tab-link" data-tab="tab-4">Signature</li>
<li class="tab-link" data-tab="tab-5">Moderate</li>
</ul>

<div id="tab-1" class="tab-content2 current">

<br />

<table width="100%" cellspacing="0" cellpadding="0" border="0" align="center">
<tr>
<td width="50%" valign="top">
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td colspan="2" class="thead"><strong>{$lang->users_forum_info}</strong></td>
</tr>
<tr>
<td class="trow1" style="width: 30%;"><strong>{$lang->joined}</strong></td>
<td class="trow1">{$memregdate}</td>
</tr>
<tr>
<td class="trow2"><strong>{$lang->lastvisit}</strong></td>
<td class="trow2">{$memlastvisitdate}</td>
</tr>
<tr>
<td class="trow1"><strong>{$lang->total_posts}</strong></td>
<td class="trow1">{$memprofile['postnum']} ({$lang->ppd_percent_total}){$findposts}</td>
</tr>
<tr>
<td class="trow2"><strong>{$lang->total_threads}</strong></td>
<td class="trow2">{$memprofile['threadnum']} ({$lang->tpd_percent_total}){$findthreads}</td>
</tr>
<tr>
<td class="trow1"><strong>{$lang->timeonline}</strong></td>
<td class="trow1">{$timeonline}</td>
</tr>
{$referrals}
{$reputation}
{$warning_level}{$newpoints_profile}
</table>
</td>
</tr>
</table>



</div>
<div id="tab-2" class="tab-content2">
<br /> {$contact_details}
</div>
<div id="tab-3" class="tab-content2">
<br /> {$profilefields}
</div>
<div id="tab-4" class="tab-content2">
<br /> {$signature}{$memprofile['ougc_awards']}
</div>
<div id="tab-5" class="tab-content2">
<br /> {$modoptions}{$adminoptions}
</div>
</div> 



{$footer}
</body>
</html>
Please try to posts your html code in a 
[code]text here
[/code]


No thats your member profile

This is your signature tab
<li class="tab-link" data-tab="tab-4">Signature</li>

And this is your signature box
<div id="tab-4" class="tab-content2">
<br /> {$signature}{$memprofile['ougc_awards']}
</div>

You could add another tab with awards
like mine
https://i.imgur.com/msHEw72.png
Nvm I got it. It was in userprofile. Thanks for explaining this to me!