I don´t know if it´s possible but does someone know how to do this?:
Thanks in advance!
Changing Smilies Position in Reply Message Window
Forum rules
In order the get any support, you will have to do following:
1. Use a describing title!
2. Describe your problem and what happened when the problem occured
3. Tell us what version of phpBB3 you are currently using.
Else your topic may be ignored or locked!
In order the get any support, you will have to do following:
1. Use a describing title!
2. Describe your problem and what happened when the problem occured
3. Tell us what version of phpBB3 you are currently using.
Else your topic may be ignored or locked!
- Inner Circle
- BBCoder III
- Posts: 107
- Joined: 20 Mar 2010, 20:25
- Location: Germany
- Contact:
- Stoker
- Site Admin
- Posts: 3558
- Joined: 12 May 2008, 23:26
- BBCodes: 239
- Favourite BBCode: Anipro
- Favourite MOD: PrettyPhoto
- Location: Denmark
- Contact:
Re: Changing Smilies Position in Reply Message Window
It can easily be done but I suggest that you chose to display fewer smilies on the posting page instead.
Board rules! No PM support
- Inner Circle
- BBCoder III
- Posts: 107
- Joined: 20 Mar 2010, 20:25
- Location: Germany
- Contact:
Re: Changing Smilies Position in Reply Message Window
Sure i could, but many people don´t want to search several pages until they find the smiley they want to use...Stoker » 20 Mar 2010, 21:19 wrote:It can easily be done but I suggest that you chose to display fewer smilies on the posting page instead.
I used some sort of Iframe before but it messed up the messagebox for some users...
- Stoker
- Site Admin
- Posts: 3558
- Joined: 12 May 2008, 23:26
- BBCodes: 239
- Favourite BBCode: Anipro
- Favourite MOD: PrettyPhoto
- Location: Denmark
- Contact:
Re: Changing Smilies Position in Reply Message Window
Else open styles/prosilver/template/posting_editor.html
Find and delete:
Find:
add after:
Save, upload and rrefresh the template.
Find and delete:
Code: Select all
<!-- IF S_SMILIES_ALLOWED and .smiley -->
<strong>{L_SMILIES}</strong><br />
<!-- BEGIN smiley -->
<a href="#" onclick="insert_text('{smiley.A_SMILEY_CODE}', true); return false;"><img src="{smiley.SMILEY_IMG}" width="{smiley.SMILEY_WIDTH}" height="{smiley.SMILEY_HEIGHT}" alt="{smiley.SMILEY_CODE}" title="{smiley.SMILEY_DESC}" /></a>
<!-- END smiley -->
<!-- ENDIF -->
<!-- IF S_SHOW_SMILEY_LINK and S_SMILIES_ALLOWED-->
<br /><a href="{U_MORE_SMILIES}" onclick="popup(this.href, 300, 350, '_phpbbsmilies'); return false;">{L_MORE_SMILIES}</a>
<!-- ENDIF -->
Code: Select all
</textarea>
Code: Select all
<!-- IF S_SMILIES_ALLOWED and .smiley -->
<strong>{L_SMILIES}</strong><br />
<!-- BEGIN smiley -->
<a href="#" onclick="insert_text('{smiley.A_SMILEY_CODE}', true); return false;"><img src="{smiley.SMILEY_IMG}" width="{smiley.SMILEY_WIDTH}" height="{smiley.SMILEY_HEIGHT}" alt="{smiley.SMILEY_CODE}" title="{smiley.SMILEY_DESC}" /></a>
<!-- END smiley -->
<!-- ENDIF -->
<!-- IF S_SHOW_SMILEY_LINK and S_SMILIES_ALLOWED-->
<br /><a href="{U_MORE_SMILIES}" onclick="popup(this.href, 300, 350, '_phpbbsmilies'); return false;">{L_MORE_SMILIES}</a>
<!-- ENDIF -->
Board rules! No PM support
- Inner Circle
- BBCoder III
- Posts: 107
- Joined: 20 Mar 2010, 20:25
- Location: Germany
- Contact:
Re: Changing Smilies Position in Reply Message Window
Thank you very much!
I´m still a noob in such kind of modding styles...
I´m still a noob in such kind of modding styles...