Search Results for '+.+default+.+'
-
AuthorSearch Results
-
March 22, 2015 at 4:06 am #159979
Robkk
Moderatordo this first
General Issues
bbPress works with many themes and plugins, but it is impossible to test all combinations, and many issues are caused by conflicts with plugins and themes.
Therefore before posting, please test if your issue is resolved by the followingPlugins
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 above produces an issue:
If it is a paid theme or plugin, please contact the authors for resolution.
If free, do ask here, we may know of workaround.
PLEASE tell us you have done the tests above when posting.OTHER COMMON FIXES
The following will do no harm, so are worth a try and can fix some issues
Dashboard>settings>permalinks. Don’t change anything, but just click save. This resets the permalinks, and can solve some 404 errors.
Dashboard>tools>forums>repair forums and run one at a time. Useful if you’ve got some stuff not showing – doesn’t often fix but occasionally does.but when you do update
i say make a backup of your site using this plugin
https://wordpress.org/plugins/updraftplus/
maybe even a couple of backups for a safe measure
1 to your email , 1 on your host , and 1 on your cpu.
then update WordPress.
March 21, 2015 at 6:04 am #159940In reply to: not displaying correctly
Robkk
Moderatorremove the CSS you added to your child theme (you can download it to backup if you made changes)
let the style go back to the normal 2013 then put back the CSS
it did this type of thing for 2014 for me one time and it was pretty weird.
this PHP snippet should remove the double Private wording
add_filter('private_title_format', 'ntwb_remove_private_title'); function ntwb_remove_private_title($title) { return '%s'; }other than that try these troubleshooting tips
General Issues
bbPress works with many themes and plugins, but it is impossible to test all combinations, and many issues are caused by conflicts with plugins and themes.
Therefore before posting, please test if your issue is resolved by the followingPlugins
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 above produces an issue:
If it is a paid theme or plugin, please contact the authors for resolution.
If free, do ask here, we may know of workaround.
PLEASE tell us you have done the tests above when posting.OTHER COMMON FIXES
The following will do no harm, so are worth a try and can fix some issues
Dashboard>settings>permalinks. Don’t change anything, but just click save. This resets the permalinks, and can solve some 404 errors.
Dashboard>tools>forums>repair forums and run one at a time. Useful if you’ve got some stuff not showing – doesn’t often fix but occasionally does.March 21, 2015 at 5:16 am #159934Robkk
ModeratorCan I contribute myself in the future in the development of this plugin? Can you give me some directions for doing so?
follow this link , join slack and contact the plugin developers
you should maybe contact them about this issue too, but first make sure to troubleshoot using this first.
General Issues
bbPress works with many themes and plugins, but it is impossible to test all combinations, and many issues are caused by conflicts with plugins and themes.
Therefore before posting, please test if your issue is resolved by the followingPlugins
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 above produces an issue:
If it is a paid theme or plugin, please contact the authors for resolution.
If free, do ask here, we may know of workaround.
PLEASE tell us you have done the tests above when posting.OTHER COMMON FIXES
The following will do no harm, so are worth a try and can fix some issues
Dashboard>settings>permalinks. Don’t change anything, but just click save. This resets the permalinks, and can solve some 404 errors.
Dashboard>tools>forums>repair forums and run one at a time. Useful if you’ve got some stuff not showing – doesn’t often fix but occasionally does.March 20, 2015 at 6:10 pm #159921In reply to: Give bbPress full editor by default?
Doug Smith
ParticipantI ran across this discussion while trying to solve a similar issue so I thought I’d update it with my solution.
After enabling the visual editor I started seeing HTML present in some of the posts. The cause was people copying from a previous part of the discussion and pasting it into the editor to quote it. That was bringing in styles from the website and including it in the editor as HTML. For example:
<span style="color: #666666; font-family: Helvetica, Arial, sans-serif; font-size: 20px; line-height: 32px; orphans: 3; widows: 3; background-color: #fbfbfb;">Some copied and pasted text from earlier in the discussion.</span>My solution was to add the TinyMCE _paste_ plugin to the editor, which defaults to cleaning up pasted text. Here’s the filter:
function bbp_tinymce_paste_plain_text( $plugins = array() ) { $plugins[] = 'paste'; return $plugins; } add_filter( 'bbp_get_tiny_mce_plugins', 'bbp_tinymce_paste_plain_text' );March 20, 2015 at 4:06 am #159909In reply to: Search not finding results
Robin W
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.
Then come back
March 19, 2015 at 2:59 pm #159887In reply to: BBpress Forum Login Takes me to WordPress Admin Page
Robkk
ModeratorRedirecting back to the default wordpress login pages is a common complaint , but there are better plugins that handle frontend authentication then the default bbPress ones , id say maybe use another plugin for frontend authentication.
other than that its not a total issue, those default WordPress login pages arent just for admins they are suppose to be used for all your users.
the default from name is wordpress , you can customize it with filters though.
add_filter( 'wp_mail_from', 'your_email' ); function your_email( $original_email_address ) { return 'your@email-address.com'; }add_filter( 'wp_mail_from_name', 'custom_wp_mail_from_name' ); function custom_wp_mail_from_name( $original_email_from ) { return 'Your sites name'; }March 19, 2015 at 2:43 pm #159886In reply to: Error related to filename in code
Robkk
Moderatorthis is a weird issue , could a conflicting plugin or a messed up install, follow this if it helps any
General Issues
bbPress works with many themes and plugins, but it is impossible to test all combinations, and many issues are caused by conflicts with plugins and themes.
Therefore before posting, please test if your issue is resolved by the followingPlugins
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 above produces an issue:
If it is a paid theme or plugin, please contact the authors for resolution.
If free, do ask here, we may know of workaround.
PLEASE tell us you have done the tests above when posting.OTHER COMMON FIXES
The following will do no harm, so are worth a try and can fix some issues
Dashboard>settings>permalinks. Don’t change anything, but just click save. This resets the permalinks, and can solve some 404 errors.
Dashboard>tools>forums>repair forums and run one at a time. Useful if you’ve got some stuff not showing – doesn’t often fix but occasionally does.March 19, 2015 at 2:40 pm #159884In reply to: bbpress The page isn't redirecting properly
Robkk
ModeratorFollow this first
General Issues
bbPress works with many themes and plugins, but it is impossible to test all combinations, and many issues are caused by conflicts with plugins and themes.
Therefore before posting, please test if your issue is resolved by the followingPlugins
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 above produces an issue:
If it is a paid theme or plugin, please contact the authors for resolution.
If free, do ask here, we may know of workaround.
PLEASE tell us you have done the tests above when posting.OTHER COMMON FIXES
The following will do no harm, so are worth a try and can fix some issues
Dashboard>settings>permalinks. Don’t change anything, but just click save. This resets the permalinks, and can solve some 404 errors.
Dashboard>tools>forums>repair forums and run one at a time. Useful if you’ve got some stuff not showing – doesn’t often fix but occasionally does.March 19, 2015 at 2:33 pm #159882In reply to: Text Editor Not Working
Robkk
Moderatorfollow this , it could most likely be a plugin issue
General Issues
bbPress works with many themes and plugins, but it is impossible to test all combinations, and many issues are caused by conflicts with plugins and themes.
Therefore before posting, please test if your issue is resolved by the followingPlugins
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 above produces an issue:
If it is a paid theme or plugin, please contact the authors for resolution.
If free, do ask here, we may know of workaround.
PLEASE tell us you have done the tests above when posting.OTHER COMMON FIXES
The following will do no harm, so are worth a try and can fix some issues
Dashboard>settings>permalinks. Don’t change anything, but just click save. This resets the permalinks, and can solve some 404 errors.
Dashboard>tools>forums>repair forums and run one at a time. Useful if you’ve got some stuff not showing – doesn’t often fix but occasionally does.March 19, 2015 at 2:17 pm #159877In reply to: Are you sure you want to do this Error
Robkk
Moderatordo this first
General Issues
bbPress works with many themes and plugins, but it is impossible to test all combinations, and many issues are caused by conflicts with plugins and themes.
Therefore before posting, please test if your issue is resolved by the followingPlugins
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 above produces an issue:
If it is a paid theme or plugin, please contact the authors for resolution.
If free, do ask here, we may know of workaround.
PLEASE tell us you have done the tests above when posting.OTHER COMMON FIXES
The following will do no harm, so are worth a try and can fix some issues
Dashboard>settings>permalinks. Don’t change anything, but just click save. This resets the permalinks, and can solve some 404 errors.
Dashboard>tools>forums>repair forums and run one at a time. Useful if you’ve got some stuff not showing – doesn’t often fix but occasionally does.March 19, 2015 at 2:06 pm #159873In reply to: broken forum – users cannot see the first post :-(
Robkk
Moderatorif this was caused because you were editing your files.
you would need to backtrack and see what you did to cause the issue.
i reccommend downloading/make a backup of your edited bbPress templates so you can keep track of all your edits.
then add the default templates to your child again and redo your customizatinos.
if this could be something else only thing i can think of is using these two plugins from Robin and see if they help with your issue.
March 19, 2015 at 1:54 pm #159871In reply to: Search not finding results
Robkk
Moderatori think just like the standard WordPress search form the bbPress search form only searches title and content but only for bbPress custom post types (forums,topics,replies).
both searchforms arent that great by default but you could enhance it with this plugin
For a more enhanced searchform for bbPress ive seen users use this plugin.https://wordpress.org/plugins/search-everything/
i have also seen a site just use the google custom search engine provided by google to search through their site.
But to use this properly you would have to allow bbPress custom post types to be searchable in all your site search.
March 19, 2015 at 9:57 am #159862In 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??
-
AuthorSearch Results