Skip to:
Content
Pages
Categories
Search
Top
Bottom

Cannot create topic (No data received)

Published on January 12th, 2015 by pydun

Hi everyone,

I installed bbpress on my company’s website, and when i tried to create new topic like what i am doing here, the brower will return “no data received” error, and if i click more information, i found the error code “ERR_EMPTY_RESPONSE”.

I’ve tried to deactivate most of the plugin except bbpress, and the problem remains.

And if I type something short, like “test”, it can be created.

Does this has to do with the usage of server space? Because I used about 80% of it.

Thank you in advance for your help. Please let me know if you need more information

bbpress translation in greek

Published on January 12th, 2015 by leveltgp

Hello,i have installed and make any correction needed in greek translation,but some are not included or missing in .po files.I cannot find where theese should be translated as you can see in the site Iam designing:
As you can see few messages are missing translations and also if you are logged in also missing translation the Message :Create new Topic at :
Your permissions allow you to post unlimited HTML etc… and ofcource all messages we see here in a topic creation.
If anyone can tell me where else should I translate or which file I will be ver gratefull.Thank you very much.

bbpress forum topics in buddypress

Published on January 12th, 2015 by Hephaestus_Xii

Is there a way to stop bbpress forums topics from showing up in the activity feed.

Category listing

Published on January 11th, 2015 by ThePowerofImagination

Hi,
I want to add list of options/categories to be selected for topic
For example : USERX started topic on mango
He has option to select type of mango.
He also has option to select origin of country.
So it would be like
Forum>Fruit
Topic>Mango
Category1>Alice (Over 50 different kind)
Category2>US (Over 200 Countries)

Custom Sidebar Problem

Published on January 11th, 2015 by shootingtime

While redesigning my website, I can not get the custom sidebar to work in the bbPress forum.

Plugins I have installed:

-Custom Sidebars

-bbPress WP Tweaks

Theme: Smart Mag
Forum URL: http://shootingtime.com/test2/archery-bowhunting-forum/

This is how I got to where I’m at:

Attempt #1

1. I assigned bbPress to use the forum root slug /archery-bowhunting-forum/

2. I created a page with the url slug /archery-bowhunting-forum/

3. With the ‘Custom Sidebars’ plugin, I created a sidebar called ‘forums sidebar’.

4. I checked the box entitled ‘Allow this sidebar to be replaced’ on the sidebar named “main sidebar”

5. I went to the forum page (with the url slug /archery-bowhunting-forum/) and selected the ‘forums sidebar’ from the custom sidebar options

This did not work. I tried it with another individual page and it did work so I assume it’s a bbPress specific problem.

Attempt #2

1. I installed bbPress WP Tweaks

2. bbPress WP Tweaks gave me a widget called “bbPress sidebar” so I customized it.

It didn’t work.

I went to the forum page and selected “bbPress sidebar” in the option field. This didn’t work either.

There is one way I did get the forum index page and the custom sidebar to show up at the same time. It happened when the url slug was different the the bbPress forum slug and I used the bbPress shortcode for the forum to show up. When I clicked on a subforum, the custom sidebar disappeared though.

Please someone HELP!!!!!!!

Thanks

Chinese translation for bbpress

Published on January 11th, 2015 by wei1031

Hi,

I have translated bbpress into Chinese with poedit application. Could anyone help me to upload .po file to https://translate.wordpress.org/projects?

thanks

Set minimum username length to four characters at registration

Published on January 11th, 2015 by jessicana

Hi everyone,

I am trying to set minimum username length to four characters at registration. I searched a lot but can’t find it. I am sure it does exist. I appreciate the support and help.

Thanks

post date not working

Published on January 11th, 2015 by axcezz

Hello! can anyone help me with this problem?

screenshot

the post date is all random numbers. dont know what happend :/

Order forum root topics by title

Published on January 11th, 2015 by sha77ered

Hi there,

Ive been searching all over the internet to find out how i can change the sort order of the forum root page to display topics alphabetically. It would almost seem to me that his is a problem someone may have encountered before but to my surprise I could not find anything, except topics on the sorting of forums.

I realize the core functionality that needs to be changed is in the loop-topics.php template, that ‘orderby’ value in the wp_query array needs to be changed to ‘title’ and the ‘order’ value to ‘ASC’. When I change the ‘orderby’ value to ‘title’ directly in that file, the sorting does change, but for the life of me it will not reverse the alphabetical sorting order when ‘order’ is set to ‘ASC’?!?

And perhaps any ideas how can I allow the user choose between date and alphabetical sorting? It would seem this should perhaps be an option in bbpress?

Site is redflagclient.co.za. Check under Find Client, demo login:

Username: demo_user
Password: password

Any tips would be much appreciated 🙂 Thanks guys

Timer on click

Published on January 11th, 2015 by eVersatile

Hello,
I have been trying to implement a function to my bbpress forums but am not sure how to do so. I believe I have the correct script though I do not know how to implement it.
My goal is to start a timer on the topic once a new topic is created.
The script that I was informed should work is
<html>
<head>
<title>Untitled Document</title>
<script language=”javascript” type=”text/javascript”>
var timerID = null;
var timerRunning = false;
var now = new Date();
var hours = 0;
var minutes =0;
var seconds =0
function stopclock ()
{
if(timerRunning)
clearTimeout(timerID);
timerRunning = false;
}
function showtime ()
{
if(seconds>=59)
{
seconds=0;
minutes=minutes+1;
}
else
{
seconds=1+seconds;
}
if(minutes>=59)
{
minutes=0;
hours=hours+1;
}
var timeValue =zeroPad(hours,2)+”:”+zeroPad(minutes,2)+”:”+zeroPad(seconds,2);
document.getElementById(“timeDisplay”).innerHTML=timeValue;
timerID = setTimeout(“showtime()”,1000);
timerRunning = true;
}
function startclock()
{
stopclock();
showtime();
}
// End –>
function zeroPad(num,count)
{
var numZeropad = num + ”;
while(numZeropad.length < count) {
numZeropad = “0” + numZeropad;
}
return numZeropad;
}
</script>
</head>
<body onload=”startclock();”>
<h2 style=”color: #000000; margin: left;”>
Processing Time :: <span id=”timeDisplay”></span>
</body>
</html>

Skip to toolbar