Search Results for 'phpbb'
-
Search Results
-
Ticket https://bbpress.trac.wordpress.org/ticket/2031
One feature that I struggle a bit in why bbPress broke from the norm is Freshness. It is customary to have the last column for “Last post” which includes the date-time of last post (topic/reply) and the author of last post.
bbPress has decided to use “Freshness” instead of “Last post” as title. Instead of date-time, it displays time-since.
Perhaps time to move to the more convention approach here. Probably good for performance too – won’t need to calculate freshness.
Hey guys. So I’m used to the regular forum format like phpBB and IP Board where it looks like this: http://imgur.com/XlyR6cc
So, where it says Welcome to IPS, that’s the category name.
Under that, you have News and Information, and Pre-Sales, those are your FORUMS.
Then you have a space underneath the categories as can be seen in the picture.
This makes sense because your CATEGORIES are SEPARATED from each other, and the FORUMS, are listed underneath.
The way bbPress it, you can click a category. This makes ZERO sense, there is NO reason to click on the category.
Also, as can also be seen in the picture, the amount of topics, and replies are to the right side, with the recent reply, time, latest thread, and time to the right.
This can be done by anyone with some moderate CSS knowledge and WordPress know how, unfortunately I possess little of both.
So I’m here for your help. Please share your wisdom with me and help me get this layout. This is a layout SO many people have asked for, yet I have found no tutorials on getting anything like this and it just astounds me considering how popular bbPress is, I don’t know why bbPress has a god awful layout.
Note: Please do not make any “well this is how bbPress is supposed to look like so you should deal with it” comments. I’m not here to hear that.
Thank you in advance to anyone who helps me achieve this. I really appreciate it.
Hi guys
I was wondering if we can have a link to the last post along with OP’s title for each forum in the home page, a bit like what we have in phpbb.
I searched a lot, but could not find a thing to get the last post of a forum, or a link to it. In another discussion someone suggested the use of get_topic_last_post_link, which when I tried, got undefined error.
Anyone has an idea ?
Thanks.PS.
WP: 2.8.1
BBPress: 2.5.3Topic: phpBB3 import dont work
Hi
i have WP 3.8.1 and bbpres 2.5.3 , i’m using phpBB3 but now i will work with wordpress an there own forum (bbpress)
i used in tools -> forums -> import forums
typed the database datas in and klick STARTafter that the import start but it import ONLY the user nothing else.
i have tryed this 3 times and it runs alway over one hour and only user are imported
no forums no topics no cats ……NEED HELP PLEASE
I don’t know what the designers were thinking when they designed bbPress, but it looks like crap, not the theme, just the way the stock design is where the forums are just all bundled up underneath the category.
Look at the forums for example:
https://linustechtips.com/main/
http://www.hardwarecanucks.com/forum/
The categories are nicely separated in a hierarchy, with the posts and replies being shown to the right.
I need my forums to look like this, cause I’d like to avoid using crap paid software or open software like phpBB, vBulletin, IP Board, etc.
Topic: Mobile Theme?
Hello,
Is there a mobile-friendly bbPress theme? If not, is it a good idea if I develop one?
I check this support forum with keyword “mobile theme”. Someone ask the same question, the answer is no. If I miss a solution, please let me know. I also Google “mobile bbPress theme” and read the first three pages carefully. There are some good discussion and even achievement, but these topics are not active anymore for three years.
My target is, for example, for the next three websites:
http://mophpbb3.flexplat.com/
http://mosmf2.flexplat.com/
http://momybb.flexplat.com/
When you visit from (1) desktop web browser or (2) mobile web browser, the result are completely different — I will make the same theme for bbPress.If you need a mobile theme, please reply this thread, so I can make sure this work is necessary.
Any comments are welcome.
Rickey
Hi,
At the moment i have a WP 3.8 site with a PHPbb3 forum which is bridged by WPunited but i want to convert my PHPbb3 to BBpress. I ran the converter of BBpress 2.5.2 and everything was converted nicely but there’s only 1 problem: the topics have the wrong authors.
It looks like the conversion of the Authors broke down 🙁 . I did Repair after conversion.
Someone recognize this? and is there a solution?
Grt Lantaarntje
Hi guys,
is there any solution to have same nicks in WordPress and phpBB, which you want to import into bbPress? For example, when I do this with my forum nick ‘LinDan94’, it’ll be overwrited with ‘imported_LinDan94’, because the same user exists in WordPress. How can I link this 2 accounts together?Thanks in advance
Topic: Custom BBCodes?
Hello, after importing from a phpBB forum where I had custom BBCodes I have the problem that they are not changed in actual html.
I would like to know how can I implement such custom bbcodes in my bbpress installation.I did some tries making a custom plugin with something like this inside (this is just an example):
function bb_table_replace( $text ) { $text = preg_replace('/\[tabella\](.*?)\[\/tabella\]/ie', "<table>$1</table>", $text); return $text; } add_filter('bbp_get_reply_content', 'bb_table_replace');
But I had no luck. It seems however to find my regexp pattern but its replace is wrong, it’s made after the matched pattern (adding to it, instead of replacing).
Any help?