Forum Replies Created
-
In reply to: Forum Post ID
Only 1 topic OR reply OR post can be number 100, so I don’t think what you ask is feasible.
Pascal.In reply to: How to disable Nonce checkHi,
If you are getting these warnings because of your theme, then I would choose a different theme. The nonce is there for making sure you won’t do any stupid things, so if you see the warning, something is wrong in your setup.I would not try to look to disactivate it, but rather find the source by deactiving plugins or choose a different theme.
Pascal.
In reply to: Strange cache issues (in profile and topic count)Hi mica123,
Would you mind installing the ‘WP Overview (lite)’ plugin
and paste here the cache info from the dashboard widget like:WP (Hyper, Super, W3 Total) Cache 0 (since wp2.5), Simplepie Cache 0 Age 0 seconds (since wp2.8)
Maybe also install the ‘Send System Info’ plugin and send me the info by email.
Then deactivate the plugins as they might use resources that you don’t want to loose.
Pascal.
In reply to: Remove Email VerificationHi sey88,
If it’s specifically about BuddyPress, then you better ask in another forum, but it seems plugin exists there too (e.g. https://wordpress.org/plugins/bp-disable-activation-reloaded/ ).
Pascal.
In reply to: BBPress Front-End Add ForumTechnically possible as Robkk indicates, ok, but just make sure to keep it under control.
I’m not sure what maximum number of forums has been tested for visualization and handling inside the different shortcodes and functions.Pascal.
In reply to: How to make Bbpress layout hierachical?Hi,
I suppose you want forums with subforums, right ?
If you edit a forum (Dashboard > Forum > All Forums), you should find ‘Forum Attributes’ in which you can set the ‘Parent’ to another forum.
Hope this helps,
Pascal.In reply to: Remove Email VerificationHi sey88,
This seems wordpress related and not bbpress related.
On my site I have the ‘Theme my login’ plugin installed where in the ‘Moderation’ part I have chosen not to send the email verification.Pascal.
Goede morgen mvaneijgen,
If you’re into coding, I suppose you will have to start from the topic post_date and compare it with the date of today.
Pascal.
In reply to: Auto SubscribeHi kamenlee,
First of all, you can refer to https://bbpress.org/forums/topic/new-users-auto-subscribe-to-one-forum/ if you know how to code and try from there to automate.
Otherwise you can start with this plugin and perform it manually if somebody registers to your site (if your userbase is not that big) : https://wordpress.org/plugins/bbp-manage-subscriptions/ . The ‘automation’ and ‘bulk options’ are not yet there but should hopefully come in some weeks.
Pascal.
In reply to: Forum Post IDHi aycreative,
As Robkk asked, please explain a bit better what you want to obtain.A lot is happening in wordpress and bbpress, so post IDs are growing all the time. Every post, page, revision, email sent, topic, reply, … takes the next number. This means that adding 2 topics with 5 minutes in between could result is an increase of post ID of tens or hundreds because of things happening in wordpress.
Pascal.
In reply to: You must be logged in to reply to this topicHi mica123,
Keep us aligned if your provider comes up with a solution. I have received your email and tomorrow evening I should have some time to check.
Pascal.In reply to: Bulk-move bbPress topicsVery first version of my plugin uploaded in the WP queue today. Will report here when you can start testing.
In reply to: Bulk-move bbPress topicsFor this ticket, I have the logic on paper what is needed and part of the code already in one of my projects. But need to finish some stuff for the association first.
For the participation part, I’m helping in the forum and will stick to that for now. But any bbPress developer can have a look at my code of course to get inspiration π
But we can have a chat about it, no problem.
Pascal.In reply to: Strange cache issues (in profile and topic count)Hi,
Just so you don’t feel lonely, it seems similar to https://bbpress.org/forums/topic/you-must-be-logged-in-to-reply-to-this-topic/ that I’m trying to understand …You are not on CloudFare, are you ?
Pascal.
In reply to: UserHola Sole29,
I must admit I don’t know Private Content, but from what I can read on their website, they have a ‘wordpress user system sync’. This should sync the users to wordpress.
Once they are wordpress users, you can grant them rights for bbPress.
That would be my way to go…I would propose to check with Private Content, because I fear it has to come from that side.
Pascal.
In reply to: You must be logged in to reply to this topicOK, so it’s most probably on the server. I can try to have a quick look this weekend because I’m very curious about this one. If you want me to check there, could you send me the URL of the site and some credentials ? Check my email on http://casier.eu/wp-dev/
Pascal.
In reply to: You must be logged in to reply to this topicDo you have any other users with multiple roles with the same issue? Or are you the only one?
In reply to: Remove NoFollow from BBPress PostsHi @devyncjohnson,
I see nofollow adding for bbpress on the following places:
– line 344 of wp-content/plugins/bbpress/includes/core/functions.php
– line 1703 of wp-content/plugins/bbpress/includes/replies/template.phpAlso check:
– line 298 of wp-content/plugins/bbpress/includes/common/formatting.phpMaybe you will find what you look for.
Pascal.Glad it worked. I would rerun the forum reset to make sure your environment is working fine and cleaned correctly before restarting another import.
Pascal.If it’s really not working anymore, you could delete directly forums, topics and replies from the DB and then run the reset again.
USE WITH CAUTION
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')
USE WITH CAUTION
First of all, a good database/site backup is always a starting point of course.
Then I suppose you followed the steps for the data cleanup here: https://codex.bbpress.org/getting-started/installing-bbpress/deleting-bbpress/ ?Is your WordPress still working fine since the cleanup that ‘failed’ ?
Pascal.
Hi Barbara,
First principle: test before going live !
I have my own procedure on cleaning bbPress in case of failure, but let me check if there is an official one. @Robkk any ideas ?
Pascal.
Hi Barbara,
Is this a life system ? Did it work correctly in your test environment ?
What version of bbPress and WordPress are you using ?
How many lines are you talking about ?Pascal.
In reply to: Check Text color in Post BoxHi David, welcome back π
I suppose some CSS could help, something like the below to change background and writing colors.
textarea.bbp-the-content.wp-editor-area {
background-color: #ffffff;
color: #000000;
}In reply to: Count topics with specific tagHi,
If it can help, check shortcodes. The 2nd one could be your starting point:
[bbp-topic-tags] β Display a tag cloud of all topic tags.
[bbp-single-tag id=$tag_id] β Display a list of all topics associated with a specific tag. eg. [bbp-single-tag id=64]See https://codex.bbpress.org/features/shortcodes/
Pascal.