Verification Code Issue
3 posters
Page 1 of 1
Verification Code Issue
Hey guys, I am having an issue with this code:
I tried to find it across this forum and then tried to on FMcodes and no luck it seems when I tried to edit it in Javascript it just wont work again any solutions or anything where I could replicate it for a vertified coding appearance?
- Code:
//*Verification system. Copyright :copyright: 2015 by www.fmcodes.com All Rights ReservedjQuery(document).ready(function()
{$('h4.username a[href="/u17"]').after('<img src="https://i.imgur.com/VFD2a7K.png" style="padding-left: 5px;" alt="Verified" title="Verified">');});
$('h4.username a[href="/u55"]').after('<img src="https://i.imgur.com/VFD2a7K.png" style="padding-left: 5px;" alt="Verified" title="Verified">');});
$('h4.username a[href="/u88"]').after('<img src="https://i.imgur.com/VFD2a7K.png" style="padding-left: 5px;" alt="Verified" title="Verified">');});
I tried to find it across this forum and then tried to on FMcodes and no luck it seems when I tried to edit it in Javascript it just wont work again any solutions or anything where I could replicate it for a vertified coding appearance?
Last edited by Beyonder on December 11th 2021, 6:58 pm; edited 1 time in total
Re: Verification Code Issue
hello
what is this code about ? add an icon to a specific member
if yes see this thread https://help.forumotion.com/t146754-trying-to-add-an-icon-in-front-of-a-username?highlight=icon+username
what is this code about ? add an icon to a specific member
if yes see this thread https://help.forumotion.com/t146754-trying-to-add-an-icon-in-front-of-a-username?highlight=icon+username
Re: Verification Code Issue
skouliki wrote:hello
what is this code about ? add an icon to a specific member
if yes see this thread https://help.forumotion.com/t146754-trying-to-add-an-icon-in-front-of-a-username?highlight=icon+username
Yeah I am looking for a specific scripting to add icons to specific members but not for any groups.
Re: Verification Code Issue
the code you posted it is working on my test forum
what is your forum version ?
did you place the javascript to all pages?
what is your forum version ?
did you place the javascript to all pages?
Re: Verification Code Issue
Oy,
If you're looking for the following result, this code will do:
Simply copy and paste the code and change the u17 part with any other user's ID
If you're looking for the following result, this code will do:
- Code:
$('div.postbody p.author a[href^="/u17"]').after('<img src="https://i.imgur.com/VFD2a7K.png" style="padding-left: 5px; vertical-align: middle;" alt="Verified" title="Verified">');
Simply copy and paste the code and change the u17 part with any other user's ID
Re: Verification Code Issue
skouliki wrote:the code you posted it is working on my test forum
what is your forum version ?
did you place the javascript to all pages?
My forum version is PhpBB3
When I put it in all pages it just disables the other Javascripts for some reason.
mSyx wrote:Oy,
If you're looking for the following result, this code will do:
- Code:
$('div.postbody p.author a[href^="/u17"]').after('<img src="https://i.imgur.com/VFD2a7K.png" style="padding-left: 5px; vertical-align: middle;" alt="Verified" title="Verified">');
Simply copy and paste the code and change the u17 part with any other user's ID
Sadly no changes I have done in topics and all pages.
Re: Verification Code Issue
Beyonder wrote:When I put it in all pages it just disables the other Javascripts for some reason.
That's because your code is incorrect, the mistakes in it makes it disable the other scripts.
Beyonder wrote:Sadly no changes I have done in topics and all pages.
Try the following instead:
- Code:
$(function() {
$('div.postbody p.author a[href^="/u17"]').after('<img src="https://i.imgur.com/VFD2a7K.png" style="padding-left: 5px; vertical-align: middle;" alt="Verified" title="Verified">');
});
skouliki, TonnyKamper and Beyonder like this post
Re: Verification Code Issue
mSyx wrote:Beyonder wrote:When I put it in all pages it just disables the other Javascripts for some reason.
That's because your code is incorrect, the mistakes in it makes it disable the other scripts.Beyonder wrote:Sadly no changes I have done in topics and all pages.
Try the following instead:
- Code:
$(function() {
$('div.postbody p.author a[href^="/u17"]').after('<img src="https://i.imgur.com/VFD2a7K.png" style="padding-left: 5px; vertical-align: middle;" alt="Verified" title="Verified">');
});
There we go! thank you!
Similar topics
» Verification Coding Issue Again...
» Affiliation Code Issue
» JavaScript code issue
» Registration Confirmation Code Verification
» How to active an email verification code for new registered users?
» Affiliation Code Issue
» JavaScript code issue
» Registration Confirmation Code Verification
» How to active an email verification code for new registered users?
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum