Search Results for ' . default . '
-
Search Results
-
So we have the login/register widget.
– User clicks Register
– It then shows the custom Register page
– Fill in detailsWhen a user clicks the “Register” button it then takes you to the default wordpress login page with a small message in the middle saying the registration is complete and to check email.
This is confusing to the user and provides an inconsistent experience. Is it possible in any way to either redirect them to another custom page with the “results” or display it on our page own register page?
Is it possible to download or install the same or similar code as this bbpress support form layout has? I like the layout, and would like to incorporate it on my site. Not sure if this is a possibility? Thanks.
So in the forums page I have changed to a different sidebar to reflect options for the forums, works. However, when you click on an action forum topic, I.E. General, the sidebar reverts to the default one. I have no clue where to find where these pages are being made, nor I have no clue as to why these would not be considered child pages since they are being created off the forums page.
Hi,
I attempted to create some new bbp roles using the code in the codex to copy the ‘participant’ role. Unfortunately this did not work for me despite deactivating all plugins (seems quite a few other people had the same issue).
Instead I am using User Role Editor to create a new forum role, which I have called ‘bosun’. Upon sign-up a new user is correctly assigned this role and has the capabilities of a participant, which is great, but their forum role is still displaying as ‘spectator’.
I would like to display the user’s role under the avatar.
One thing I can do is display:none the div class bbp-author-role and then add in a new div to display the user_role, which I think is what URE plugin generates.
I appreciate that some of this has to do with the URE plugin and that it is not supported here. What I am trying to understand is what I need to change in order to hide the bbp-author-role div and add in a new div calling the URE role. I can only find references to bbp-author-role in templates.php which is a function:
function bbp_topic_author_role( $args = array() ) { echo bbp_get_topic_author_role( $args ); } /** * Return the topic author role * * @since bbPress (r3860) * * @param array $args Optional. * @uses bbp_get_topic_id() To get the topic id * @uses bbp_get_user_display_role() To get the user display role * @uses bbp_get_topic_author_id() To get the topic author id * @uses apply_filters() Calls bbp_get_topic_author_role with the author * role & args * @return string topic author role */ function bbp_get_topic_author_role( $args = array() ) { // Parse arguments against default values $r = bbp_parse_args( $args, array( 'topic_id' => 0, 'class' => 'bbp-author-role', 'before' => '', 'after' => '' ), 'get_topic_author_role' ); $topic_id = bbp_get_topic_id( $r['topic_id'] ); $role = bbp_get_user_display_role( bbp_get_topic_author_id( $topic_id ) ); $author_role = sprintf( '%1$s<div class="%2$s">%3$s</div>%4$s', $r['before'], $r['class'], $role, $r['after'] ); return apply_filters( 'bbp_get_topic_author_role', $author_role, $r ); }Hey guys
This is probably due to my theme, but the default install of the forum at the url /forums displays the forum on a page with the title “Archives” and the layout is broken, ugly, full width etc.

Following another suggestion on this forum, I created a forum holding page at the url /forum and used the shortcode [bbp-forum-index] to embed the forum in this page, and it looks great.

However, when any forum link is clicked, you’re taken to a page with the starting slug of /forums and the ugly layout again. How do I keep the forum within the nice page layout?
In the Settings I have:
Forum root: forums
Forum prefix: unchecked
Forum root should show: Forum Index
Single forum slugs / Forum: forumIf I change the forum root to /forum that overrides the custom page I set up and I’m back to the ugly layout again.
What’s the best way around this?
Many thanks in advance.
Hi there,
I’m a fresh out of water BBPress user and I have never coded in my life 🙂
We have just set up a BBPress forum on our WordPress website and we are looking into changing what is displayed in the profile section. At the moment it’s Forum Role, Topics Started and Replies Created.
I would like to create custom fields like Company, Job Title, Area, Email, Phone Number and Website to be displayed there.First of all, I would need to add these sections in Profile Edit tab. Secondly, find a way to display them on the Profile page.
I have to mention, I have found a way to remove Forum Role, Topics Started and Replies Created by editing plugin file bbpress/templates/default/bbpress/user-profile.php
Also, I have just noticed that when you visit somebody’s profile page, his name is not displayed there, which would be something i would like to be displayed as well 🙂
Have anyone managed to do things mentioned above, and would be willing to share with the class? 🙂
Many thanks,
DominikTopic: Where Do I Put This?
WORDPRESS VERSION [Last checked on September 18, 2019 at 9:48 am. Check Again
You have the latest version of WordPress. Future security updates will be applied automatically.]
BBPRESS VERSION: 2.5.14TWENTYNINETEEN
I am using the bbpress [forum] plugin.
I do not want to use it in its default state. I want to have it maintain my site’s design.
According to what I have read [HERE; https://codex.bbpress.org/themes/theme-compatibility/ ]to do so requires me to copy both the bbpress and the css directories
from the default folder and paste it or upload
it into the ‘theme’ directory/ folder.Thing is I am not quite sure if I ought to paste them [ bbpress & css directories] into the wp-config.php folder
& if so where [in the wp-config.php folder] ? Is it Before or after the present info I see there now?Topic: Breadcrumbs by default?
Hi there,
I’ve been trying to figure out how to implement breadcrumbs and haven’t found any conclusive answers.
Does bbPress come with breadcrumbs by default? I don’t want them on my main site, but do want them as nav on my forum.
Thanks