Forum Replies Created
-
In reply to: Multiple admins in a community
You refer to ‘community’, so if you are using BuddyPress, then you better ask in https://buddypress.org/support/
If you really refer to bbPress forums, then I have some good news: In the upcoming v2.6 you can define moderators per forum. The release candidate (already very stable) of that version is available on https://bbpress.org/download/ if you want to already test it.
In reply to: Noidex metatag to groups of pagesHi,
This is a general WP question and would fit better on the general support pages on https://wordpress.org/support/
But just give you a starting point for e.g. the archives, adding this in your functions.php might help:
add_action( 'wp_head', 'casiepa_add_noindex' ); function casiepa_add_noindex() { if ( is_archive() ) { echo '<meta name="robots" content="noindex,follow" />'; } }
In reply to: bbPress labeling in ItalianCiao @finar76,
The shortcode [bbp-register] should remain [bbp-register]. They cannot be translated.
Pascal.
In reply to: How to add and modify .mo fileHi @alexwilmac,
Are you trying to update bbPress translation? Because that’s all centrally managed, so better do it there. If you need any help with that, just leave me a message here.
Pascal.@aminima just for your information, in the upcoming v2.6 of bbPress this has been fixed.
In reply to: Any French here ? ;-)Bonjour @matevoun,
Il y en a qui comprennent oui π– You can open your forum to everybody, so they do not need to create a login (see the settings in your wp-admin: RΓ©glages > Discussion
– Yes and no. The theme that you choose for WordPress is the team used for bbPress. However you can restyle the CSS yourself or use a plugin like https://wordpress.org/plugins/bbp-style-pack/
– Everything is saved in the standard WordPress style: so like a custom post type
– bbPress is a plugin, so just install it and you will see it pop up in your menu: Forums, Topics, replies.Pascal.
PS: 2/3 questions? J’en vois 4… :-pWill follow this one too, it is somewhere related to my https://wordpress.org/plugins/bbp-move-topics/
In reply to: Post PreviewFWIW, I also have https://github.com/r-a-y/bbp-live-preview running on a site and just like @robin-w, I never saw that ‘preview’ button.
If those plugins are not working, I would propose to leave a message at the support forum of those plugins. Please explain well what is not working.
In reply to: Forcing to post first before forum can be read ?For anybody arriving on this topic and looking for the same solution, the plugin can be found on https://wordpress.org/plugins/bbp-post-first/
If it serves, leave a review!
Thanks.
In reply to: see “Spectator” & “No role” linksHi,
Spectator, Blocked, Moderator, etc will appear from the moment you have at least 1 user in that role. However the ‘no role’ really means ‘no role assigned’, so as that structure is setup, you won’t be able to see the people without a role.In reply to: Importing from SMF to bbpress@deserthighway, did you try with bbPress 2.6rc3 ? Importers have improved a lot!
In reply to: Unable to move forum and topics to new siteHi, do you see the topics in the backend ( /wp-admin/edit.php?post_type=topic ) ? Did you run the repairs (one at a time) from Tools>Forums ( /wp-admin/tools.php?page=bbp-repair ) ?
If you have run the repairs and still have issues, please give us some info on previous and new site like WordPress version, bbPress version, etc.
Pascal.
In reply to: I’m building a bbPress iOS and Android app@abijeeth, for the API itself, you can follow and contribute on https://github.com/ePascalC/bbp-API/ and install it from https://wordpress.org/plugins/bbp-api/
For the mobile app side, @tkserver is your man π
Pascal.
In reply to: I’m building a bbPress iOS and Android appGreat working together ! Keep us in the loop for newer versions.
In reply to: Forcing to post first before forum can be read ?Hi Stefaan,
Great timing to get back to me. Let me see if I can move this reply to private so I can leave my email in it…
Pascal.
In reply to: List subscribers of a forum@pinkishhue, I have subscription management in my ‘bbP Toolkit’ plugin that is on the w.org repository. Have a look if you find what you need in there.
Pascal.In reply to: Removing/Editing “Oh Bother” text@coachhads, what version of bbPress/WordPress are you running ?
In reply to: Not seeing ‘in reply to:’ on list of user repliesHi,
I think this is BuddyPress related, so you might have more luck on buddypress.org/support with your question.
Pascal.In reply to: Is there an API for bbPressWell, if you list a forum, all topics already have author and avatar as well as all other info of the topic my 1.0.3 version π
Next step is the pagination and the same info for replies.In reply to: Is there an API for bbPressI never had a /users. It need to see how this behaves because I don’t want to open up information of users that might not be public yet.
And for slack, I was not referering to a slack team but just if you were already on wordpress.slack.com . Because it might be easier to discuss things π
In reply to: Is there an API for bbPressPaging is my next step, probably this weekend. Why is subforums a pain? You need to list the subforums from the page, then jump to them, no ?
In reply to: Is there an API for bbPressHi @tkserver
I will launch v1.0.3 today on https://wordpress.org/plugins/bbp-api/
Sources are still on https://github.com/ePascalC/bbp-API/The routes have slightly changed to comply with standard bbPress settings, but when you get the specific forum, e.g. http://www.example.com/wp-json/bbp-api/v1/forums/forum/5914 it would give you the details of the forum and the list of the 20 recent topics with the title, reply_count, permalink, author and avatar.
I see you also wanted the date posted, so let me add that one too before I commit.
If you see other things to add, let me know. But no guarantee on my response time in these weeks π
Pascal.
PS. are you on slack so we could discuss ?In reply to: I’m building a bbPress iOS and Android appGreat job!
This use case is very useful for adapting the API. Keep us informed.
Pascal.In reply to: Is there an API for bbPressShould not be too hard to implement into /bbp-api/topics/id (https://github.com/ePascalC/bbp-API/wiki/API-routes)
You get the topic data there and then an extra array with all replies.