MyBB Community Forums

Full Version: Remove "www" button below each thread posts besides PM button
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Oh, yes you're correct. I thought you were referring to php comments. Toungue
(2012-02-28, 05:39 AM)Yaldaram Wrote: [ -> ]Oh, yes you're correct. I thought you were referring to php comments. Toungue

I was wondering... Smile

PHP no
HTML yes

One should never need a php comment in templates.
If i will do this, it will be deleted also the option when you visit the user, or it will delete only from the posts?
^ suggested method is for removing the website link from the posts only.
to remove the homepage from member profile, you have to remove code like below from member_profile template
<tr>
<td class="trow1" width="40%"><strong>{$lang->homepage}</strong></td>
<td class="trow1">{$website}</td>
</tr>
(2012-02-24, 02:30 PM)Yaldaram Wrote: [ -> ]Open "postbit" and "postbit_classic" templates of your theme and find the following and remove;
{$post['button_www']}

(2013-05-21, 07:16 PM).m. Wrote: [ -> ]^ suggested method is for removing the website link from the posts only.
to remove the homepage from member profile, you have to remove code like below from member_profile template
<tr>
<td class="trow1" width="40%"><strong>{$lang->homepage}</strong></td>
<td class="trow1">{$website}</td>
</tr>

Thanks! The same on 1.6.10
Pages: 1 2