Search Results for 'code'
-
Search Results
-
I’m confused by the logic in this system, and it’s likely because I don’t know what I’m doing.
I have a page titled, “Team Discussions” with the shortcode
[bbp-forum-index]in the editor.On the Forum Settings page, are the following settings:
Forum Root Slug > Forum Root = forums
Single Forum Slugs > Forum = forum
I have a site-wide navigation menu link from that same Team Discussions page (http://…/team-discussions/”. When I click on it, this takes me to a page that shows the forum index. Awesome!
But when in a sub forum for example, “Closing the Sale” (http://…/forums/forum/closing-sale/), and I click on the breadcrumb, “Home, Forums” specifically “Forums,” it redirects to a page URL of http://…/forums/”.
What am I doing wrong?
I was removing the BBPRESS plugin from my wordpress install, following these instructions:
But after I deleted, the screen locked up, and now my website will not load.
Please try http://www.kambocleanse.com
Can anybody help me – can pay $$$ to get my site back up.
Thanks
Simon
inbox@simon-scott.comHello all, I’m using WordPress 8.0 and bbPress2.5.13.
I have added this function to add the visual tab to the editor:
function enable_visual_editor( $args = array() ) { $args['tinymce'] = true; return $args; } add_filter( 'bbp_after_get_the_content_parse_args', 'enable_visual_editor' );When I signed in as admin is everything OK, the editor tab is selected by default and I can start to type. However, when I do as a participant no tabs are selected and I have to select one of them in order to start to type. This is not intuitive at all for participants that want to write a post in the forum and eventually they will leave.
Why is happening that? Can anyone give me support? Thank you in advance 🙂
Topic: group forum slug
Hi,
I am trying to change the group forum slug. E.g.
from
‘mysite.com/groups/mygroup/forum’
to
‘mysite.com/groups/mygroup/discussion’I am using this code:
function gi_rename_group_slug() { global $bp; if (isset($bp->groups->current_group->slug) && $bp->groups->current_group->slug == $bp->current_item) { $bp->bp_options_nav[$bp->groups->current_group->slug]['forum']['slug'] = 'discussion'; } } add_action('bp_init', 'gi_rename_group_slug');Unfortunately, nothing happens. What is the error? Thanks in advance.
—-
WP 4.8
bbpress 2.5.12