How to do this in phpbb2? Thank you.
5 posters
Remove "Last Edited By" in phpbb2
ToTheFuture- Forumember
- Posts : 374
Reputation : 15
Language : English, Français
- Post n°1
Remove "Last Edited By" in phpbb2
Darren1- Helper
- Posts : 11853
Reputation : 566
Language : English
- Post n°2
Re: Remove "Last Edited By" in phpbb2
Hi,
To remove this, please proceed to: Admin panel >> Display > Templates/General > Click on Viewtopic_Body" and in the search box put in "Edit", and it shoukd come around this area
Please remove the entire table and save & publish it
To remove this, please proceed to: Admin panel >> Display > Templates/General > Click on Viewtopic_Body" and in the search box put in "Edit", and it shoukd come around this area
- Code:
<div class="clear"></div>
</div>
<p>
{postrow.displayed.EDITED_MESSAGE}
</p>
</div>
</div>
</div>
Please remove the entire table and save & publish it
Bloodhound1958- Forumember
- Posts : 136
Reputation : 3
Language : English
- Post n°3
Re: Remove "Last Edited By" in phpbb2
I've tried this and messed up the whole thing. Mine looks like this...Which line do I remove?
{postrow.displayed.SIGNATURE}
</div>
</div>
<span class="gensmall">{postrow.displayed.EDITED_MESSAGE}</span>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="{postrow.displayed.ROW_CLASS} browse-arrows"{postrow.displayed.THANK_BGCOLOR} align="center" valign="middle" width="1
{postrow.displayed.SIGNATURE}
</div>
</div>
<span class="gensmall">{postrow.displayed.EDITED_MESSAGE}</span>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="{postrow.displayed.ROW_CLASS} browse-arrows"{postrow.displayed.THANK_BGCOLOR} align="center" valign="middle" width="1
kirk- Forumaster
- Posts : 11037
Reputation : 653
Language : English,Vulcan,Klingon, Romulan,& Gorn
- Post n°4
Re: Remove "Last Edited By" in phpbb2
this should do it.
- Code:
<span class="gensmall">{postrow.displayed.EDITED_MESSAGE}</span>
Bloodhound1958- Forumember
- Posts : 136
Reputation : 3
Language : English
- Post n°5
Re: Remove "Last Edited By" in phpbb2
Worked like a charm! thanks Guys!
ToTheFuture- Forumember
- Posts : 374
Reputation : 15
Language : English, Français
- Post n°6
Re: Remove "Last Edited By" in phpbb2
Remarkably simple, thank you. Now that I've done this, how do I remove the edit field from posting_body (if that is the right place)? This way, there is no box which prompts for an edit reason when a member changes a post.
Darren1- Helper
- Posts : 11853
Reputation : 566
Language : English
- Post n°7
Re: Remove "Last Edited By" in phpbb2
Hi,
In regards to this;
Head to: Admin panel >> DIsplay > Templates / Post & Private msg > Viewtopic_body. Search for this: edit_reason
and remove this entire code:
Save & publish
Also it removes the ability to do so in Blogs without further modifications
ToTheFuture wrote:Remarkably simple, thank you. Now that I've done this, how do I remove the edit field from posting_body (if that is the right place)? This way, there is no box which prompts for an edit reason when a member changes a post.
In regards to this;
Head to: Admin panel >> DIsplay > Templates / Post & Private msg > Viewtopic_body. Search for this: edit_reason
and remove this entire code:
- Code:
<!-- BEGIN edit_reason -->
<br />
<dl>
<dt><label><span style="font-size:11px">{edit_reason.L_EDIT_REASON}</span></label></dt>
<dd><input class="inputbox medium" style="width:63%" type="text" name="edit_reason" value="{edit_reason.EDIT_REASON}" maxlength="255"></dd>
</dl>
<!-- END edit_reason -->
Save & publish
Also it removes the ability to do so in Blogs without further modifications
Jophy- ForumGuru
- Posts : 17922
Reputation : 836
Language : English
Location : Somewhere
- Post n°8
Re: Remove "Last Edited By" in phpbb2
Topic Solved & Moved Note: You can also help the staff member's work by EDITING your topic and marking it as solved. |