Search Results for '+.+default+.+'
-
Search Results
-
I have done a lot of searching on this topic, and it seems that everyone wants to get rid of duplicate post titles. Apparently this is something bbPress now does by default (blocking posts with the same title).
We, however, need to allow them, because we have posts on the same topics that are only separated by time. It’s become very frustrating, with people having to put junk characters in their titles just to get a post to work, and never knowing which ones are going to work.
Is it possible to allow a forum to contain separate threads with the same title?
(We have not changed the default bbPress settings with regard to url slugs and so forth.)
Hi,
I’m a newbie bbPress user. I want to make internal links dofollow in Forum and all External links are nofollow. By default, All internal and external links are nofollow 🙁
How can I do this?
Here is my forum link http://www.techmanik.com/forum/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.

