Search Results for 'code'
-
AuthorSearch Results
-
August 17, 2020 at 11:53 am #213788
In reply to: How to make roles (bbPresss)
Robin W
Moderatorso what code are you using ?
August 17, 2020 at 11:52 am #213787Robin W
Moderatorare the min files copied from elsewhere? or did you create the code?
August 17, 2020 at 11:49 am #213786In reply to: new users automatically are forum administrator
Robin W
Moderatorsomething strange going on!
I can only suggest it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentyfifteen, 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.
Then come back
I’d start by taking out any code in your child theme’s functions file !
August 17, 2020 at 11:47 am #213785Robin W
Moderatornot sure why you need the second bit of code?
August 17, 2020 at 11:46 am #213784Robin W
Moderatorif it works, code looks fine, but I haven’t looked at in detail 🙂
August 17, 2020 at 8:14 am #213778p3t3rr
ParticipantHi Robin,
thank you for your reply. The code in that resource isn’t quite satisfactory but it gave me a head start.
I came up with the following function to disable the wp toolbar:
// disable wp toolbar on the frontend of website for role:'subscriber' function disable_admin_bar() { if (current_user_can( 'subscriber' ) ) { show_admin_bar( false ); } } add_action( 'after_setup_theme', 'disable_admin_bar' );and the following to disable wp-admin:
// not allow access to wp-admin backend for role:'subscriber' function sub_no_read_wpadmin(){ $role = get_role( 'subscriber' ); $role->remove_cap( 'read' ); } add_action( 'admin_init', 'sub_no_read_wpadmin' );Hopefully this is sound. Do you see any problems with this implementation?
August 16, 2020 at 5:29 pm #213752In reply to: Indent forums
Chuckie
ParticipantDo you really have two
::in your CSS file? There should be one.August 16, 2020 at 12:15 pm #213744In reply to: Theme Page Title contains “bbPress Forums”
Robin W
Moderatorput this in the custom css part of your theme
.archive-description { display : none !important ; }Mushlih Almubarak
ParticipantHi
What I want to get rid of is the one marked with the arrow (which I underlined) in the image: https://prnt.sc/u0h1vn, not what I gave sign (x)
And your code changes to writing that I marked (x)Robin W
Moderatorit should work, try
add_filter( 'bbp_get_forum_archive_title', 'tcv_forum'); function tcv_forum () { return 'forum-diskusi' ; }Mushlih Almubarak
ParticipantHi
Thank you for giving the code
But you don’t seem to understand what I mean
Your code omits “Diskusi” instead of “Arsip”
What I want is to remove the words “Arsip” at the top (not on the page), not to remove the words “Diskusi”
How to solve it?
Thank youRobin W
ModeratorPut this in your child theme’s function file –
ie wp-content/themes/%your-theme-name%/functions.php
where %your-theme-name% is the name of your theme
or use
add_filter( 'bbp_get_forum_archive_title', 'tcv_forum'); function tcv_forum () { Return 'Forum' ; }August 15, 2020 at 10:47 am #213717p3t3rr
ParticipantHi there,
I am currently setting up a bbpress forum. This is why I post a view threads atm because I have questions. Hopefully, it’s not perceived as spam.
I know that this is not a bbpress issue, more of a wordpress thing in general. However, I guess that most bbpress developers/admins have solved this issue – therefore I ask it here.
I want to disable access to wordpress admin dashboard for all normal forum participants (role: subscriber/participant).
I have done some searching and found that it could be achieved through the following custom php.
disable wp-admin:
// redirect back to homepage and not allow access to wp backend for subscribers function rkk_redirect_admin(){ if ( ! wp_doing_ajax() && ! current_user_can( 'edit_posts' ) ) { wp_redirect( site_url() ); exit; } } add_action( 'admin_init', 'rkk_redirect_admin' );disable wp admin toolbar:
// disable wp toolbar on the frontend of website for subscribers function rkk_disable_admin_bar() { if( ! current_user_can('edit_posts') ) add_filter('show_admin_bar', '__return_false'); } add_action( 'after_setup_theme', 'rkk_disable_admin_bar' );I included that code in functions.php of childtheme. However, it does not seem to have an effect. Subscriber can still access wp-admin and can see the wp toolbar in the front end.
Anybody have a good solution for this? I don’t want to use an extra plugin for that.
thank you for helping. best regards, peter
August 15, 2020 at 7:37 am #213710Topic: forum sidebar not displayed on all bbpress pages
in forum Troubleshootingp3t3rr
ParticipantHi,
I want to display a forum specific sidebar on all bbp pages. For this I include the desired widgets in design > widgets > Forum. The sidebar is correctly shown on many bbpress pages, but not all. For example the forum index page and the bbpress profile page (‘/forum/user-base/username/’) does not have the sidebar.
How can I have the sidebar (named ‘Forum’) display on those pages as well? I am looking for a little php function which I can include in the child theme functions.php. I am using the Enfold theme which generally seems to work very well with bbpress.
I had the same problem when I was experimenting with buddypress (I decided to not use buddypress though). To have the sidebar displayed on all buddypress pages we came up with the following working function:
//custom forum sidebar on buddypress pages add_filter('avf_custom_sidebar','avf_custom_sidebar_mod'); function avf_custom_sidebar_mod($sidebar) { if ( bp_current_component() ) { $sidebar = "Forum"; } return $sidebar; }Can this function be adjusted to work with bbpress? I thought maybe just change the if condition to
if ( bbp_loaded() ). But it does not seem to work.Any help would be greatly appreciated. Best regards, peter
August 14, 2020 at 5:05 am #213692Topic: Image at left of forum
in forum Requests & Feedbackvorahasti
ParticipantI want image to be displayed in left of forum title. Any code that I can add to snippet?
August 12, 2020 at 5:25 pm #213658In reply to: CSS Selector for BBpress forum pages
Robin W
Moderator#bbpress-forumsis the ID for forums – suggest you ask here on how to hide breadcrumbAugust 12, 2020 at 2:34 pm #213651Topic: CSS Selector for BBpress forum pages
in forum Pluginssab
ParticipantHello,
I would like to select with CSS selector for BBpress forum pages to hide Breadcrumb NavXT.
Is there a CSS code ?
THanks for your help.August 12, 2020 at 12:15 pm #213648Topic: Embed Forum – subscribe not working
in forum Troubleshootingfranckc2
ParticipantHi I have embedded a forum into a WP page with the shortcode.
Displaying and browsing the forum works as it should but when I clik on the “subscribe” button, the page reloads and I’m not subscribe for alerts on that forum.
Seems to be doing that only when I embed the forum in another page.
If I go directly to the forum, then the button works.
Looks like something with the “rewrite” string or something like that.Any clue how I could fix that ?
August 12, 2020 at 12:13 pm #213647In reply to: Sort topics in a Forum
Robin W
ModeratorPut this in your child theme’s function file –
ie wp-content/themes/%your-theme-name%/functions.php
where %your-theme-name% is the name of your theme
or use
add_filter('bbp_has_replies_query', 'rew_modify_replies_query'); function rew_modify_replies_query($bbp_r) { $bbp_r['order'] = 'DESC'; return $bbp_r; } add_filter('bbp_show_lead_topic', 'rew_show_lead_topic'); function rew_show_lead_topic () { return true ; }August 12, 2020 at 9:10 am #213643In reply to: Sort topics in a Forum
vorahasti
ParticipantI have to sort topics and replies in bbpress forum changing code how can I do it?
August 11, 2020 at 2:25 pm #213626franckc2
ParticipantHi I think i have the exact same problem.
What I notice is when a forum is embedded in another page throught either a URL or SHORTCODE.
The subscribe button simply does not work.When I got directly at the forum, the button works.
Is it the same for you ?
August 8, 2020 at 11:52 am #213529In reply to: Center align IMGUR images
Chuckie
ParticipantThanks. I tend to stick with the visual TinyMCE editor rather than the text editor because toggling the editors messes up my code example snippets.
August 8, 2020 at 11:48 am #213528In reply to: Center align IMGUR images
Mike Witt
ParticipantThis worked for me:
<center> <img src="https://i.imgur.com/W6QaJvk.jpeg" width=216 height=298> </center>August 7, 2020 at 7:15 pm #213520In reply to: last topic/comment
Mike Witt
Participant@2cats, just out of curiosity is it the mechanics of putting in the patch that you’re uncomfortable with. Or it it the fact that you (or your clients) would then have to deal with the patched code when updates happen.
Also I’m assuming that you’re aware of the plug-in mentioned above that fixes some of the current bbPress bugs.
Clearly the bbPress developers (who donate their time) can only do so much. But I too am curious how the priorities are set. BuddyPress recently ran a survey asking users about their priorities. I wonder if there is something like this in the works for bbPress. Sometimes I also wonder about the feasibility of a group of users with specific needs *hiring* a bbPress developer to make certain fixes and integrate them into the build. But these are just random thoughts of someone who doesn’t really know much about how these things work.
August 7, 2020 at 11:01 am #213513In reply to: Sticky post duplicated on all forums
Robin W
Moderatortopics can be ‘sticky’ or ‘super-sticky’
sticky posts go at the top of their forum
Super sticky posts go at the top of every forumsounds like your topics are becoming super sticky
you can look at these in then backend
dashboard>topics>edit topics and select topic > topic attributes on top right hand side> Type
they can also be set in front end
where in the topic they show in admin as
stick (to front)if you click the ‘stick’ then it is sticky, if you click the ‘(to front)’ it becomes super-sticky which is very easy to do by mistake.
on relationships, bbpress uses wordpress ‘post-parent’
so a reply has a post parent of the topic it belongs to
a topic has a post parent of the forum it belongs to
and a forum has a post parent of a forum if it is a sub forum, or a category if it belongs to a categoryThese relationships are also stored in the post_meta table
details on ‘children’ are not kept – for instance displaying topics is done by a function called bbp_has_topics which selects topics where the post_parent is the forum concerned. bbp_has_relies has a similar serach for replies where the post_parent is the topic concerned.
-
AuthorSearch Results