Search Results for '+.+default+.+'
-
AuthorSearch Results
-
March 19, 2015 at 9:57 am #159862
In reply to: Forum Reply freshness bug
Robin W
Moderatorit should show the last reply time
it could be a theme or plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.
Then come back
March 16, 2015 at 3:23 pm #159719In reply to: Forum topics not showing up :-(
Robin W
Moderatorprobably either a theme or plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.
Then come back
March 16, 2015 at 2:10 pm #159713Topic: Hide Private Forums from domain../forums
in forum Requests & Feedbackomicreative
ParticipantHidden forums are invisible by default on mydomain.com/forums
How can I hide PRIVATE forums on mydomain.com/forums
I don’t want to change any of the permissions. I access the private forums another way (buddypress groups and individual pages).
-or- alternatively
How do I make mydomain.com/forums only show PUBLIC forumsMarch 16, 2015 at 11:07 am #159705In reply to: Participant role can't edit own posts after update
Food Research Collaboration
ParticipantHi Robkk,
Thank you for the reply. I’ve tried all the default WordPress themes from Twenty Twelve from Twenty Fifteen and the problem is still there.
I have not edited the role permisssions, no.
Any ideas on what else I can do?March 14, 2015 at 1:51 pm #159634In reply to: Background Colors
Robin W
Moderatorwhere is the bbpress.css files located, you should be doing
•The “css” directory contains style sheets that work with the default markup. Copy any you want to modify into a directory named “css” in your theme’s root. eg. /wp-content/themes/%your-theme%/css/
March 13, 2015 at 2:33 pm #159598In reply to: New users given WP Admin status
Robin W
Moderatorjust to jump in here
bbporess 2.5.5
wordpress 4.1.1
Twentyten themeand no other plugins does not have this issue.
Therefoere it is likely to be a plugin or theme issue
as suggested by Robkk, suggest you
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.
Then come back
March 12, 2015 at 2:15 pm #159534crazedsanity
ParticipantIt looks like the code, by default, sends the message to “noreply@” followed by the domain, with all the intended recipients in the BCC field. I end up getting 3-6 bounces per message due to the “delayed” notifications. It thought it would go away after someone (else) had subscribed to the topic, but that is simply not the case.
The code needs to be only slightly more sophisticated:
1.) it should NOT send an email if there are no recipients (because… logic)
2.) the “from” address should be “noreply@<domain>” or otherwise configurableI’ll see if I can work up a patch if I’ve got sufficient free time (unlikely, but I’ll try). Anybody know the who/how/where of it?
March 12, 2015 at 1:08 pm #159531In reply to: Version: 2.5.5 not working more after the updates
awpt
ParticipantJust tried with default theme of wordpress but nothing
If some one tell me how to remove it from database I will reinstall bbpress but I cand find the tables too.I want to remove bbpress tables for a new fresh Installation But there is nothing about bbpress in my database and the forums with topics are there in site.com/forumsMarch 12, 2015 at 10:59 am #159526Topic: New users given WP Admin status
in forum Troubleshootingmadvibes
ParticipantHi. I have inherited a site using BBpress and there are some issues with new user registration. The forum settings are to give new registered users a Participant role, and my WP default is Subscriber for new users.
However, when somebody new registers for the forum, they are given full Admin access in wordpress. Obviously not something that is desirable.
I’m running the latest versions of both WP and BB. Please advise!
March 12, 2015 at 4:49 am #159518In reply to: Trying to make my plugin compatible
Robin W
ModeratorMost of the filters are held in the templates that are located as follows :
wp-content/plugins/bbpress/includes/forums/template.php
wp-content/plugins/bbpress/includes/topics/template.php
wp-content/plugins/bbpress/includes/replies/template.php
wp-content/plugins/bbpress/includes/users/template.php
wp-content/plugins/bbpress/includes/search/template.phpThere are two typically filters, one on the final function usually within the ‘return’, and one that mimics wordpress’s ‘before’ filters
from the docsNear the beginning of many functions we find :
// Parse arguments against default values $r = bbp_parse_args( $args, array( 'before' => '<ul class="bbp-forums-list">', 'after' => '', 'link_before' => '<li class="bbp-forum">', 'link_after' => '', 'count_before' => ' (', 'count_after' => ')', 'count_sep' => ', ', 'separator' => ', ', 'forum_id' => '', 'show_topic_count' => true, 'show_reply_count' => true, ), 'list_forums' );This is a common format throughout bbPress, and indeed is similar to a function used throughout wordpress.
It uses a function called
bbp_parse_argsto create a filter against all the arguments.The filter created is in the format
bbp_before_followed by X followed by_parse_argsThe X is the third argument from thebbp_parse_argsfunction – if you look at the code above you’ll see that it is actually
bbp_parse_args ($args, Array(...), 'list_forums' )so in the last line we see
list forumswhich is the X above . In practice this is the function without the bbp start bit.so an array filter for
bbp_list_forumsisbbp_before_list_forums_parse_args
and for saybbp_get_topic_paginationwould be
bbp_before_get_topic_pagination_parse_argsMarch 11, 2015 at 9:37 pm #159508In reply to: Email notifications not working; looking for help
Robkk
ModeratorIt could be a plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
you can also see if your theme is causing the issue but its probably more of a plugin issue..
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.
March 11, 2015 at 9:33 pm #159506In reply to: Remove forum navigation button – Highwind Theme
Robkk
Moderatorcreate a bbpress.php file and put it in your child theme , the default file bbPress is using has some extra code for post navigation that should be for blog posts.
you can also use CSS
#bbpress-forums .navigation-post { display:none; }March 11, 2015 at 9:22 pm #159505In reply to: Participant role can't edit own posts after update
Robkk
Moderatorswitch to a default theme like twentytwelve, twentyfifteen had some minor issues before
2012 is so simple thats why we recommend switching to it for troubleshooting.
other than that have you edited the role permissions somehow before??
March 11, 2015 at 9:21 pm #159504In reply to: Forum topics not showing up.
Robkk
ModeratorIt could be a plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
you can also see if your theme is causing the issue but its probably more of a plugin issue..
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.
if not come back
March 11, 2015 at 8:25 pm #159493In reply to: Version: 2.5.5 not working more after the updates
Robkk
ModeratorIt could be a plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
you can also see if your theme is causing the issue but its probably more of a plugin issue..
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.
March 11, 2015 at 8:17 pm #159491Robkk
Moderatortry switching to a default theme and see if the issue persists , if it doesnt contact your theme author for help.
March 11, 2015 at 8:14 pm #159490In reply to: How to add search bar and Breadcrumbs for Forum?
Robkk
Moderatortry this first
It could be a theme or plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.
if the issue is only happening when only avada is the current theme then contact avada for help putting it back.
March 11, 2015 at 8:07 pm #159488In reply to: Problem with noreply-email
Robkk
Moderatorthis should not be a problem with bbPress , but how you/something you installed changed the default from address that WordPress uses in the mail function.
by default its wordpress@(yoursite)
did you use a function/plugin to change the from address??
It could be a plugin issue
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
March 11, 2015 at 8:03 pm #159487In reply to: bbPress forums and user profile with evolve theme
Robkk
ModeratorIt could be a theme or plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.
if switching the theme does fix the issue , and its not a plugin issue then contact your theme author for help.
March 11, 2015 at 5:35 pm #159474Topic: Users unable to register and login
in forum Troubleshootingrbrynest
ParticipantWhenever a new user tries to register or login to my site, it just shows a white page with “blocked” written on it.
I am using bbPress forum plugin and have the “Allow anyone to register” checked.
My register page is using the register shotcode and as a login I use the (bbpress) login widget in a sidebar.
I have checked for conflicts by deactivated all plugins but bbpress and switched to the default twentytwelve theme to see if this fixes. Unfortunately with negative results.
Any idea what’s going on?
Register URL: http://www.oppfraavgrunnen.no/registrer-deg/
Login URL: http://www.oppfraavgrunnen.no/bbpress/Thanks in advice
Regards
RuneMarch 9, 2015 at 9:07 pm #159427In reply to: Modifying bbpress
Robkk
Moderatorfollow this guide here is part 1
part 2 is linked toward the very bottom
but you can create a blank page and have it use the same forum archive slug as you set in settings>forums.
for example create a page called Forums , the end slug should be the default /forums and it should lead you to your forum archive.
an alternative is to use the forum archive shortcode
[bbp-forum-index]
March 9, 2015 at 4:37 am #159394In reply to: Can't find
peter-hamilton
ParticipantAnd to find that file you need access to your server.
In your wp-content yhere is a folder called plugins, in there there is a folder called BBpress.
In the bbpress folder is a folder called templates, and in there a folder called default.
In that Default folder is another folder called bbpress, and that is the template folder where you can find the loop-single-reply that you can copy to your child’s bbpress folderMarch 8, 2015 at 5:02 pm #159367In reply to: less distance – left margin between threaded replies
dealtek
Participantok I found css in
templates/default/css/bbpress.css
March 8, 2015 at 10:56 am #159342In reply to: Activate the community bbpp
Robin W
Moderatorok, this could be lots of things, and part of what you mention is buddypress not bbpress.
so start with
and if you aren’t seeing forums/topics and replies in the back end then
It could be a theme or plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.
March 4, 2015 at 7:57 pm #159250In reply to: Email notifications not working; looking for help
skylarmb
ParticipantAfter some investigation, it appears my mailing provider (SendGrid) warns against using “noreply@yourdomain.com” as the sending email for many reasons and will drop your email if you do so. Apparently I missed this important point while setting up the service. I looked though the logs and found a bunch of these:

No wonder no one was getting their notifications!
Temporary fix (Warning! Hacking core files is bad, this is only for the desperate, like me, and will break as soon as you update the plugin):
“noreply@…” This is the default that bbPress uses to send its notifications from. I simply created a new email for the forums, “forums@mydomain.com” and set that as the “noreply” email address in bbpress/includes/common/functions.php on lines 1065 and 1205. everything is working fine now. I realize this might not be the solution for everyone as other people in this thread might not be having the same issues as me, and it is certainly not a permanent fix, but at least next week or so the users on my site will be receiving their emails while I investigate this further.
-
AuthorSearch Results
