Forum Replies Created
-
In reply to: Forum full width
ok, cannot see the problem, please provide a link to a specific example
In reply to: Change permissions for postingIn reply to: First post of topics disappeared!That’s hopeful, and yes please keep us updated ๐
In reply to: Best profile plugin?best I can offer is
In reply to: Topics not showingno problem ๐
In reply to: Topics not showingIf you are on cloudfare, this thread is relevant
In reply to: Feasibility questionsso to answer (or not!) your questions
by default the forum page is /forums you can amend this by changing the slug in dashboard>settings>forums or by using a page with a shortcode – see
No idea what ‘ Hearthpwnโs deck builder to query Hearthstoneโs card API ‘ means so cannot answer, but in terms of customization, then try this additional plugin, which has a ton of customizations in it.
bbpress just uses the WordPress user account, and there is no way to detach this. But bbpress has a whole set of roles of it’s own, so if you set the user WordPress role to ‘no role for this site’, you pretty much achieve the same thing.
In reply to: Forum displayok that seems to be an entirely different question, and beyond free help – sorry !
In reply to: Forum display[bbp-single-forum id=$forum_id]
where $forum_id is the id of the forum.
You can find the forum ID by going to
dashboard>forums>edit forum and when editing you will see this in the url
wp-admin/post.php?post=1245&action=edit
so in this example 1245 is the forum ID
In reply to: Can you make a role to subscribe a forum?this should do it
$list = get_users(); if (empty (get_option ('rew_done'))) { foreach ($list as $user) { $user_id = $user->ID ; $role = bbp_get_user_role( $user_id ); if ($role == 'bbp_moderator') { $forum_id = 3 ; bbp_add_user_forum_subscription( $user_id, $forum_id ) ; } } update_option ('rew_done' , 'done' ) ;
}
In reply to: Is bbPress abandonned or OK for new projects?so will you tube videos embed everytime on a post using blocks?
In reply to: Forum displaytoy want to use either the
[bbp-forum-index]
or
[bbp-single-forum id=$forum_id]
shortcodes
In reply to: Is bbPress abandonned or OK for new projects?that’s almost certainly the ‘blocks everywhere’ plugin.
I don’t personally like blocks for forums, my logic is that most people (who don’t admin WordPress sites) are entirely unfamiliar with the concept of blocks, and they are far from intuitive to use.
I much prefer the tinyMCE editor in either limited or full form.
But it’s personal preference ๐ ๐
In reply to: Search form and widgetwhat theme are you using ?
In reply to: Topics Archive doesnt show any Topics WPMLlink to an example please?
In reply to: Automatically creating thread for each course usertotally possible, but well beyond free help I’m afraid ๐
In reply to: Search form and widgetthanks
search should just look at the forums, but other elements such as themes or other plugins can change that.
As a test switch to a default theme such as twentytwenty, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users
Then come back
the appearance>widgets that you showed are not widgets but sidebars that contain widgets – there is no bbpress sidebar.
just tried it on your site, all went fine and am now registered on your site.
In reply to: No “Move Topic” option in bbpress admin?Thanks, that saved a couple of hours of my life ๐ ๐
In reply to: No “Move Topic” option in bbpress admin?it moves easily in the backend.
but agree would be good to have in the front end – I’ll take a look
In reply to: Search form and widgetWhen a specific keyword is searched for in the search form, it searches across all pages on the site. How can I set it up so that it only searches within the forum?
is this the forum search widget – if so link to a live example please
Also, the widget for bbPress is not visible in the widget area. How can I set it up to be visible?
please explain which widget you mean
In reply to: Stealing bbPress toolbarIf you get it working, do post back your solution
In reply to: Stealing bbPress toolbarok that is not a tweaked WordPress toolbar, just a ‘look alike’
the code would be somewhere in here
But it would take ages to find it, so sorry not sure I can help
great – glad you are fixed !!
try this
.single-topic .navigation { display : none !important; }
add this to the custom css in my plugin or your theme’s custom css area