Forum Replies Created
-
In reply to: When will 2.4.1 be released?
It’s available now…
In reply to: Setup attachments to save on Amazon S3bbPress does not include ‘attachments’, if you are using a plugin to allow attachments in bbPress then it is up to that plugin to have attachments uploaded to S3.
In reply to: Import BB data from CSV file to bbPress forumYou won’t need this text and/or value that you imported.
You will have to create your own templates by copying bbPress templates to your theme directory:
https://codex.bbpress.org/theme-compatibility/
You would then use
the_excerpt
rather thanthe_content
to output only ‘x’ words from each topic/replyhttps://codex.wordpress.org/Function_Reference/the_excerpt
There are a few people who have played around using
the_excerpt
and bbPress, have a good look around the site to see how and what they did:This is a known issue and a fix is in #2405 for release with bbPress 2.4.1
In reply to: Problems with the languageIt took a little longer than usual for the 2.4.x branch to go up:
If you find some obvious translations missing in the 2.3.x branch try the /dev branch as this is also ‘typically’ updated for most languages and you could also install the Dutch translations from there.
In reply to: Import BB data from CSV file to bbPress forumI have a follow up question on the above topic. In the old BB we had each topic showed with a short summary field of the post content (usually just the first X characters of the content). Is there a way to do that with bbPress Forum topics? I do not see any existing widget that does this. In fact, is there even a field mapping for such a thing?
In WordPress terms this is known as ‘the_excerpt’ and is a function that will only show ‘x’ words of a post, this is not something you can transfer, it is a ‘display’ function in WordPress.
Oops, forgot another item. I want to bring in topic tags as well. How do I do that.
These are a little tricky mainly because understanding how they are implemented in WordPress is not an easy task as they are distributed throughout three tables.
Upload a csv file to http://gist.github.com or http://pastebin.com with a couple of examples of how your data currently has ‘tags’ associated to the topics and I will try to come up with something that is a little clearer than mud for you 😉
In reply to: AuthorI’d also appreciate a comment on this ticket in Trac for any password issues you found.
https://bbpress.trac.wordpress.org/ticket/1969In reply to: Vbulletin database tables for importI’d also appreciate a comment on this ticket in Trac for any password issues you found.
https://bbpress.trac.wordpress.org/ticket/1969In reply to: vBulletin to bbPress questionsI’d also appreciate a comment on this ticket in Trac for any password issues you found.
https://bbpress.trac.wordpress.org/ticket/1969In reply to: Import Forums errorI’d also appreciate a comment on this ticket in Trac for any password issues you found.
https://bbpress.trac.wordpress.org/ticket/1969In reply to: TAGContent errorI’d also appreciate a comment on this ticket in Trac for any password issues you found.
https://bbpress.trac.wordpress.org/ticket/1969In reply to: AuthorAs I’ve spent the day playing with passwords, did any users have any issues with users logging into WordPress after the import? Did their existing vBulletin passwords work?
In reply to: Vbulletin database tables for importAs I’ve spent the day playing with passwords, could you please let me know if any issues with users logging into WordPress after the import? Did their existing vBulletin passwords work?
In reply to: vBulletin to bbPress questionsAs I’ve spent the day playing with passwords, did anyone have any issues with users logging into WordPress after the import? Did their existing vBulletin passwords work?
In reply to: Import Forums errorAs I’ve spent the day playing with passwords, did you have any issues with users logging into WordPress after the import? Did their existing passwords work?
In reply to: TAGContent errorI have spent the day playing with passwords and the bbPress importers :/
If you could also let me know if you have any issues with users logging into WordPress after the import if their passwords don’t work that would be greatly appreciated.
In reply to: TAGContent errorDownload the latest and specific vBulletin v3 importer from https://bbpress.trac.wordpress.org/ticket/2417
https://bbpress.trac.wordpress.org/raw-attachment/ticket/2417/vBulletin3.php
Upload with FTP to your server into to /wp-content/plugibs/bbpress/includes/admin/converters
In reply to: Where can I find the forum NAMES in the database?They are all in
wp_posts
just liketopic
&reply
,forum
is thepost_type
inwp_posts
Modify your query that you linked in your original post:
$query=”SELECT * FROM wp_posts WHERE post_type = 'forum' OR post_type = 'topic' OR post_type = 'reply' ORDER BY post_date DESC”;
In reply to: 한글 입력에 문제가 있습니다.(I have problem with topic title)As per https://bbpress.trac.wordpress.org/ticket/2298
Works for me. Likely related to incorrect database encoding. Are you/they able to use these characters in regular WordPress posts and/or pages?
So if you change the URL’s back to
post name
do these pages work correctly?eg. http://ccnb.co.kr/?page_id=27 becomes http://ccnb.co.kr/오시는길
Thanks, this is a known issue, see https://bbpress.trac.wordpress.org/ticket/2412
In reply to: forum only visible when logged in / widget also?Just set your forums to ‘private’
https://codex.bbpress.org/getting-started-with-bbpress/#creating-your-first-forum
Visibility: decide whether your forum is public, private or hidden.
Public – Anyone can see these forums
Private – Only logged in registered users can see these forums
Hidden: Only Moderators/Admins can see these forumsIn reply to: Login Logout Updates ProblemTry disabling all your plugins except bbPress, do you still see the issue?
Reenable each plugin one by one until you see the issue reappear.
Research the conflicting plugin for any one else having the same issue.
p.s. It is most likely the ‘Threaded Replies’ plugin at a guess as bbPress 2.4 includes ‘threaded replies’ in bbPress core.
In reply to: 한글 입력에 문제가 있습니다.(I have problem with topic title)I see you have changed your permalinks to ‘Default’ http://127.0.0.1/?p=123 and it now works:
http://ccnb.co.kr/?topic=%ED%95%9C%EA%B8%80%EC%9D%84-%EC%9E%85%EB%A0%A5%ED%95%9C%EB%8B%A4
http://ccnb.co.kr/?topic=11123I presume if you change them back to ‘Post name’ http://127.0.0.1/sample-post/ they do not work again?
http://ccnb.co.kr/forums/topic/%ED%95%9C%EA%B8%80%EC%9D%84-%EC%9E%85%EB%A0%A5%ED%95%9C%EB%8B%A4
In reply to: Google Authorship@shrewdies Thanks for that, nice read, will help on decision making for Microdata support in bbPress.
bbPress blocks shortcodes by default.
You will need to use this plugin to setup ‘allowed’ shortcodes:
https://wordpress.org/plugins/bbpress2-shortcode-whitelist/