Forum Replies Created
-
In the end, did you manage to get most of the things done ? Just for your info, I see that some things you request are in my bbP Toolkit plugin (https://wordpress.org/plugins/bbp-toolkit/) already and some others (like securing profile page) will be in there soon.
Pascal.
In reply to: Can’t remove page title for the life of me…Webpage not available ?
In reply to: Add Text To/Before BreadcrumbsIf you don’t want to add yourself all the functions for the breadcrum, you can find them also in my bbP Toolkit plugin (https://wordpress.org/plugins/bbp-toolkit/).
Pascal.
In reply to: Newbie problem – can’t see my new forumYou mean this one ? http://whichinternationalschool.sg/forums/
In reply to: Add Text To/Before BreadcrumbsHi lissy,
This is a nice one indeed … with the standard arguments of bbp_before_get_breadcrumb_parse_args I don’t seem to get to display the text correctly (without being part of the ‘home’).
Let me see if I find something and will add it to my toolkit too.
Pascal.
In reply to: Completely private forums?Hi,
Not sure how far you want to go, but I’m using https://wordpress.org/plugins/bbp-private-groups/ to shield forums from unwanted users.
Pascal.In reply to: Problem with Theme Twenty FifteenDon’t see issues on Chrome. Also in IE 11 it seems to work fine.
Pascal.In reply to: Change hover colour of search buttonI didn’t see your review yet :-p . Just hope they serve (still work in progress)!
Enjoy bbPress.Pascal.
In reply to: Random UnsubscribeHi,
You don’t have any plugins like toolkits or stylepacks installed that are automatically changing the tickbox for the notfication when replying to a topic ?
Pascal.In reply to: Some results are not showingHi Shawnsauce,
Please check https://bbpress.org/forums/topic/search-not-finding-results/ to see if it helps you.
Pascal.In reply to: Change hover colour of search buttonHi,
Did you try something like this ?
#bbp_search_submit.button { background-color: #1e73be; ... }
Just guessing, cannot try it myself here.
Pascal.
In reply to: Need help with wp-queryHi desert-rover,
Are you looking for a database query to run directly towards the database ? Or are you looking for a piece of PHP code using bbPress and wordpress functions ?
Pascal.
In reply to: do_action missing when bbp_list_forums() is calledHi Rourke,
Not sure I understand your question, but if you want to list all forums, this is a loop I have in one of my plugins:if ( bbp_has_forums() ) { while ( bbp_forums() ) { bbp_the_forum(); $forum_id = bbp_get_forum_id(); $forums_title = bbp_get_forum_title($forum_id); array_push($all_forums_ids, $forum_id); <...> // Check for subforums (first level only) if ($sublist = bbp_forum_get_subforums($forum_id)) { $all_subforums = array(); foreach ( $sublist as $sub_forum ) { <...> } } $i++; } // while } // if
Hope it gets you in the right direction,
Pascal.216000000 ? How many replies you had ???
It seems that SQL will be your only option them. After running the SQL, repair/reset the forums to be sure.
USE WITH CAUTION, MAKE SURE TO HAVE A BACKUP OF THE DB.
DELETE a,b,c FROM wp_posts a LEFT JOIN wp_term_relationships b ON (a.ID=b.object_id) LEFT JOIN wp_postmeta c ON (a.ID=c.post_id) WHERE a.post_type IN ('forum', 'topic', 'reply')
@reminisce32
I fully agree with Robkk. The query should only be used as very last resort. The purge/repair is really doing all the steps one after the other. The query might leave some small traces in your database.
@hayleyadanner
Under the green top bar on this page, you will find a grey bar with your login details to the right. On the left of the grey bar you should see ‘bbPress.org’. Hover over it and you should see ‘New topic’.Pascal.
In reply to: Best Captcha for BBPress?Hi Drosgrove,
Are you looking for protection against nasty users or looking for topic/reply protection ?
Pascal.In reply to: Reply Walker output to JSON formatHi Loc,
Some reading for you, let me know if you found what you were looking for:
http://wp-api.org/Pascal.
In reply to: automatic future image on topic and reply pageHi,
If you look for features image, I did not try it myself yet, but somebody seem to has found something:
https://wordpress.org/support/topic/new-post-featured-image-section-not-showing-after-bbpress-code?replies=2Hope it helps.
Pascal.In reply to: Bulk-move bbPress topicsJust note that you will have the same issue with the freshness like in my plugin as long as the repair fresness function is not patched.
Pascal.In reply to: Translate bbpressHi Hamed,
Just for your info, found this page: https://codex.bbpress.org/getting-started/bbpress-in-your-language/persian-%D9%BE%D8%A7%D8%B1%D8%B3%DB%8C-fa_ir/
Pascal.@robkk,
Yes, that was what I wanted to give 🙂
Pascal.In reply to: What is _bbp_activity_id and do I care about it?Hi TKServer,
I see several questions here from you and they seem to indicate you want to create topics and replies yourself by creating the posts and adding the metadata yourself.
I would propose you really check bbpress functions that exist that do this for you autmatically, so you don’t need to worry about what exact metadata to add.
Pascal.In reply to: get user-id of $topic_idHi TKServer,
Several lists exists. I normally start from http://hookr.io/plugins/bbpress/2.5.6/functions/#index=a
Pascal.Hi reminisce32,
Try to tick both and run the reset.
If you continue to get issues, you could clean the database by running specific commands if you have access to it.
Pascal.Hi namrons,
Check ‘bbP Private Groups’ and use the shortcodes and widgets provided by this plugin.
Pascal.