The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Add icon next to Reply button

3 posters

Go down

Solved Add icon next to Reply button

Post by TamDonCo May 31st 2018, 10:17 pm

Hi All

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

Add icon next to Reply button 2018.05.31-16-14-48


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
TamDonCo
TamDonCo
Forumember

Posts : 427
Reputation : 2
Language : English

http://nhomcho.forummotion.com/

Back to top Go down

Solved Re: Add icon next to Reply button

Post by TheCrow May 31st 2018, 10:23 pm

TamDonCo wrote:Hi All

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

Add icon next to Reply button 2018.05.31-16-14-48


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.


Add icon next to Reply button Thecro10
Forum of the Forums

Forumotion Rules | Tips & Tricks |
FAQ | Did you forget your password?



*** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
No support via PM!
TheCrow
TheCrow
Manager
Manager

Male Posts : 6916
Reputation : 795
Language : Greek, English

https://www.inforumgr.com

Back to top Go down

Solved Re: Add icon next to Reply button

Post by TamDonCo May 31st 2018, 10:33 pm

Hi Luffy

I am not sure , the forum is just as is from beginning
TamDonCo
TamDonCo
Forumember

Posts : 427
Reputation : 2
Language : English

http://nhomcho.forummotion.com/

Back to top Go down

Solved Re: Add icon next to Reply button

Post by TheCrow May 31st 2018, 10:35 pm

How are your forum buttons now?


Add icon next to Reply button Thecro10
Forum of the Forums

Forumotion Rules | Tips & Tricks |
FAQ | Did you forget your password?



*** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
No support via PM!
TheCrow
TheCrow
Manager
Manager

Male Posts : 6916
Reputation : 795
Language : Greek, English

https://www.inforumgr.com

Back to top Go down

Solved Re: Add icon next to Reply button

Post by TamDonCo May 31st 2018, 10:37 pm

they are OK
TamDonCo
TamDonCo
Forumember

Posts : 427
Reputation : 2
Language : English

http://nhomcho.forummotion.com/

Back to top Go down

Solved Re: Add icon next to Reply button

Post by TheCrow May 31st 2018, 10:48 pm

What I meant is if you could take a screenshot to check them.


Add icon next to Reply button Thecro10
Forum of the Forums

Forumotion Rules | Tips & Tricks |
FAQ | Did you forget your password?



*** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
No support via PM!
TheCrow
TheCrow
Manager
Manager

Male Posts : 6916
Reputation : 795
Language : Greek, English

https://www.inforumgr.com

Back to top Go down

Solved Re: Add icon next to Reply button

Post by Ritsu June 1st 2018, 12:51 am

Provide your forum URL please.
Ritsu
Ritsu
Forumember

Male Posts : 63
Reputation : 7
Language : Polish, English
Location : Poland

http://lolirock.forumpolish.com

Back to top Go down

Solved Re: Add icon next to Reply button

Post by TamDonCo June 1st 2018, 1:13 am

http://www.nhomcho.com/t7646-noi-chuyen-co-duyen


I want to add the icon next to "Post Reply" button
TamDonCo
TamDonCo
Forumember

Posts : 427
Reputation : 2
Language : English

http://nhomcho.forummotion.com/

Back to top Go down

Solved Re: Add icon next to Reply button

Post by Ritsu June 1st 2018, 1:19 am

What should this icon do?
Ritsu
Ritsu
Forumember

Male Posts : 63
Reputation : 7
Language : Polish, English
Location : Poland

http://lolirock.forumpolish.com

Back to top Go down

Solved Re: Add icon next to Reply button

Post by TamDonCo June 1st 2018, 1:20 am

as above , it has javascript function
TamDonCo
TamDonCo
Forumember

Posts : 427
Reputation : 2
Language : English

http://nhomcho.forummotion.com/

Back to top Go down

Solved Re: Add icon next to Reply button

Post by Ritsu June 1st 2018, 10:16 am

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:
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 + '");"
to this:
Code:
onclick="Hello("' + _userdata.username + '");"
Ritsu
Ritsu
Forumember

Male Posts : 63
Reputation : 7
Language : Polish, English
Location : Poland

http://lolirock.forumpolish.com

Back to top Go down

Solved Re: Add icon next to Reply button

Post by TamDonCo June 1st 2018, 3:55 pm

hi Ritsu

Thank You very much

Work fine
TamDonCo
TamDonCo
Forumember

Posts : 427
Reputation : 2
Language : English

http://nhomcho.forummotion.com/

Back to top Go down

Solved Re: Add icon next to Reply button

Post by TheCrow June 1st 2018, 5:56 pm

Problem solved & topic archived.
Please read our forum rules: ESF General Rules


Add icon next to Reply button Thecro10
Forum of the Forums

Forumotion Rules | Tips & Tricks |
FAQ | Did you forget your password?



*** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
No support via PM!
TheCrow
TheCrow
Manager
Manager

Male Posts : 6916
Reputation : 795
Language : Greek, English

https://www.inforumgr.com

Back to top Go down

Back to top


 
Permissions in this forum:
You cannot reply to topics in this forum