Search Results for '+.+default+.+'
-
Search Results
-
I have several bbPress forums in my WordPress site and I want to use a bbPress Forum List to show only certain forums. By default it shows all forums, but I just want to show a specific one or two in the Forum List. Any ideas on how to do this? Thanks in advance!
Wordpress version: 4.5.2
bbPress version: 2.5.9Topic: User Profile Fields
I am assessing installing this for a client and am new to bbpress, but have 9 years with WordPress.
What default user profile fields come with the basic single site installation of bbpress, and how customizable are they.
Specifically, my clients wants to have name, company and a question answered (i.e. why are you here). And no other fields other than what is desired.
And are their options to require fields if so desired?
And as a side question: Is there any recommendation or advice on whether to install this in a client’s existing website or duplicate their theme and install that theme with WordPress and bbpress on a subdomain and have the forum there?
Thanks so much,
David
Hi,
I just installed on a test domain WordPress, bbPress and WPML. All are updated to the latest versions. I don’t use any other plugins and the theme is also the default one, Twenty Sixteen.
I setup 2 languages: german as default and english. So the URLs are like this.
website.com
website.com/enI posted some topics in bbPress in both languages and I can see them per language, which is what I want. On the german version I see only the german posts and on the english version I see only the english post.
Of course, a problem may be with the bbPress slugs settings. I cannot translate them but I can live with them.
What I noticed is that when I go to profile and try to see the “Topics Started”, “Favorites” and “Subscriptions”, I see only a message that I don’t have any of those, although on the main Profile page shows that I have started 11 topics.
That might be also a problem because it counts the topics from both languages. But I can live with that also, for the moment.
I switched the languages and I made english default. After doing this, everything worked fine in english but not anymore in german, because german became the second language.
Basically, I can see the “Topics Started”, “Favorites” and “Subscriptions” only for the default language.
Only “Replies Created” show up for both languages.
I also attached some screenshots.
I also changed the theme from Twenty Sixteen to Twenty Fifteen and also Twenty Fourteen. Same problem.
I setup another test website as WP Multisite, without WPML and everything works properly. I had to install another plugin to connect both languages. But I would like to use WPML and a single website, if this is possible.
I hope there is a fix for this. bbPress is the most used forum and WPML should be able to handle it.
Thank you very much for your time.
Best Regards,
AlinHi,
I, attempting to import user posts, topics, replies, etc. from IPB to bbPress.
The importer seems to be working, but eventually seems to die logging a lot of ——————
to the end of log on the importer display.I imported the users on the 1st pass, then reset the rest back to default and started again. I’ve tried a few passes adjusting the batch size or rows processed, first decreasing the size in case it was a memory issue, and have now run a couple passes with increasing batch size. At first I was getting topics, but not replies, once I increased the batch size from the default it made it through the topics and started on the replies, but again finished short of all the replies logging a screens worth of hyphen characters. This seems to be after 24-36 hours of run time, so I am not sure if I am running across some sort of session expiration or what.
Is it possible to re-run an import, picking off where it left off? I assumed not as it does not seem to do anything unless I do reset forums between attempts, but thought I would check as the start over option seems to indicate you can run it again without starting fresh.
Any ideas what is happening when the display starts logging ——– , or any other place I should be checking for an indicator of what the problem might be?
Hi all,
I hope you can help me. I am trying to create and attach a bbp forum automatically after a BuddyPress group is created.
I have “unset” the BuddyPress group creation steps, and only the “group settings” step remains.
I have been digging in bbp code to try to reproduce the forum creation process, and this is what I put together (though it is not working):
<?php $bbpforum = new BBP_Forums_Group_Extension; ?>
<?php $bbpforum->__construct(); ?><!-- Reproducing parts of public edit_screen() -->
<!-- Reproducing fieldset return -->
<?php $_POST['bbp-edit-group-forum'] = true; ?> <!-- this comes from the edit screen; this form field is sent -->
<!-- end of fieldset return -->
<!-- start of edit_screen_save -->
<?php
if ( empty( $group_id ) ) {
$group_id = bp_get_new_group_id();
}$create_forum = true; // Changed this to true (there was a switch structure down and I kept the true case only
$forum_id = 0;
$forum_ids = bbp_get_group_forum_ids( $group_id );if ( !empty( $forum_ids ) )
$forum_id = (int) is_array( $forum_ids ) ? $forum_ids[0] : $forum_ids;// Set the default forum status
$status = bbp_get_public_status_id();
// Create the initial forum
$forum_id = bbp_insert_forum( array(
'post_parent' => bbp_get_group_forums_root_id(),
'post_title' => bp_get_new_group_name(),
'post_content' => bp_get_new_group_description(),
'post_status' => $status
) );// Run the BP-specific functions for new groups
$bbpforum->new_forum( array( 'forum_id' => $forum_id ) );// Update forum active
groups_update_groupmeta( bp_get_new_group_id(), '_bbp_forum_enabled_' . $forum_id, true );// Toggle forum on
$bbpforum->toggle_group_forum( bp_get_new_group_id(), true );?>
It is placed in create.php, right after the create group form submission entry.
As you see, I have erased the wp_nonce_field functions and the associated admin_referrer functions to avoid the “Are you sure you want to do this?” screen.
If it is not clear, please, let me know what else would be needed to try get the automatic forum, and of course, if you know a better and easier way of doing it.
Thank you very much!
Hi, Can you please advise how to extend the Vbulletin importer.
I know the fields i want to get and where i want them to go. but i am unsure how to add this to the import routine.
Example is to get from vbulletin the user signature (which is a simple lookup to sigparsed field in the db by userid) and insert that into an xprofile field for that user.
Secondly i ahd an issue importing which i believe was because the mycred plugin adds fields to the user table. It might be worth adding some validation of the user fields as the insert is hardcoded with the default fields.
I’m running a WP multisite with bbPress installed on the main site. When new users create accounts on the network, they are assigned a role of Participant, both in the network and for the main site. If they chose only to create a user account and not a site, once they have logged out after their first login, they are unable to log into their profile pages. It seems the default user role of Participant is not recognized as having any privileges by the WP software. When I manually change the user’s role to Subscriber, they can then log in to their profile page. Obviously this is not a long-term solution, so is there any way to revert to WP’s native functionality of making new users subscribers by default while having bbPress installed?
The permissions system that comes with bbpress is god damn awful. I strongly suggest someone take a look at making it a bit better.
I’m trying my best her to set up some kind of permissions for the different parts of the forums on my page.
It’s damn near impossible to get it working.
I read up on these forums and saw that some other poor bastard got suggested that the plugin members might help him set up permissions. That is not the case because that pluggin hasn’t got premission to alter the roles set by bbpress.
And if you make new roles it really doesn’t matter because you cannot select any other roles but the ones created by bbpress on registration.If i try to use the permissions set by bbpress there is problems. If i set “Spectator” as the default role on sign-up applicats will not have access to the private forums! GREAT! Yes but user in that role cannot make posts anywhere on the forums.
If i put “participant” as the default role on sign-up applicats can make posts on the forum but they also have access to the private forums.
Holy shit this is a mess!!!
I want the default role to be able to make posts but not able to read private forums.
Then i want to be able to update applicats that are aproved to “member” and give them access to private forums!
And then I would like to have a role called, lets say Officers and when upgraded to officer you can access the hidden forums.
HOW ON GODS GREEN EARTH DO I ACHIEVE THIS? And don’t tell me to install the members plugin because that pluggin CANNOT alter the bbpress roles and you cannot set anything else but the bbpress roles as default on signups!
Topic: Customize homepage-title
Hi,
In the bbpress index page, the top row shows:
homepage-title > Forums > Forum-title
How could I change homepage-title here? bbpress seems to take this from the title of the site’s default page. Is there a way to put a different text there (or remove the homepage-title altogether)?
Thanks,
//Györgywordpress 4.4.2 , bbpress 2.5.8, site http://szuloiosszefogas.hu