Current date/time is December 2nd 2023, 9:06 am
Search found 337 matches for phpBB3
stop old forum name from redirecting to new forum name
Technical Details
Forum version : #phpBB3
Position : Administrator
Concerned browser(s) : Other
Who the problem concerns : All members
When the problem appeared : ongoing
Forum link : https://marvelousartworks.forumotion.com/
Description of problem
Angel(Email address removed by APE) left marvelousartworks.forumotion.com I have the password to log in under her account as founder. She wanted the forum name changed when she left the forum to me. I changed the name to onceinalife-friends.forumotion.com but even if someone puts marvelousartworks.forumotion.com now--several months later, it redirects to the new name. I do NOT want, Angel does not want onceinalife-friends associated with marvelousartworks. We 'thought' it would quit redirecting after a period of time but it has not.is there a way to completely stop it from redirecting? OR am I going to need to delete the forum completely?
thank you
chakoteh
- on November 17th 2023, 2:20 am
- Search in: Other Problems Archives
- Topic: stop old forum name from redirecting to new forum name
- Replies: 10
- Views: 206
Place the last of profile fields above post message
Technical Details
Forum version : #phpBB3
Position : Founder
Forum link : https://mayo.forumpolish.com/
Description of problem
I wanna add a last of profile fields above a post (near to user name).Like here:

Is it possible to do that and keep the current fields layout?
- on October 24th 2023, 9:44 pm
- Search in: Scripts Problems Archives
- Topic: Place the last of profile fields above post message
- Replies: 6
- Views: 470
I Can't Enter the Forum
Technical Details
Forum version : #phpBB3
Position : Founder
Concerned browser(s) : Google Chrome
Screenshot of problem : https://resmim.net/cdn/2023/10/20/S2QzsI.jpg
Who the problem concerns : Yourself
When the problem appeared : When I Try to Join the Forum
Forum link : https://yazgunesi.yetkinforum.com/
Description of problem
I Wanted to Open a Forum, I Did Everything Required, It Opened on the First Try, But Afterwards, I Wanted to Enter the Forum as an Administrator, but the Activation Code Didn't Receive. This Always Happens When I Want to Set Up a Forum with the Yetkin Forum Extension. I Want to Set Up a Forum with a Different Extension. I'd Appreciate Your Help, Only It's Free, Because I'm Tired of It Giving Errors.
- on October 20th 2023, 10:16 am
- Search in: Connection Problems Archives
- Topic: I Can't Enter the Forum
- Replies: 13
- Views: 377
How to get personal widgets available for mobile version and mobile version link.
Technical Details
Forum version : #phpBB3
Position : Founder
Concerned browser(s) :
Who the problem concerns : Yourself
Forum link : ( link is hidden, you must reply to see )
Description of problem
I cannot find a thread for this, so here goes.Also thank you in advanced. I love forumotion, please don't ever change it.
#1 I would like to have more widgets available on my mobile version. Especially the affiliates widget. Is there a code for this?
#2 I would like to make another personal widget that has the link to mobile version on the webpage. I cannot copy the proper link that's available at the bottom of the web version. Nor can I find it anywhere else to use.
A lot of people are used to other platforms and if they switch to Web version on a phone. That tiny link at the bottom is hard to find in order to get back to mobile. A widget is ideal for people with small screens.
Just trying to be as user friendly as possible to increase traffic. My forum is for educational purposes.
Thank you so much!
- on October 18th 2023, 4:23 pm
- Search in: Garbage
- Topic: How to get personal widgets available for mobile version and mobile version link.
- Replies: 28
- Views: 689
Replace html with bbcode (in posts)
Technical Details
Forum version : #phpBB3
Position : Founder
Concerned browser(s) : Mozilla Firefox, Google Chrome, Internet Explorer
Forum link : http://mayo.forumpolish.com
Description of problem
I want to replace this code:- Code:
<div class="tele_bg">
<div class="tele_ico">
<img src="OBRAZEK LUB GIF"></div>
<div class="tele_name">IMIĘ POSTACI</div><div class="tele_msn">
<p>Treść wiadomości</p>
<p>Treść wiadomości</p>
<p>[img="link"]OBRAZEK W WIADOMOŚCI[/img]</p>
</div><div class="tele_field"></div></div>
with something more or less like this:
- Code:
[tele]
[teleimg]OBRAZEK LUB GIF[/teleimg]
[telename]IMIĘ POSTACI[/telename]
[p]Treść wiadomości[/p]
[p]Treść wiadomości[/p]
[p][img="link"]OBRAZEK W WIADOMOŚCI[/img][/p]
[/tele]
I saw this topic: https://help.forumotion.com/t153342-tutorial-create-new-bbcode-tags?highlight=bbcode , but it looks more complicated than what I want.
Any ideas?
Edit: I have something like this - but maybe is better way to do that?
- Code:
(function() {
BBParser = {
initialize: function() {
$(function() {
BBParser.setupBBParser()
})
},
add: [{
tag: 'zapro',
close: true,
replacement: '<div class="wizmot zapro">{content}</div>'
}, {
tag: 'kom',
close: true,
replacement: '<div class="wizkom">{content}</div>'
}, {
tag: 'status',
close: true,
replacement: '<div class="wizmot stat">{content}</div>'
}, {
tag: 'zaczep',
close: true,
replacement: '<div class="wizmot czep">{content}</div>'
}, {
tag: 'lubie',
close: true,
replacement: '<div class="wizcyt">{content}</div>'
}, {
tag: 'inne',
close: true,
replacement: '<div class="wizmot inne">{content}</div>'
}],
validateTag: function(a) {
if (!/^\w+$/.test(a)) throw new RangeError("You added an invalid tag: " + a)
},
replacers: function(a, b, c) {
return (a || "").replace(/{option}/g, b || "").replace(/{content}/g, c || "")
},
optionReg: /.*?=("|'|)(.*?)\1\]/,
parsedContent: function(a, b, c) {
return a.replace(c ? RegExp("(\\[" + b.tag + "[^\\]]*\\])([\\s\\S]*?)\\[/" + b.tag + "]", "g" + (b.insensitive ? "i" : "")) : RegExp("\\[" + b.tag + "[^\\]]*\\]", "g" + (b.insensitive ? "i" : "")), function(d, e, f) {
c || (e = d);
e = BBParser.optionReg.test(e) ? e.replace(BBParser.optionReg, "$2") : b.defaultOption;
if ("undefined" !== typeof b.replace) {
d = c ? b.replace(e, f) : b.replace(e);
"string" === typeof d ? c ? f = d : e = d : d;
"object" === typeof d && (e = d.option || e, f = d.content || f)
}
return BBParser.replacers(b.replacement, e, f)
})
},
setupBBParser: function() {
var postBody = $(".postbody, .blog_message");
for (var i = 0, e;
(e = postBody[i++]);) {
for (var j in BBParser.add) {
var item = BBParser.add[j];
BBParser.validateTag(item.tag);
e.innerHTML = BBParser.parsedContent(e.innerHTML, item, item.close)
}
}
}
};
BBParser.initialize()
})();
- on October 17th 2023, 9:01 pm
- Search in: Scripts Problems Archives
- Topic: Replace html with bbcode (in posts)
- Replies: 5
- Views: 385
How do I inline teaxt with an image
Technical Details
Forum version : #phpBB3
Position : Founder
Concerned browser(s) : Mozilla Firefox
Screenshot of problem : https://i.servimg.com/u/f66/20/45/85/75/untitl12.jpg
Who the problem concerns : Yourself
When the problem appeared : It's not a problem, it's a request for an answer
Forum link : https://noforum.forumotion.com
Description of problem
A question please if anyone knows the answer.How can I align inline text with an image. I’ve tried display:inline-block, <p> and <span> but can’t get it to work.
This is the sort of thing I’m looking for.
https://i.servimg.com/u/f66/20/45/85/75/untitl12.jpg
- on October 8th 2023, 2:42 pm
- Search in: Other Problems Archives
- Topic: How do I inline teaxt with an image
- Replies: 5
- Views: 282
Allow HTML not working
Technical Details
Forum version : #phpBB3
Position : Founder
Concerned browser(s) : Google Chrome, Internet Explorer, Opera, Safari
Who the problem concerns : All members
Forum link : http://mayo.forumpolish.com
Description of problem
Hey, HTML in posts for all members should working but it isn't.PA
Allow HTML: ON
Allow unprotected HTML: All members
Unauthorize members with less than a week registration to post external links and emails : OFF


Profile
Always enable HTML: Yes
And after change Allow unprotected HTML to All members I have Maintence in progress error. ;C
- on October 3rd 2023, 12:18 am
- Search in: Scripts Problems Archives
- Topic: Allow HTML not working
- Replies: 7
- Views: 329
HTML in post preview not working
Technical Details
Forum version : #phpBB3
Position : Founder
Concerned browser(s) : Mozilla Firefox, Google Chrome, Opera, Safari
Who the problem concerns : All members
Forum link : http://cadikim.forumpl.net
Description of problem
Hey, I promise this is one of the last questions! Several of the css classes (most of them are --var function) do not work in post preview and in searching all user's posts. However, it works very well in the users post.PA > Allow HTML in User Posts: Enabled
Profile > Always show HTML: Enabled
VIEW IN POST

VIEW IN PREVIEW

VIEW IN ALL USER'S POST SEARCHING

How I can fix it?
- on September 29th 2023, 11:46 pm
- Search in: Scripts Problems Archives
- Topic: HTML in post preview not working
- Replies: 7
- Views: 536
{memberrow.POSTS} is not visible
Technical Details
Forum version : #phpBB3
Position : Founder
Concerned browser(s) : Mozilla Firefox, Google Chrome, Opera, Safari
Who the problem concerns : All members
Forum link : https://cadikim.forumpl.net/memberlist
Description of problem
Hello, it's me again. xD I edited my memberlist_body and now my {memberrow.POSTS} ➜ count of written posts it's not visible. Any ideas how to fix it?This is the code in Template ➜ memberlist_body:
- Code:
<link href="https://fonts.googleapis.com/css?family=Raleway:200,400,700&display=swap" rel="stylesheet">
<div class="memberlist_t">
Lista użytkowników
</div>
<form action="{S_MODE_ACTION}" method="get">
<div class="tli-fields">
<div>
<input type="text" placeholder="Pseudo" name="username" maxlength="25" size="20" value="{L_USER_SELECT_VALUE}" />
{S_MODE_SELECT}{S_ORDER_SELECT}
<input type="submit" name="submit" value="{L_SUBMIT}" />
</div>
</div>
{S_HIDDEN_SID}
</form>
<ul class="tli-member">
<!-- BEGIN memberrow -->
<div class="content_list">
<div class="block_left_list">
<a class="gen tli-pseudo js-title" href="{memberrow.U_VIEWPROFILE}">{memberrow.USERNAME}</a>
<div class="lastvisit_list">
Ostatnia wizyta: {memberrow.LASTVISIT}
</div>
<div class="joinedlist jsB">
Dołączył/a: {memberrow.JOINED}
</div>
<span class="infosmember">{memberrow.POSTS} postów</span>
<span class="infosmember"><a href="{memberrow.U_VIEWPROFILE}" title="PROFIL"><em class="icofont-ui-user"></em></a></span>
<span class="infosmember">{memberrow.PM_IMG}</span>
</div>
<div class="block_rightmember">
<a href="{memberrow.U_VIEWPROFILE}"><span>{memberrow.AVATAR_IMG}</span></a>
<div class="blocdeco jsTEST"></div>
</div>
</div>
<!-- END memberrow -->
</ul>
<!-- BEGIN switch_no_user -->
<tr>
<td class="catBottom" colspan="{switch_no_user.COLSPAN_NUMBER}" height="28" align="center">
<span class="gensmall">{switch_no_user.L_NO_USER}</span>
</td>
</tr>
<!-- END switch_no_user -->
<!-- BEGIN switch_pagination -->
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<span class="nav">{PAGE_NUMBER}</span>
</td>
<td align="right">
<span class="nav">{PAGINATION}</span>
</td>
</tr>
</table>
<br />
<!-- END switch_pagination -->
<script type="text/javascript">
//<![CDATA[
$( document ).ready(function() {
$('.content_list').each(function(){
var color = $(this).find('span').css("color");
$(this).find('.jsTEST').css("background-color", color);
});
});
//]]>
</script>
<script type="text/javascript">
//<![CDATA[
$( document ).ready(function() {
$('.content_list').each(function(){
var color = $(this).find('span').css("color");
$(this).find('.jsB').css("color", color);
});
});
//]]>
</script>
And CSS:
- Code:
/* Lista użytkowników */
.memberlist_t {
width: 100%;
height: 90px;
background: var(--gradient1);
border-radius: 5px;
margin: auto;
text-align: center;
color: #fff;
font: 15px raleway;
text-transform: uppercase;
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding-top: 34px;
font-weight: 700;
margin-bottom: 10px;
}
.tli-member {
width: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin: 0 auto;
padding: 0;
}
.content_list {
width: 49%;
height: 150px;
background: #f7f7f7;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border: 1px solid #e2e2e2;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
margin-bottom: 10px;
}
.block_left_list {
width: 100%;
height: 145px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding: 15px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.block_left_list > a {
display: block;
text-transform: uppercase;
font: 20px var(--fuente1);
}
.block_left_list > a > span > strong {font-weight: 900;}
.lastvisit_list {
width: 100%;
height: 15px;
text-align: left;
font: normal normal 10px var(--fuente1);
text-transform: uppercase;
line-height: 15px;
letter-spacing: 1px;
}
.joinedlist {
width: 100%;
height: 15px;
box-sizing: border-box;
text-align: left;
font: normal normal 10px var(--fuente1);
text-transform: uppercase;
}
.block_left_list > span {
width: 33%;
height: 45px;
display: inline-block;
text-align: center;
font: 11px var(--fuente1);
text-transform: uppercase;
box-sizing: border-box;
padding: 15px 10px 10px;
line-height: 8px;
border: var(--borde2);
}
.block_left_list > span > a {text-decoration: none;}
.block_left_list > span img {margin-top: -4px;}
.block_rightmember {
width: 120px;
position: relative;
}
.block_rightmember img {
width: 80px;
height: 120px;
-o-object-fit: cover;
object-fit: cover;
border: 5px solid #fff;
margin: 10px 0;
position: relative;
z-index: 2;
}
.blocdeco {
width: 65px;
height: 148px;
position: absolute;
top: 0;
right: 0;
z-index: 1;
}
.tli-fields {
width: 800px;
margin: auto;
text-align: center;
margin-bottom: 10px;
}
.tli-fields input {
border: 1px solid #e2e2e2;
background: #fff;
}
.tli-fields select {
border: 1px solid #e2e2e2;
}
.fade {
display: inline-block;
background: -moz-linear-gradient(left, rgb() 0%, rgba(,0) 100%);
background-image: -webkit-gradient(linear, left top, right top, color-stop(0.00, rgb()), color-stop(1.00, rgba(,0)));
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#, endColorstr=#00, GradientType=1);
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#, endColorstr=#00, GradientType=1)";
}
.blur {
display: inline-block;
color: #ddd;
text-shadow: 0 0 2px #aaaaaa;
text-shadow: 0 0 4px #aaaaaa;
text-shadow: 0 0 6px #aaaaaa;
-ms-filter: "progid:DXImageTransform.Microsoft.Blur(pixelradius=2)";
filter: progid:DXImageTransform.Microsoft.MotionBlur(strength=1,direction=310) progid:DXImageTransform.Microsoft.Blur(pixelradius=2);
}
.flipH {
display: inline-block;
-moz-transform: scale(-1,1);
-o-transform: scale(-1,1);
-webkit-transform: scale(-1,1);
transform: scale(-1,1);
-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=-1, M12=0, M21=0, M22=1, SizingMethod='auto expand')";
filter: progid:DXImageTransform.Microsoft.Matrix( M11=-1, M12=0, M21=0, M22=1, SizingMethod="auto expand");
}
.flipV {
display: inline-block;
-moz-transform: scale(1,-1);
-o-transform: scale(1,-1);
-webkit-transform: scale(1,-1);
transform: scale(1,-1);
-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1, M12=0, M21=0, M22=-1, SizingMethod='auto expand')";
filter: progid:DXImageTransform.Microsoft.Matrix( M11=1, M12=0, M21=0, M22=-1, SizingMethod="auto expand");
}
- on September 27th 2023, 5:09 pm
- Search in: Scripts Problems Archives
- Topic: {memberrow.POSTS} is not visible
- Replies: 7
- Views: 364
New line in post add br
Technical Details
Forum version : #phpBB3
Position : Founder
Concerned browser(s) : Mozilla Firefox, Google Chrome, Opera, Safari
Screenshot of problem : https://i.imgur.com/b34ES6z.png
Who the problem concerns : All members
Forum link : https://cadikim.forumpl.net/t11-wzor-telefonu#48
Description of problem
The enters used in the post add
|
Is there a way to fix this so that the enters do not add
|
- on September 26th 2023, 4:34 pm
- Search in: Scripts Problems Archives
- Topic: New line in post add br
- Replies: 7
- Views: 543
Templates profile_view_body not working
Technical Details
Forum version : #phpBB3
Position : Founder
Concerned browser(s) : Mozilla Firefox, Google Chrome, Opera, Safari
Screenshot of problem : https://i.imgur.com/WAm9RGa.png
Who the problem concerns : All members
When the problem appeared : from the beginning of editing
Forum link : https://cadikim.forumpl.net/u1
Description of problem
Hey, I installed skin - Long Long Time but I have one issue. I can't replace Templates > profile_view_body with code from the link, even I have it replaced in my PA (screen). On forum site is an old one code.It looks like this: https://cadikim.forumpl.net/u1
Shouldn't it look diffrent? With different code with different classes?
Force of default templates is off (screen).
- on September 25th 2023, 10:21 am
- Search in: Problems Archives
- Topic: Templates profile_view_body not working
- Replies: 5
- Views: 240
PWA App setup information
Technical Details
Forum version : #phpBB3
Position : Founder
Concerned browser(s) : Other
Who the problem concerns : Yourself
Forum link : ( link is hidden, you must reply to see )
Description of problem
#1. Under modules> PWA. It gives the option to set up the App. Issue is I cannot find any information about "Manage your digital Links JSON file" what fo I need to do with that and is there anything else I need to do in order to run the App?#2: Will it function with Duck Duck Go browser's as well?

- on September 22nd 2023, 5:32 am
- Search in: Problems Archives
- Topic: PWA App setup information
- Replies: 20
- Views: 1837
Cannot login into the Admin/Founder account
Technical Details
Forum version : #phpBB3
Position : Founder
Concerned browser(s) : Google Chrome
Who the problem concerns : Yourself
When the problem appeared : today, April 16
Forum link : http://escapefromreality.forumotion.co.uk/
Description of problem
I lost the password for the admin/founder account. I am the founder, but go into the group usually as a member, so I didn't realize the problem until now.I have sent a PM to skouliki regarding this with all of the pertinent info.
And I apologize in advance if I have posted this in the wrong category!
Thank you for your time and help with this!
Kathyfrances
- on April 16th 2023, 9:00 am
- Search in: Connection Problems Archives
- Topic: Cannot login into the Admin/Founder account
- Replies: 7
- Views: 490
Forgot Password
Technical Details
Forum version : #phpBB3
Position : Founder
Concerned browser(s) : Google Chrome
Who the problem concerns : Yourself
Forum link : https://codingsimpletons.goodforums.net
Description of problem
Hello I forgot my password & I cannot change it due to security restriction preventing changing password. My email I used is removed by skouliki- on March 18th 2023, 6:21 am
- Search in: Connection Problems Archives
- Topic: Forgot Password
- Replies: 5
- Views: 486
Founder tool - not able to log in
Technical Details
Forum version : #phpBB3
Position : Founder
Concerned browser(s) : Google Chrome
Screenshot of problem : https://i.postimg.cc/zGKWC8y1/wrong-login.png
Who the problem concerns : All members
When the problem appeared : today
Forum link : https://magic-land.forumpolish.com/
Description of problem
Hello,I need to use a founder tool to use a backup for our forum. As per attached screenshot, I'm not able to do so.
Could you please advise?
- on March 13th 2023, 10:40 am
- Search in: Problems Archives
- Topic: Founder tool - not able to log in
- Replies: 4
- Views: 518
Logging in
Technical Details
Forum version : #phpBB3
Position : Founder
Concerned browser(s) : Mozilla Firefox, Google Chrome, Internet Explorer, Safari
Who the problem concerns : A few members
When the problem appeared : Recently
Forum link : www.insidelakeside.com
Description of problem
It seems that a few of our members have to log in every time they visit the site. They claim they haven't changed anything or deleted any cookies. They have the "keep me logged in" checked. Would there be any reason this only happens to a few?
- on March 5th 2023, 12:08 am
- Search in: Garbage
- Topic: Logging in
- Replies: 2
- Views: 483
I cannot get into my group.
Technical Details
Forum version : #phpBB3
Position : Founder
Concerned browser(s) : Google Chrome
Who the problem concerns : Yourself
When the problem appeared : I can't get in to my group.
Forum link : https://creativecreations.forumotion.com/login
Description of problem
I tried to log in last night and get this message: You have specified an incorrect or inactive username, or an invalid password. When I click forgot pw I get this message: The security 'Disallow admin to send new password' is active in Admin Panel > General Admin > Security- on February 27th 2023, 4:56 pm
- Search in: Connection Problems Archives
- Topic: I cannot get into my group.
- Replies: 4
- Views: 370
Can't access site
Technical Details
Forum version : #phpBB3
Position : Founder
Concerned browser(s) : Mozilla Firefox
Who the problem concerns : All members
When the problem appeared : Recently when making a mistake in html
Forum link : https://johnvasiateacherblog.forumotion.com
Description of problem
I’m sitting here scratching my head. I was messing around with my html and the last thing I did was miss the closed forward slash in the second part of the title </title> and ended up with <title>The title<title>. I’d already hit the save button but thought I’d go back to fix it later, but now find my whole site has disappeared. The site is there, but when I try to access it I just get a blank white screen. Have I messed up my site with that one html mistake?https://johnvasiateacherblog.forumotion.com
- on February 17th 2023, 6:20 pm
- Search in: Other Problems Archives
- Topic: Can't access site
- Replies: 5
- Views: 365
Reputation system no longer displaying count
Technical Details
Forum version : #phpBB3
Position : Administrator
Concerned browser(s) : Mozilla Firefox, Google Chrome
Screenshot of problem : https://i.imgur.com/NINHQ63.png
Who the problem concerns : All members
When the problem appeared : The problem started occuring about a month and a half ago. I had only updated the header image and due to a weird bug this caused a number of changes in the forum (the custom display css disappeared and this thumbs up issue appeared)
Forum link : https://goallegacy.forumotion.com
Description of problem
Hello,Our forum has a reputation system. I was not the one to implement it but I believe it's based off this tutorial: Improve the reputation system so it counts votes
- Implemented code:
- $(function() {
// General Configuration of the plugin
var config = {
position_left : true, // true for left || false for right
negative_vote : false, // true for negative votes || false for positive only
vote_bar : true, // display a small bar under the vote buttons
// button config
icon_plus : '<img src="https://i.servimg.com/u/f18/18/21/41/30/plus10.png" alt="+"/>',
icon_minus : '<img src="https://i.servimg.com/u/f18/18/21/41/30/minus10.png" alt="-"/>',
// language config
title_plus : 'Like %Guest\'s post',
title_minus : 'Dislike %Guest\'s post',
title_like_singular : '%{VOTES} people likes %Guest\'s post',
title_like_plural : '%{VOTES} people like %Guest\'s post',
title_dislike_singular : '%{VOTES} person dislikes %Guest\'s post',
title_dislike_plural : '%{VOTES} people dislike %Guest\'s post',
title_vote_bar : '%{VOTES} people liked %Guest\'s post %{PERCENT}'
},
// function bound to the onclick handler of the vote buttons
submit_vote = function() {
var next = this.nextSibling, // the counter next to the vote button that was clicked
box = this.parentNode,
bar = box.getElementsByTagName('DIV'),
vote = box.getElementsByTagName('A'),
mode = /eval=plus/.test(this.href) ? 1 : 0,
i = 0, j = vote.length, pos, neg, percent;
// submit the vote asynchronously
$.get(this.href, function() {
next.innerHTML = +next.innerHTML + 1; // add to the vote count
next.title = next.title.replace(/(\d+)/, function(M, $1) { return +$1 + 1 });
pos = +vote[0].nextSibling.innerHTML;
neg = vote[1] ? +vote[1].nextSibling.innerHTML : 0;
percent = pos == 0 ? '0%' : pos == neg ? '50%' : Math.round(pos / (pos + neg) * 100) + '%';
if (bar[0]) {
bar[0].style.display = '';
bar[0].firstChild.style.width = percent;
box.title = box.title.replace(/\d+\/\d+/, pos + '/' + ( pos + neg )).replace(/\(\d+%\)/, '(' + percent + ')');
}
});
// revoke voting capabilities on the post once the vote is cast
for (; i < j; i++) {
vote[i].href = '#';
vote[i].className = vote[i].className.replace(/fa_vote/, 'fa_voted');
vote[i].onclick = function() { return false };
}
return false;
},
vote = $('.vote'), i = 0, j = vote.length,
version = $('.bodylinewidth')[0] ? 0 : document.getElementById('wrap') ? 1 : $('.pun')[0] ? 2 : document.getElementById('ipbwrapper') ? 3 : 'badapple', // version check
// version data so we don't have to redefine these arrays during the loop
vdata = {
tag : ['SPAN', 'LI', 'SPAN', 'LI'][version],
name : ['.name', '.postprofile dt > strong', '.username', '.popmenubutton'][version],
actions : ['.post-options', '.profile-icons', '.post-options', '.posting-icons'][version],
},
post, plus, minus, n_pos, n_neg, title_pos, title_neg, li, ul, bar, button, total, percent, span, pseudo, vote_bar; // startup variables for later use in the loop
// prevent execution if the version cannot be determined
if (version == 'badapple') {
if (window.console) console.warn('This plugin is not optimized for your forum version. Please contact the support for further assistance.');
return;
}
for (; i < j; i++) {
post = $(vote[i]).parentsUntil('.post').parent()[0];
bar = $('.vote-bar', vote[i])[0]; // vote bar
button = $('.vote-button', vote[i]); // plus and minus buttons
pseudo = $(vdata.name, post).text() || 'MISSING_STRING'; // username of the poster
ul = $(vdata.actions, post)[0]; // post actions
li = document.createElement(vdata.tag); // vote system container
li.className = 'fa_reputation';
if (li.tagName == 'SPAN') li.style.display = 'inline-block';
// calculate votes
if (bar) {
total = +bar.title.replace(/.*?\((\d+).*/, '$1');
percent = +bar.title.replace(/.*?(\d+)%.*/, '$1');
n_pos = Math.round(total * (percent / 100));
n_neg = total - n_pos;
} else {
n_pos = 0;
n_neg = 0;
}
// set up negative and positive titles with the correct grammar, votes, and usernames
title_pos = (n_pos == 1 ? config.title_like_singular : config.title_like_plural).replace(/%\{USERNAME\}/g, pseudo).replace(/%\{VOTES\}/g, n_pos);
title_neg = (n_neg == 1 ? config.title_dislike_singular : config.title_dislike_plural).replace(/%\{USERNAME\}/g, pseudo).replace(/%\{VOTES\}/g, n_neg);
// define the vote counts
li.innerHTML = '<span class="fa_count fa_positive" title="' + title_pos + '">' + n_pos + '</span>' + (config.negative_vote ? ' <span class="fa_count fa_negative" title="' + title_neg + '">' + n_neg + '</span>' : '');
span = li.getElementsByTagName('SPAN'); // get the vote count containers for use as insertion points
// create positive vote button
plus = document.createElement('A');
plus.href = button[0] ? button[0].firstChild.href : '#';
plus.onclick = button[0] ? submit_vote : function() { return false };
plus.className = 'fa_vote' + (button[0] ? '' : 'd') + ' fa_plus';
plus.innerHTML = config.icon_plus;
plus.title = (button[0] ? config.title_plus : title_pos).replace(/%\{USERNAME\}/g, pseudo);
span[0] && li.insertBefore(plus, span[0]);
// create negative vote button
if (config.negative_vote) {
minus = document.createElement('A');
minus.href = button[1] ? button[1].firstChild.href : '#';
minus.onclick = button[1] ? submit_vote : function() { return false };
minus.className = 'fa_vote' + (button[1] ? '' : 'd') + ' fa_minus';
minus.innerHTML = config.icon_minus;
minus.title = (button[1] ? config.title_minus : title_neg).replace(/%\{USERNAME\}/g, pseudo);
span[1] && li.insertBefore(minus, span[1]);
}
// create vote bar
if (config.vote_bar) {
vote_bar = document.createElement('DIV');
vote_bar.className = 'fa_votebar';
vote_bar.innerHTML = '<div class="fa_votebar_inner" style="width:' + percent + '%;"></div>';
vote_bar.style.display = bar ? '' : 'none';
li.title = config.title_vote_bar.replace(/%\{USERNAME\}/, pseudo).replace(/%\{VOTES\}/, n_pos + '/' + (n_pos + n_neg)).replace(/%\{PERCENT\}/, '(' + percent + '%)');
li.appendChild(vote_bar);
}
// finally insert the vote system and remove the default one
config.position_left ? ul.insertBefore(li, ul.firstChild) : ul.appendChild(li);
vote[i].parentNode.removeChild(vote[i]);
}
});
The issue is that recently the count has disappeared. It first started happening when I pushed through an image update and somehow the CSS was cleared. I added the relevant CSS again as per the instructions in the guide but it doesn't seem to have added the count back in. It now looks like this:

Note that this post has a positive reaction but does not show the number 1 next to it.
Any suggestions on how to get the count to display again?
- on February 4th 2023, 4:59 pm
- Search in: Scripts Problems Archives
- Topic: Reputation system no longer displaying count
- Replies: 12
- Views: 281
Altering 'Gender' text in profile
Technical Details
Forum version : #phpBB3
Position : Founder
Concerned browser(s) : Mozilla Firefox
Screenshot of problem : https://i.servimg.com/u/f93/09/03/24/30/gndr-t10.png
Who the problem concerns : All members
Forum link : https://darkfx.darkbb.com
Description of problem
hello.. i'm attempting to alter the profile template on my board as so the Gender options for 'Male' & 'Female' are replaced with 'Predacon' & 'Starseeker'.There is no specific option in the default template so i am attempting to write an override:
- Code:
<!-- BEGIN switch_gender -->
<dl>
<dt><label>{L_GENDER} : {MUST_GENDER}</label></dt>
<dd>
<label><input type="radio" name="profile_field_16_-7" value="1" {GENDER_MALE_CHECKED} /><span class="cont">{L_GENDER_MALE}</span></label>
<label><input type="radio" name="profile_field_16_-7" value="2" {GENDER_FEMALE_CHECKED} /><span class="cont">{L_GENDER_FEMALE}</span></label>
</dd>
</dl>
<!-- END switch_gender -->
What i cannot seem to figure out is how to get the display text to change. i've attempted to insert the desired display text in various areas of the code but i'm not quite sure where i am going wrong. (examples below)
- Code:
<!-- BEGIN switch_gender -->
<dl>
<dt><label>{L_GENDER} : {MUST_GENDER}</label></dt>
<dd>
<label><input type="radio" name="profile_field_16_-7" value="1" text="Predacon" {GENDER_MALE_CHECKED} /><span class="cont">{L_GENDER_MALE}</span></label>
<label><input type="radio" name="profile_field_16_-7" value="2" text="Starseeker" {GENDER_FEMALE_CHECKED} /><span class="cont">{L_GENDER_FEMALE}</span></label>
</dd>
</dl>
<!-- END switch_gender -->
or
- Code:
<!-- BEGIN switch_gender -->
<dl>
<dt><label>{L_GENDER} : {MUST_GENDER}</label></dt>
<dd>
<label><input type="radio" name="profile_field_16_-7" value="1" {GENDER_MALE_CHECKED} /><span class="cont">{Predacon}</span></label>
<label><input type="radio" name="profile_field_16_-7" value="2" {GENDER_FEMALE_CHECKED} /><span class="cont">{Starseeker}</span></label>
</dd>
</dl>
<!-- END switch_gender -->
just looking for a little advice/assistance. thanks

~ nem
- on January 2nd 2023, 8:09 pm
- Search in: Scripts Problems Archives
- Topic: Altering 'Gender' text in profile
- Replies: 8
- Views: 262
Forum Deletion Not Working
Technical Details
Forum version : #phpBB3
Position : Founder
Concerned browser(s) : Google Chrome
Who the problem concerns : Yourself
When the problem appeared : Today
Forum link : https://smashfeed.forumotion.com/
Description of problem
Hello, I have been trying to delete an old forum of mine but the deletion is simply not working.When clicking on the email link to confirm deletion, it redirects me to the homepage of the admin panel and the deletion doesn't happen.
I remained signed into the admin panel on the same browser so I'm unsure on why this is not working.
I would really like to get this forum deleted as soon as possible.
Thank you.
- on January 2nd 2023, 1:48 am
- Search in: Garbage
- Topic: Forum Deletion Not Working
- Replies: 4
- Views: 320
CSS Disappeared
Technical Details
Forum version : #phpBB3
Position : Administrator
Concerned browser(s) : Mozilla Firefox
Who the problem concerns : All members
When the problem appeared : Yesterday
Forum link : https://goallegacy.forumotion.com
Description of problem
Hello, yesterday I pushed an update to the images on the forum and the existing CSS code was cleared and a few colors were changed. I was able to change the colors back, but don't have a copy of the old CSS. Is there any way I can access the previous CSS?A few issues I've noticed as a result: The background image is no longer displaying, the reputation system no longer shows the number of upvotes next to it.
- on December 21st 2022, 11:45 pm
- Search in: Scripts Problems Archives
- Topic: CSS Disappeared
- Replies: 3
- Views: 278
canonicals
Technical Details
Forum version : #phpBB3
Position : Administrator
Concerned browser(s) : Mozilla Firefox, Google Chrome, Internet Explorer, Opera, Safari, Other
Who the problem concerns : All members
Forum link : https://johnvasiateacherblog.forumotion.com
Description of problem
I’m having a problem with canonicals and wonder if someone has the answer. It’s probably staring me in the face, but I can’t see it.My articles all point back to my landing page title. This is throwing up a host of duplicate pages.

Contrast this to another site where the article titles reflect the article title and not the forum title.

How do I do this for each article? I’ve tried putting in alternate links as in this example, but that doesn’t work.
<link rel="alternate" type="application/rss+xml" href="/feed/?t=4" title="Fawsley Hall Historic Country House" />
- on December 4th 2022, 12:15 pm
- Search in: Other Problems Archives
- Topic: canonicals
- Replies: 10
- Views: 392
Images not shown when using mobile version
Technical Details
Forum version : #phpBB3
Position : Founder
Concerned browser(s) : Other
Who the problem concerns : All members
Forum link : www.a-4-d.com
Description of problem
Images are not shown when using the mobile version. It works fine when browsing the site using the computer version.- on December 1st 2022, 7:52 am
- Search in: Garbage
- Topic: Images not shown when using mobile version
- Replies: 10
- Views: 526
Chat will not auto refresh
Technical Details
Forum version : #phpBB3
Position : Member
Concerned browser(s) : Google Chrome, Internet Explorer, Other
Screenshot of problem : https://postimg.cc/gallery/kW3Qv5M
Who the problem concerns : A few members
When the problem appeared : 2022/11/24
Forum link : https://liguedespros.actifforum.com/
Description of problem
The chatbox on the forum will not auto refresh. I either have to send a message or to refresh the entire page for the chatbox to update. This is very frustrating of course and makes it hard to maintain a conversation.I tried switching computer, internet connection, navigator, removing cache and cookies, updating my computer, incognito mode, deactivating any extension on my browsers. Anything I could do on my end as a user was done I believe.
I have attached two screenshot, one of those seems to pinpoint the problem to a fetch command getting cancelled everytime.
Thank you in advance.
- on November 26th 2022, 4:37 pm
- Search in: Garbage
- Topic: Chat will not auto refresh
- Replies: 9
- Views: 353
Check all edits made to a post.
Technical Details
Forum version : #phpBB3
Position : Administrator
Concerned browser(s) : Google Chrome, Internet Explorer
Who the problem concerns : Yourself
When the problem appeared : 25/11/2022
Forum link : ( link is hidden, you must reply to see )
Description of problem
A post have been edited 7 times (as per the edit reason note at the bottom).The OP says it has been edited back and forth between himself and another member.
The last edit (7th) was done by the OP.
The other poster denies doing that. Is there any way I can check the editing history for that specific post to see who is right?
- on November 26th 2022, 4:12 pm
- Search in: Garbage
- Topic: Check all edits made to a post.
- Replies: 3
- Views: 470
Transferring a member's contribution
Technical Details
Forum version : #phpBB3
Position : Administrator
Concerned browser(s) : Google Chrome
Who the problem concerns : Yourself
Forum link : http://czsktym-skichallenge.slovakforum.net/
Description of problem
I would like to move some posts (not all) from one forum to another (newly created) within one category.Can it be done and how?
Thanks for help.
- on November 8th 2022, 9:00 am
- Search in: Other Problems Archives
- Topic: Transferring a member's contribution
- Replies: 4
- Views: 273
RPG Sheet Template - Reference Specific Fields
Technical Details
Forum version : #phpBB3
Position : Founder
Concerned browser(s) : Google Chrome
Who the problem concerns : Yourself
Forum link : https://testpeperoni.forumotion.com/u1rpg
Description of problem
- Code:
<dl>
<dt><label>{rpg_fields.F_NAME} :</label></dt>
<dd>{rpg_fields.F_VALUE_NEW}</dd>
</dl>
I'm looking to be able to display information from any of the custom variables individually. Like their username within a body of text, or a character stat.
Under the profile templates for the RPG-Sheet I'd like to be able to list fields in different divs rather than have them listed together. Is there a variety of something like {rpg_fields.F_VALUE_NEW} that lets me target my individual custom field IDs?
I'm thinking something along the lines of this as an example:
{rpg_fields_left.F_first-name}
{rpg_fields_left.F_001}
- Code:
<div class="name">{Character name}</div>
<div class="age">{Character age}</div>
Hopefully I've over rather than under explained. I wasn't sure how to phrase it.
- on October 12th 2022, 9:27 am
- Search in: Garbage
- Topic: RPG Sheet Template - Reference Specific Fields
- Replies: 6
- Views: 507
Saving my databasse
Technical Details
Forum version : #phpBB3
Position : Founder
Concerned browser(s) : Mozilla Firefox
Who the problem concerns : Yourself
Forum link : https://marvelousartworks.forumotion.com/
Description of problem
I know I saw somewhere in AP how to save my database, but I can't find where I saw that. I have saved all my Template, CSS, and Java changes, but how to I save the full database in case something happened. I am not asking to have the data base as I know you can't provide that due to rules.Thanks,
Angel
- on August 22nd 2022, 7:52 pm
- Search in: Other Problems Archives
- Topic: Saving my databasse
- Replies: 3
- Views: 245
Moving only one topic from a different Host
Technical Details
Forum version : #phpBB3
Position : Founder
Concerned browser(s) : Mozilla Firefox
Who the problem concerns : All members
Forum link : https://marvelousartworks.forumotion.com/
Description of problem
Is it possible to move only one full topic from a different host (Hostpapa) where my old forum is to Forumotion? I do not want the full data base... just our General Chat Topic.Thanks!
Angel
- on August 15th 2022, 4:31 am
- Search in: Other Problems Archives
- Topic: Moving only one topic from a different Host
- Replies: 9
- Views: 326