<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[MyBB Community Forums - 1.6 Suggestions and Feedback]]></title>
		<link>https://community.mybb.com/</link>
		<description><![CDATA[MyBB Community Forums - https://community.mybb.com]]></description>
		<pubDate>Tue, 09 Jun 2026 16:43:54 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[How can I turn off automatic send email?]]></title>
			<link>https://community.mybb.com/thread-152757.html</link>
			<pubDate>Fri, 11 Apr 2014 06:53:11 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=45384">maxforummfv</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-152757.html</guid>
			<description><![CDATA[Host Provider said that my forum always send out more than 2000 email a days.<br />
<br />
(I see things and it because any one write some thing, pm something, it will send out an email to writer...)<br />
<br />
How can I turn it off?<br />
<hr class="mycode_hr" />
It like automatic subcrise to post, thread so system send mail to them?<br />
How can I turn it off completely?]]></description>
			<content:encoded><![CDATA[Host Provider said that my forum always send out more than 2000 email a days.<br />
<br />
(I see things and it because any one write some thing, pm something, it will send out an email to writer...)<br />
<br />
How can I turn it off?<br />
<hr class="mycode_hr" />
It like automatic subcrise to post, thread so system send mail to them?<br />
How can I turn it off completely?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Hardcoded styling in usercp php]]></title>
			<link>https://community.mybb.com/thread-152513.html</link>
			<pubDate>Thu, 03 Apr 2014 02:12:43 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=23276">Leefish</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-152513.html</guid>
			<description><![CDATA[In usercp the draftcount has a hardcoded bracket around the number of drafts<br />
<br />
<pre class="block-code line-numbers language-none"><code class="language-php">$draftcount = &quot;(&quot;.my_number_format($count['draftcount']).&quot;)&quot;;
</code></pre><br />
<br />
If the brackets are not there then the variable can be used in a css selector to hide the manage drafts buttons when there are not any drafts.<br />
<br />
The line should be<br />
<br />
<pre class="block-code line-numbers language-none"><code class="language-php">$draftcount = &quot;&quot;.my_number_format($count['draftcount']).&quot;&quot;;
</code></pre><br />
Sorry if this post is in the wrong place.]]></description>
			<content:encoded><![CDATA[In usercp the draftcount has a hardcoded bracket around the number of drafts<br />
<br />
<pre class="block-code line-numbers language-none"><code class="language-php">$draftcount = &quot;(&quot;.my_number_format($count['draftcount']).&quot;)&quot;;
</code></pre><br />
<br />
If the brackets are not there then the variable can be used in a css selector to hide the manage drafts buttons when there are not any drafts.<br />
<br />
The line should be<br />
<br />
<pre class="block-code line-numbers language-none"><code class="language-php">$draftcount = &quot;&quot;.my_number_format($count['draftcount']).&quot;&quot;;
</code></pre><br />
Sorry if this post is in the wrong place.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Post Datahander Hooks]]></title>
			<link>https://community.mybb.com/thread-152471.html</link>
			<pubDate>Tue, 01 Apr 2014 14:23:16 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=21092">spork985</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-152471.html</guid>
			<description><![CDATA[<pre class="block-code line-numbers language-none"><code class="language-php">$plugins-&gt;run_hooks(&quot;datahandler_post_insert_thread_post&quot;, $this);

$this-&gt;pid = $db-&gt;insert_query(&quot;posts&quot;, $this-&gt;post_insert_data);</code></pre><br />
It would be nice to have an additional hook added after the post is inserted so we can easily obtain the new post's pid.]]></description>
			<content:encoded><![CDATA[<pre class="block-code line-numbers language-none"><code class="language-php">$plugins-&gt;run_hooks(&quot;datahandler_post_insert_thread_post&quot;, $this);

$this-&gt;pid = $db-&gt;insert_query(&quot;posts&quot;, $this-&gt;post_insert_data);</code></pre><br />
It would be nice to have an additional hook added after the post is inserted so we can easily obtain the new post's pid.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[bug in default theme reading PM?]]></title>
			<link>https://community.mybb.com/thread-152412.html</link>
			<pubDate>Sun, 30 Mar 2014 23:12:18 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=80599">cafeína</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-152412.html</guid>
			<description><![CDATA[Hi. In order to avoid errors of incorrect closing tags and lost divs, I think that template private_read<br />
<br />
must be<br />
<br />
<pre class="block-code line-numbers language-none"><code class="language-none">&lt;/tr&gt;
{$action_time}
&lt;/table&gt;
{$message}

&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
{$footer}
&lt;/body&gt;
&lt;/html&gt;</code></pre><br />
As you can see, &lt;/table&gt; closed before  {&#36;message}<br />
<br />
That would be the correct way of closing<br />
Regards]]></description>
			<content:encoded><![CDATA[Hi. In order to avoid errors of incorrect closing tags and lost divs, I think that template private_read<br />
<br />
must be<br />
<br />
<pre class="block-code line-numbers language-none"><code class="language-none">&lt;/tr&gt;
{$action_time}
&lt;/table&gt;
{$message}

&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
{$footer}
&lt;/body&gt;
&lt;/html&gt;</code></pre><br />
As you can see, &lt;/table&gt; closed before  {&#36;message}<br />
<br />
That would be the correct way of closing<br />
Regards]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Hook "member_register_start" called twice, is this a bug or something?]]></title>
			<link>https://community.mybb.com/thread-152018.html</link>
			<pubDate>Wed, 19 Mar 2014 07:33:51 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=78294">kamiyeye</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-152018.html</guid>
			<description><![CDATA[I noticed during registration, hook "member_register_start" (member.php) is called twice.<br />
<br />
First time when click "I agree" on agreement page, then the 2nd time when you submit the registration form.<br />
<br />
Is there a reason for doing so or bug? I don't think a hook should be called more than once.]]></description>
			<content:encoded><![CDATA[I noticed during registration, hook "member_register_start" (member.php) is called twice.<br />
<br />
First time when click "I agree" on agreement page, then the 2nd time when you submit the registration form.<br />
<br />
Is there a reason for doing so or bug? I don't think a hook should be called more than once.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[MyBB 1.6: Requesting new features]]></title>
			<link>https://community.mybb.com/thread-151935.html</link>
			<pubDate>Sat, 15 Mar 2014 16:14:45 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=27579">Nathan Malcolm</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-151935.html</guid>
			<description><![CDATA[Hi,<br />
<br />
The 1.6 series is now feature locked. This means we will not be adding any new features in the 1.6 series, only bug fixes. With MyBB 1.8 around the corner we're interested in making 1.6 as stable as possible for you and your users. <img src="https://community.mybb.com/images/smilies/smile.gif" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
<br />
Changes to existing features and functionality may be considered on a per case basis.<br />
<br />
If you wish to see a particular feature in MyBB, please post in the <a href="http://community.mybb.com/forum-158.html" target="_blank" rel="noopener" class="mycode_url">1.8 Suggestions &amp; Feedback</a> forum.<br />
<br />
Thank you.]]></description>
			<content:encoded><![CDATA[Hi,<br />
<br />
The 1.6 series is now feature locked. This means we will not be adding any new features in the 1.6 series, only bug fixes. With MyBB 1.8 around the corner we're interested in making 1.6 as stable as possible for you and your users. <img src="https://community.mybb.com/images/smilies/smile.gif" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
<br />
Changes to existing features and functionality may be considered on a per case basis.<br />
<br />
If you wish to see a particular feature in MyBB, please post in the <a href="http://community.mybb.com/forum-158.html" target="_blank" rel="noopener" class="mycode_url">1.8 Suggestions &amp; Feedback</a> forum.<br />
<br />
Thank you.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Way to put last post of previous page at top of next page]]></title>
			<link>https://community.mybb.com/thread-151345.html</link>
			<pubDate>Fri, 21 Feb 2014 19:16:27 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=59773">sphinx</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-151345.html</guid>
			<description><![CDATA[I have seen on other forums, admittedly hosted ones, that on a busy thread the last post on a page is copied as the first post on the following page - so if several people are posting and someone is trying to scroll back to see how many new posts have been made since they last read they dont have to go back a page if the last post they read was the last post on the page because it will be the first one on the new page.<br />
<br />
Is there a facility for this to be done on myBB?  I have been trying to find something but having no luck.  Can anyone help please.]]></description>
			<content:encoded><![CDATA[I have seen on other forums, admittedly hosted ones, that on a busy thread the last post on a page is copied as the first post on the following page - so if several people are posting and someone is trying to scroll back to see how many new posts have been made since they last read they dont have to go back a page if the last post they read was the last post on the page because it will be the first one on the new page.<br />
<br />
Is there a facility for this to be done on myBB?  I have been trying to find something but having no luck.  Can anyone help please.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Add setting to remove quotations from search function]]></title>
			<link>https://community.mybb.com/thread-150974.html</link>
			<pubDate>Wed, 12 Feb 2014 08:02:17 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=80959">Foster</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-150974.html</guid>
			<description><![CDATA[<span style="font-size: medium;" class="mycode_size"><span style="font-family: Tahoma;" class="mycode_font"><div style="text-align: center;" class="mycode_align">Hello everyone.<br />
<br />
As a member of another MyBB Board, I noticed that when I view the posts I've made by searching for them, everything I quote is shown in the search. So, for example, when I quote "XYZ"'s post, and then look at what I've posted, I see:<br />
<br />
<img src="https://camo.mybb.com/6c9a3be6c89debbbdbd6e7c9a7e953e431c545da/687474703a2f2f7075752e73682f3654347a4a2e706e67" data-original-url="http://puu.sh/6T4zJ.png" loading="lazy"  alt="[Image: 6T4zJ.png]" class="mycode_img" /><br />
<br />
I find it to be a great inconvenience that I can't see exactly what I wrote, but instead have to go to the post. I believe a setting to disable quotes from showing in searches would be ideal.<br />
<br />
Thank you.</div></span></span>]]></description>
			<content:encoded><![CDATA[<span style="font-size: medium;" class="mycode_size"><span style="font-family: Tahoma;" class="mycode_font"><div style="text-align: center;" class="mycode_align">Hello everyone.<br />
<br />
As a member of another MyBB Board, I noticed that when I view the posts I've made by searching for them, everything I quote is shown in the search. So, for example, when I quote "XYZ"'s post, and then look at what I've posted, I see:<br />
<br />
<img src="https://camo.mybb.com/6c9a3be6c89debbbdbd6e7c9a7e953e431c545da/687474703a2f2f7075752e73682f3654347a4a2e706e67" data-original-url="http://puu.sh/6T4zJ.png" loading="lazy"  alt="[Image: 6T4zJ.png]" class="mycode_img" /><br />
<br />
I find it to be a great inconvenience that I can't see exactly what I wrote, but instead have to go to the post. I believe a setting to disable quotes from showing in searches would be ideal.<br />
<br />
Thank you.</div></span></span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[convert Poll to Quiz]]></title>
			<link>https://community.mybb.com/thread-150121.html</link>
			<pubDate>Sat, 18 Jan 2014 12:48:19 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=16564">tempo</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-150121.html</guid>
			<description><![CDATA[hi, i have an idea to create a Quiz using a Poll.<br />
<br />
When a user create a poll must be an option to set a poll option as "Correct".<br />
When a user give a vote on the correct option receive a message (like "congratulations") and +1 on reputation.<br />
When a user give a vote on the others (than the correct) options receive a message (like "wrong answer) and -1 on reputation.<br />
<br />
what do you think about this?]]></description>
			<content:encoded><![CDATA[hi, i have an idea to create a Quiz using a Poll.<br />
<br />
When a user create a poll must be an option to set a poll option as "Correct".<br />
When a user give a vote on the correct option receive a message (like "congratulations") and +1 on reputation.<br />
When a user give a vote on the others (than the correct) options receive a message (like "wrong answer) and -1 on reputation.<br />
<br />
what do you think about this?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Hook Request in  MEMBER.php]]></title>
			<link>https://community.mybb.com/thread-150021.html</link>
			<pubDate>Thu, 16 Jan 2014 10:34:28 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=53826">User 53826</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-150021.html</guid>
			<description><![CDATA[Hello,<br />
<br />
Recently when I was making a plugin that added some special features to registration Pages, but I found there is no Hook as soon as input = "Register"<br />
<br />
Well there should be a hook, say I want to display something BEFORE the Registration agreement or Remove the agreement, etc.<br />
<br />
I had to add a a hook myself there.... but that ain't a good method.<br />
<br />
INfo: Yeah i know you dont know me as a plugin maker, I make plugins for either my forums (which usually i quit after 4-5 months <img src="https://community.mybb.com/images/smilies/biggrin.gif" alt="Big Grin" title="Big Grin" class="smilie smilie_5" />) or friends.]]></description>
			<content:encoded><![CDATA[Hello,<br />
<br />
Recently when I was making a plugin that added some special features to registration Pages, but I found there is no Hook as soon as input = "Register"<br />
<br />
Well there should be a hook, say I want to display something BEFORE the Registration agreement or Remove the agreement, etc.<br />
<br />
I had to add a a hook myself there.... but that ain't a good method.<br />
<br />
INfo: Yeah i know you dont know me as a plugin maker, I make plugins for either my forums (which usually i quit after 4-5 months <img src="https://community.mybb.com/images/smilies/biggrin.gif" alt="Big Grin" title="Big Grin" class="smilie smilie_5" />) or friends.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Can users disable viewing signatures?]]></title>
			<link>https://community.mybb.com/thread-149929.html</link>
			<pubDate>Mon, 13 Jan 2014 16:20:20 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=79616">DaCow</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-149929.html</guid>
			<description><![CDATA[Forgive my potential new user question, but I am migrating from PHPBB3 and am looking to see if MyBB has a similar feature. In PHPBB, under the user's control panel, there is an option to 'Display Signatures', which the user can set to 'No'. For this particular user, then, signatures do not appear in any posts. <br />
<br />
Does similar functionality exist in MyBB?]]></description>
			<content:encoded><![CDATA[Forgive my potential new user question, but I am migrating from PHPBB3 and am looking to see if MyBB has a similar feature. In PHPBB, under the user's control panel, there is an option to 'Display Signatures', which the user can set to 'No'. For this particular user, then, signatures do not appear in any posts. <br />
<br />
Does similar functionality exist in MyBB?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Online Status Issues]]></title>
			<link>https://community.mybb.com/thread-149907.html</link>
			<pubDate>Mon, 13 Jan 2014 01:17:57 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=77631">Axareal</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-149907.html</guid>
			<description><![CDATA[There's an issue with the MyBB software where someone is able to see the online locations via the profile system when the Who's Online system is disabled.]]></description>
			<content:encoded><![CDATA[There's an issue with the MyBB software where someone is able to see the online locations via the profile system when the Who's Online system is disabled.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Make more than one forum on one server]]></title>
			<link>https://community.mybb.com/thread-149276.html</link>
			<pubDate>Tue, 24 Dec 2013 14:04:15 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=36931">glover</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-149276.html</guid>
			<description><![CDATA[Hi.<br />
Mybb install script don't have settings for three of parameter  <span style="font-weight: bold;" class="mycode_b">cookieprefix</span>.<br />
If we installing more MyBB scripts at the same domain we need to fill this settings.]]></description>
			<content:encoded><![CDATA[Hi.<br />
Mybb install script don't have settings for three of parameter  <span style="font-weight: bold;" class="mycode_b">cookieprefix</span>.<br />
If we installing more MyBB scripts at the same domain we need to fill this settings.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Textarea Overlap]]></title>
			<link>https://community.mybb.com/thread-148785.html</link>
			<pubDate>Mon, 09 Dec 2013 08:28:42 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=61867">effone</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-148785.html</guid>
			<description><![CDATA[The textarea overlaps while have padding. We have discussed this issue several times and have come up with several fixes (including core edits). But the proper fix might be including this css declaration:<br />
<br />
<pre class="block-code line-numbers language-none"><code class="language-none">textarea {
box-sizing: border-box;
}
</code></pre><br />
See live example:<br />
<a href="http://css-tricks.com/examples/BoxSizing/" target="_blank" rel="noopener" class="mycode_url">http://css-tricks.com/examples/BoxSizing/</a>]]></description>
			<content:encoded><![CDATA[The textarea overlaps while have padding. We have discussed this issue several times and have come up with several fixes (including core edits). But the proper fix might be including this css declaration:<br />
<br />
<pre class="block-code line-numbers language-none"><code class="language-none">textarea {
box-sizing: border-box;
}
</code></pre><br />
See live example:<br />
<a href="http://css-tricks.com/examples/BoxSizing/" target="_blank" rel="noopener" class="mycode_url">http://css-tricks.com/examples/BoxSizing/</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Stylesheets can be with media parameter ?]]></title>
			<link>https://community.mybb.com/thread-148685.html</link>
			<pubDate>Fri, 06 Dec 2013 09:21:05 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=36931">glover</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-148685.html</guid>
			<description><![CDATA[Mybb Team would to add new function in style editor when we adding new stylesheet ?<br />
I mean about function (&#36;stylesheets) in global.php<br />
<br />
Like this:<br />
<pre class="block-code line-numbers language-none"><code class="language-php">$stylesheets .= &quot;&lt;link type=\&quot;text/css\&quot; rel=\&quot;stylesheet\&quot; href=\&quot;{$mybb-&gt;settings['bburl']}/{$page_stylesheet}\&quot; /&gt;\n&quot;;
</code></pre>I manually added some media in stylesheet.<br />
<pre class="block-code line-numbers language-none"><code class="language-php">$stylesheets .= &quot;&lt;link type=\&quot;text/css\&quot; media=\&quot;screen\&quot; rel=\&quot;stylesheet\&quot; href=\&quot;{$mybb-&gt;settings['bburl']}/{$page_stylesheet}\&quot; /&gt;\n&quot;;
</code></pre>It would be better if we adding new stylesheet with a some parameters.<br />
This can help for multiple stylesheets for several screen resolution. Like mobile, or monitor and printer.]]></description>
			<content:encoded><![CDATA[Mybb Team would to add new function in style editor when we adding new stylesheet ?<br />
I mean about function (&#36;stylesheets) in global.php<br />
<br />
Like this:<br />
<pre class="block-code line-numbers language-none"><code class="language-php">$stylesheets .= &quot;&lt;link type=\&quot;text/css\&quot; rel=\&quot;stylesheet\&quot; href=\&quot;{$mybb-&gt;settings['bburl']}/{$page_stylesheet}\&quot; /&gt;\n&quot;;
</code></pre>I manually added some media in stylesheet.<br />
<pre class="block-code line-numbers language-none"><code class="language-php">$stylesheets .= &quot;&lt;link type=\&quot;text/css\&quot; media=\&quot;screen\&quot; rel=\&quot;stylesheet\&quot; href=\&quot;{$mybb-&gt;settings['bburl']}/{$page_stylesheet}\&quot; /&gt;\n&quot;;
</code></pre>It would be better if we adding new stylesheet with a some parameters.<br />
This can help for multiple stylesheets for several screen resolution. Like mobile, or monitor and printer.]]></content:encoded>
		</item>
	</channel>
</rss>