Verification Coding Issue Again...
4 posters
Page 1 of 1
Verification Coding Issue Again...
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?
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
Re: Verification Coding Issue Again...
hello
so you are talking about this script ?
https://help.forumotion.com/t160958-verification-code-issue
so you are talking about this script ?
https://help.forumotion.com/t160958-verification-code-issue
Re: Verification Coding Issue Again...
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.
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
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.
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
Re: Verification Coding Issue Again...
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.
1. Nope no one has deleted their accounts, I have no email notifications about any deletions.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.
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
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">');
});
Re: Verification Coding Issue Again...
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:
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)
Razor12345- Support Moderator
- Posts : 1586
Reputation : 268
Language : Ukr, Rus, Eng
Location : Ukraine
Re: Verification Coding Issue Again...
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 It still shows the one not within the codes as verified is there a way to do this via groups?
Re: Verification Coding Issue Again...
Replace the selector - in place of the
(string start character) specify
(string end character):
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.
|
|
- 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.
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
Razor12345- Support Moderator
- Posts : 1586
Reputation : 268
Language : Ukr, Rus, Eng
Location : Ukraine
Beyonder likes this post
Re: Verification Coding Issue Again...
Razor12345 wrote:Replace the selector - in place of the(string start character) specify
- Code:
^
(string end character):
- 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">');
});
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!
Razor12345- Support Moderator
- Posts : 1586
Reputation : 268
Language : Ukr, Rus, Eng
Location : Ukraine
Razor12345- Support Moderator
- Posts : 1586
Reputation : 268
Language : Ukr, Rus, Eng
Location : Ukraine
Similar topics
» Snow Script for Forums/Decoration Issue/Coding Issue
» Verification Code Issue
» [CSS Coding] Username Color Issue
» Something is always loading on my forum; Possible coding issue
» Widget Mouseover coding issue
» Verification Code Issue
» [CSS Coding] Username Color Issue
» Something is always loading on my forum; Possible coding issue
» Widget Mouseover coding issue
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum