Forum Replies Created
-
In reply to: Where is the link to the reply in the bbPress code?
dashboard>settings>permalink
most use postname
In reply to: redirect user edit profile to custom pagegreat – glad you are fixed
sorry it does what it does 🙂
In reply to: Replies not showing with CSVprobably this
should do what you want 🙂
where is the author gender or signature stored, or do you wish users to be able to add that as well?
In reply to: Hide Forums / forums page from public BBPressgreat – glad you are fixed
In reply to: Replies not showing with CSVthat’s like saying that because you manage to install the car engine, the car must start.
I repeat it is highly likely that the issue is with the meta data, but it is beyond free help
In reply to: Replies not showing with CSVthat was from 6 years ago, was someone trying to help another user out, and it looks like it no longer works.
In reply to: Replies not showing with CSVno I can’t – you would need code to create the ability to upload a csv file into bbpress – and that is beyond free help
In reply to: Replies not showing with CSVok, so you haven’t imported the meta data.
each topic and reply has both post data and post meta data, without both it will not work.
In reply to: Replies not showing with CSVnot unless you can describe how the csv file was created, and how you uploaded it to the site
In reply to: Hide Forums / forums page from public BBPressso are the forums set as private ?
In reply to: Replies not showing with CSVsorry, I don’t know what you were uploading from where and how
In reply to: Thema Counter not Workinggreat – glad you are fixed
In reply to: Nested replies in embedded topicgreat – glad you are fixed !
In reply to: redirect user edit profile to custom pagenewer versions of php no longer like that code – use this
add_filter( 'bbp_get_user_edit_profile_url', 'rew_redirect'); function rew_redirect () { $url = 'https://www.facebook.com/' ; return $url ; }
In reply to: Replies not showing with CSVdon’t like the look of the trashed ending of the url, but this is a site specific issue, and not sure what we can do to fix.
In reply to: Thema Counter not Workingstart with
dashboard>tools>forums>repair forums and run one at a time.
If that doesn’t fix, or it starts happening again then
once activated go to
dashboard>settings>bbp style pack>big fixes
and tick the fix last active time
In reply to: Nested replies in embedded topictry adding
once activated go to
dashboard>settings>bbp style pack>bug fixes and tick the threaded replies box
let me know if this works
In reply to: Replies not showing with CSVok, go into
dashboard>replies>edit reply and go into a reply that is not showing, and juts click save.
Then see if it shows
then come back
In reply to: Replies not showing with CSVtry
dashboard>settings>permalinks and just click save – this resets them
come back if that doesn’t work
In reply to: One Off Identities or Posting As Multiple UsersI did some thinking around this last night.
Basically bbpress looks for an author ID in the posts table.
Now there’s a hook in the topic/reply handlers (topic for topics, reply for replies, so they mirror) after a topic/reply is created.
do_action( ‘bbp_new_reply_post_extras’, $reply_id );
so if each of your characters has a WordPress user ID, then you could just hook to this, and change the post author to the worpress user ID.
so say
add_action ('bbp_new_reply_post_extras' , 'your function') ; function your_function ($reply_id) { $id = [either use the $_POST if still available and maybe have the value as the WordPress user ID , or get_post_meta for d20_character in the reply_id and do a look up to translate value to WordPress user ID] $my_post = array( 'ID' =>$reply_id, 'post_author' => $id, ); // Update the post into the database wp_update_post( $my_post ); }
that way each topic/reply has a real author that happens to be your character chosen in the topic/reply form.
that would save a ton of coding in the output, and risk of missing one and exposing the real user.In reply to: One Off Identities or Posting As Multiple Usersgreat – do come back of you need odd bits of help, and yes please a solution if you get there is always great to have