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.

Verification Coding Issue Again...

4 posters

Go down

Solved Verification Coding Issue Again...

Post by Beyonder December 6th 2023, 2:40 pm

Hey guys! Before I had an issue with making the verification icons stay to the topics and displaying and so I will try my best to explain the new issue so bare with me...

I noticed that a user signed up and was given the verification without me editing the CSS and this isn't a one time issue it's a multiple some do and some don't have any icons so I'm trying to make sure it's strictly for the specific users that is coded if that makes sense?


Last edited by Beyonder on December 8th 2023, 3:17 pm; edited 2 times in total
Beyonder
Beyonder
Forumember

Male Posts : 721
Reputation : 29
Language : English
Location : Beyond Realm

http://fictionalomniverse.forumotion.com/

Back to top Go down

Solved Re: Verification Coding Issue Again...

Post by skouliki December 6th 2023, 2:57 pm

hello

so you are talking about this script ?
https://help.forumotion.com/t160958-verification-code-issue
skouliki
skouliki
Manager
Manager

Female Posts : 15133
Reputation : 1696
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

Back to top Go down

Solved Re: Verification Coding Issue Again...

Post by Shek December 7th 2023, 1:04 am

Hello author.

Post here the code that you use please. But, in your forum i noted that this code (reference of message of skouliki info, the code no is activated). Thanks by detail your question. Very Happy

You can answer the this my questions?
- The users that you applicate this effect, delete the accounts after?
- Outside you, exist other user with access in panel? If yes, you can check "logs of administration" in General > Forum > Security > Administrative logs ?

Until later,
Shek king
Shek
Shek
Active Poster

Male Posts : 1679
Reputation : 60
Language : Portuguese and English
Location : Brazil

https://publipos.net

Back to top Go down

Solved Re: Verification Coding Issue Again...

Post by Beyonder December 8th 2023, 1:54 pm

skouliki wrote:hello

so you are talking about this script ?
https://help.forumotion.com/t160958-verification-code-issue

Yes, the code used within worked for me but now something makes it buggy.

Shek wrote:Hello author.

Post here the code that you use please. But, in your forum i noted that this code (reference of message of skouliki info, the code no is activated). Thanks by detail your question. Very Happy

You can answer the this my questions?
- The users that you applicate this effect, delete the accounts after?
- Outside you, exist other user with access in panel? If yes, you can check "logs of administration" in General > Forum > Security > Administrative logs ?

Until later,
Shek king
1. Nope no one has deleted their accounts, I have no email notifications about any deletions.

2. Nope no one else right now has access to the panel's just myself.

This is the code used:

Code:
$(function() {
$('div.postbody p.author a[href^="/u17"]').after('<img src="https://i.servimg.com/u/f56/17/97/98/69/verifi10.png" style="padding-left: 5px; vertical-align: middle;" alt="Verified" title="Verified">');
});
$(function() {
$('div.postbody p.author a[href^="/u73"]').after('<img src="https://i.servimg.com/u/f56/17/97/98/69/verifi10.png" style="padding-left: 5px; vertical-align: middle;" alt="Verified" title="Verified">');
});
$(function() {
$('div.postbody p.author a[href^="/u75"]').after('<img src="https://i.servimg.com/u/f56/17/97/98/69/verifi10.png" style="padding-left: 5px; vertical-align: middle;" alt="Verified" title="Verified">');
});
$(function() {
$('div.postbody p.author a[href^="/u55"]').after('<img src="https://i.servimg.com/u/f56/17/97/98/69/verifi10.png" style="padding-left: 5px; vertical-align: middle;" alt="Verified" title="Verified">');
});
$(function() {
$('div.postbody p.author a[href^="/u06"]').after('<img src="https://i.servimg.com/u/f56/17/97/98/69/verifi10.png" style="padding-left: 5px; vertical-align: middle;" alt="Verified" title="Verified">');
});
$(function() {
$('div.postbody p.author a[href^="/u88"]').after('<img src="https://i.servimg.com/u/f56/17/97/98/69/verifi10.png" style="padding-left: 5px; vertical-align: middle;" alt="Verified" title="Verified">');
});
Beyonder
Beyonder
Forumember

Male Posts : 721
Reputation : 29
Language : English
Location : Beyond Realm

http://fictionalomniverse.forumotion.com/

Back to top Go down

Solved Re: Verification Coding Issue Again...

Post by Razor12345 December 8th 2023, 2:07 pm

Good afternoon!
Your code is triggered before the page loads. You need to "wait" for the page to load and then trigger the code.

New jQuery code:

Code:
jQuery(document).ready(function() {
$('div.postbody p.author a[href^="/u17"]').after('<img src="https://i.servimg.com/u/f56/17/97/98/69/verifi10.png" style="padding-left: 5px; vertical-align: middle;" alt="Verified" title="Verified">');
});
jQuery(document).ready(function() {
$('div.postbody p.author a[href^="/u73"]').after('<img src="https://i.servimg.com/u/f56/17/97/98/69/verifi10.png" style="padding-left: 5px; vertical-align: middle;" alt="Verified" title="Verified">');
});
jQuery(document).ready(function() {
$('div.postbody p.author a[href^="/u75"]').after('<img src="https://i.servimg.com/u/f56/17/97/98/69/verifi10.png" style="padding-left: 5px; vertical-align: middle;" alt="Verified" title="Verified">');
});
jQuery(document).ready(function() {
$('div.postbody p.author a[href^="/u55"]').after('<img src="https://i.servimg.com/u/f56/17/97/98/69/verifi10.png" style="padding-left: 5px; vertical-align: middle;" alt="Verified" title="Verified">');
});
jQuery(document).ready(function() {
$('div.postbody p.author a[href^="/u06"]').after('<img src="https://i.servimg.com/u/f56/17/97/98/69/verifi10.png" style="padding-left: 5px; vertical-align: middle;" alt="Verified" title="Verified">');
});
jQuery(document).ready(function() {
$('div.postbody p.author a[href^="/u88"]').after('<img src="https://i.servimg.com/u/f56/17/97/98/69/verifi10.png" style="padding-left: 5px; vertical-align: middle;" alt="Verified" title="Verified">');
});


Last edited by Razor12345 on December 8th 2023, 3:25 pm; edited 1 time in total (Reason for editing : Make mistake)


Verification Coding Issue Again... Screen51
Razor12345
Razor12345
Support Moderator
Support Moderator

Male Posts : 1462
Reputation : 262
Language : Ukr, Rus, Eng
Location : Ukraine

Back to top Go down

Solved Re: Verification Coding Issue Again...

Post by Beyonder December 8th 2023, 2:27 pm

Razor12345 wrote:Good afternoon!
Your code is triggered before the page loads. You need to "wait" for the page to load and then trigger the code.

New jQuery code:

Code:
jQuery(document).ready(function() {
$('div.postbody p.author a[href^="/u17"]').after('<img src="https://i.servimg.com/u/f56/17/97/98/69/verifi10.png" style="padding-left: 5px; vertical-align: middle;" alt="Verified" title="Verified">');
});
jQuery(document).ready(function() {
$('div.postbody p.author a[href^="/u73"]').after('<img src="https://i.servimg.com/u/f56/17/97/98/69/verifi10.png" style="padding-left: 5px; vertical-align: middle;" alt="Verified" title="Verified">');
});
jQuery(document).ready(function() {
$('div.postbody p.author a[href^="/u75"]').after('<img src="https://i.servimg.com/u/f56/17/97/98/69/verifi10.png" style="padding-left: 5px; vertical-align: middle;" alt="Verified" title="Verified">');
});
jQuery(document).ready(function() {
$('div.postbody p.author a[href^="/u55"]').after('<img src="https://i.servimg.com/u/f56/17/97/98/69/verifi10.png" style="padding-left: 5px; vertical-align: middle;" alt="Verified" title="Verified">');
});
jQuery(document).ready(function() {
$('div.postbody p.author a[href^="/u06"]').after('<img src="https://i.servimg.com/u/f56/17/97/98/69/verifi10.png" style="padding-left: 5px; vertical-align: middle;" alt="Verified" title="Verified">');
});
jQuery(document).ready(function() {
$('div.postbody p.author a[href^="/u88"]').after('<img src="https://i.servimg.com/u/f56/17/97/98/69/verifi10.png" style="padding-left: 5px; vertical-align: middle;" alt="Verified" title="Verified">');
});

Nope Sad It still shows the one not within the codes as verified is there a way to do this via groups?
Beyonder
Beyonder
Forumember

Male Posts : 721
Reputation : 29
Language : English
Location : Beyond Realm

http://fictionalomniverse.forumotion.com/

Back to top Go down

Solved Re: Verification Coding Issue Again...

Post by Razor12345 December 8th 2023, 2:36 pm

Replace the selector - in place of the
Code:
^
(string start character) specify
Code:
$
(string end character):

Code:
jQuery(document).ready(function() {
$('div.postbody p.author a[href$="/u17"]').after('<img src="https://i.servimg.com/u/f56/17/97/98/69/verifi10.png" style="padding-left: 5px; vertical-align: middle;" alt="Verified" title="Verified">');
});
jQuery(document).ready(function() {
$('div.postbody p.author a[href$="/u73"]').after('<img src="https://i.servimg.com/u/f56/17/97/98/69/verifi10.png" style="padding-left: 5px; vertical-align: middle;" alt="Verified" title="Verified">');
});
jQuery(document).ready(function() {
$('div.postbody p.author a[href$="/u75"]').after('<img src="https://i.servimg.com/u/f56/17/97/98/69/verifi10.png" style="padding-left: 5px; vertical-align: middle;" alt="Verified" title="Verified">');
});
jQuery(document).ready(function() {
$('div.postbody p.author a[href$="/u55"]').after('<img src="https://i.servimg.com/u/f56/17/97/98/69/verifi10.png" style="padding-left: 5px; vertical-align: middle;" alt="Verified" title="Verified">');
});
jQuery(document).ready(function() {
$('div.postbody p.author a[href$="/u06"]').after('<img src="https://i.servimg.com/u/f56/17/97/98/69/verifi10.png" style="padding-left: 5px; vertical-align: middle;" alt="Verified" title="Verified">');
});
jQuery(document).ready(function() {
$('div.postbody p.author a[href$="/u88"]').after('<img src="https://i.servimg.com/u/f56/17/97/98/69/verifi10.png" style="padding-left: 5px; vertical-align: middle;" alt="Verified" title="Verified">');
});

If the code doesn't solve the problem - provide a link to a thread where we can see the problem.

It is possible to add this sign to all members of certain groups, but then you will need to have the group name always displayed in the profile.
I apologize, I got the groups mixed up with the ranks.


Last edited by Razor12345 on December 8th 2023, 3:00 pm; edited 1 time in total


Verification Coding Issue Again... Screen51
Razor12345
Razor12345
Support Moderator
Support Moderator

Male Posts : 1462
Reputation : 262
Language : Ukr, Rus, Eng
Location : Ukraine

Beyonder likes this post

Back to top Go down

Solved Re: Verification Coding Issue Again...

Post by Beyonder December 8th 2023, 2:57 pm

Razor12345 wrote:Replace the selector - in place of the
Code:
^
(string start character) specify
Code:
$
(string end character):

Code:
jQuery(document).ready(function() {
$('div.postbody p.author a[href$="/u17"]').after('<img src="https://i.servimg.com/u/f56/17/97/98/69/verifi10.png" style="padding-left: 5px; vertical-align: middle;" alt="Verified" title="Verified">');
});
jQuery(document).ready(function() {
$('div.postbody p.author a[href$="/u73"]').after('<img src="https://i.servimg.com/u/f56/17/97/98/69/verifi10.png" style="padding-left: 5px; vertical-align: middle;" alt="Verified" title="Verified">');
});
jQuery(document).ready(function() {
$('div.postbody p.author a[href$="/u75"]').after('<img src="https://i.servimg.com/u/f56/17/97/98/69/verifi10.png" style="padding-left: 5px; vertical-align: middle;" alt="Verified" title="Verified">');
});
jQuery(document).ready(function() {
$('div.postbody p.author a[href$="/u55"]').after('<img src="https://i.servimg.com/u/f56/17/97/98/69/verifi10.png" style="padding-left: 5px; vertical-align: middle;" alt="Verified" title="Verified">');
});
jQuery(document).ready(function() {
$('div.postbody p.author a[href$="/u06"]').after('<img src="https://i.servimg.com/u/f56/17/97/98/69/verifi10.png" style="padding-left: 5px; vertical-align: middle;" alt="Verified" title="Verified">');
});
jQuery(document).ready(function() {
$('div.postbody p.author a[href$="/u88"]').after('<img src="https://i.servimg.com/u/f56/17/97/98/69/verifi10.png" style="padding-left: 5px; vertical-align: middle;" alt="Verified" title="Verified">');
});

If the code doesn't solve the problem - provide a link to a thread where we can see the problem.

It is possible to add this sign to all members of certain groups, but then you will need to have the group name always displayed in the profile.

There we go!!! fixed!
Beyonder
Beyonder
Forumember

Male Posts : 721
Reputation : 29
Language : English
Location : Beyond Realm

http://fictionalomniverse.forumotion.com/

Back to top Go down

Solved Re: Verification Coding Issue Again...

Post by Razor12345 December 8th 2023, 3:04 pm

Is your request complete?
if your request is complete, please mark it as Solved.

Verification Coding Issue Again... Scree564


Verification Coding Issue Again... Screen51
Razor12345
Razor12345
Support Moderator
Support Moderator

Male Posts : 1462
Reputation : 262
Language : Ukr, Rus, Eng
Location : Ukraine

Back to top Go down

Solved Re: Verification Coding Issue Again...

Post by Beyonder December 8th 2023, 3:11 pm

Razor12345 wrote:Is your request complete?
if your request is complete, please mark it as Solved.

Verification Coding Issue Again... Scree564

Done! thank you again!
Beyonder
Beyonder
Forumember

Male Posts : 721
Reputation : 29
Language : English
Location : Beyond Realm

http://fictionalomniverse.forumotion.com/

Back to top Go down

Solved Re: Verification Coding Issue Again...

Post by Razor12345 December 8th 2023, 3:18 pm

You are welcome!

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


Verification Coding Issue Again... Screen51
Razor12345
Razor12345
Support Moderator
Support Moderator

Male Posts : 1462
Reputation : 262
Language : Ukr, Rus, Eng
Location : Ukraine

Back to top Go down

Back to top

- Similar topics

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