Add icon next to Reply button
3 posters
Page 1 of 1
Add icon next to Reply button
Hi All
How do I add icon next to Reply button as shown ? I know the reply button has class=i_reply

How do I add icon next to Reply button as shown ? I know the reply button has class=i_reply

- Code:
'<a class="profile-icon" href="javascript:Hello("'+ _userdata.username +'");">' +
' <img title="Ignore this topic in future" src="http://upload.vstanced.com/images/2017/11/03/uhL.png" width="25" height="25">' + '</a>'
Last edited by TamDonCo on June 1st 2018, 3:55 pm; edited 1 time in total
Re: Add icon next to Reply button
TamDonCo wrote:Hi All
How do I add icon next to Reply button as shown ? I know the reply button has class=i_reply
- Code:
'<a class="profile-icon" href="javascript:Hello("'+ _userdata.username +'");">' +
' <img title="Ignore this topic in future" src="http://upload.vstanced.com/images/2017/11/03/uhL.png" width="25" height="25">' + '</a>'
Hello,
Do your forum have buttons designed using CSS? Because if not, these icons you are seeking have to be done with graphics.
Re: Add icon next to Reply button
Go to ACP (Administration Control Panel), then click Modules tab, go to HTML&Javascript section on the left and choose Javascript code management. Make sure that Javascript management is enabled and create a new script.
Title: your choice
Placement: in the topics
Javascript code:
Also, I suggest to use onclick, not href="javascript:.... Better replace this line of code:
Title: your choice
Placement: in the topics
Javascript code:
- Code:
$(function() {
$('img[alt="Reply to topic"].i_reply').parent().append('<a class="profile-icon" href="javascript:Hello("' + _userdata.username + '");">' +
'<img title="Ignore this topic in future" src="http://upload.vstanced.com/images/2017/11/03/uhL.png" width="25" height="25">' + '</a>');
});
Also, I suggest to use onclick, not href="javascript:.... Better replace this line of code:
- Code:
href="javascript:Hello("' + _userdata.username + '");"
- Code:
onclick="Hello("' + _userdata.username + '");"
Re: Add icon next to Reply button
Problem solved & topic archived.
|

» When onclick button of "Post Reply" scroll down to the quick reply
» new topic and reply button above quick reply
» Adding a reply button next to the quote button to automatically tag users?
» Lock the 'New Topic' button but not the 'Post Reply' button
» hide/reply icon
» new topic and reply button above quick reply
» Adding a reply button next to the quote button to automatically tag users?
» Lock the 'New Topic' button but not the 'Post Reply' button
» hide/reply icon
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum