Search Results for '+.+default+.+'
-
AuthorSearch Results
-
October 11, 2018 at 1:26 pm #195418
In reply to: Double avatar
Robin W
ModeratorIt could be a theme or plugin issue issue, so you’ll need to test to find out which
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
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.
Then come back
October 9, 2018 at 4:29 pm #195377In reply to: Subscribe – Post Author Not Receiving Email
Robin W
Moderatoryes, that is the default position, I’ll try and work out some code in the next few days.
If I have not come back in 3 days time, post again to remind me !
October 9, 2018 at 4:27 pm #195376In reply to: bbpress user roles
Robin W
Moderator
in bbpress plugin in my site the moderator roles the forum is not showing in dashboard,
It could be a theme or plugin issue issue, so you’ll need to test to find out which
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
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.
Then come back
October 9, 2018 at 4:26 pm #195375In reply to: Message on the text editor: CONTENT string (0)
Robin W
Moderatorsomething is putting that code there, you will need to work out what
It could be a theme or plugin issue issue, so you’ll need to test to find out which
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
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.
Then come back
October 6, 2018 at 4:43 pm #195310In reply to: Changing the first item on a topic list
Robin W
Moderatorok, so concentrating on a topic and it’s reply list and ignoring forums, you are saying that you would like
from clicking a topic in the forum list (a list of topics in the forum) you are taken to a page which displays
- the topic name
- some content/info but styled and controlled by you
- the replies as per normal
- the reply form
If so I suspect you need to do two things
1. use this piece of code in your functions file
2. amend content-single-topic-lead.php in your child theme’s bbpress directory.
by
create a directory on your theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpresswhere %your-theme-name% is the name of your theme
find
wp-content/plugins/bbpress/templates/default/bbpress/content-single-topic-lead.php
Make a copy of this file, and put in in the directory called bbpress that you created above, so you end up with
wp-content/themes/%your-theme-name%/bbpress/content-single-topic-lead.phpbbPress will now use this template instead of the original and you can amend thisI have no idea how technical you are and whether that gives you enough to go ahead and fix, or if you need further help – let me know
October 5, 2018 at 4:46 pm #195244In reply to: Recurring “No topics found” message
Robin W
ModeratorIt could be a theme or plugin issue issue, so you’ll need to test to find out which
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 twentyfifteen, and see if this fixes.
Then come back
October 5, 2018 at 4:18 pm #195240In reply to: Messages are stacking
Robin W
Moderator1. bbpress is free software offered under OSF. There is no guarantee of support. If I gave you a free car, would you also expect me to service it for you for free?
2. BBpress is supported by volunteers (mainly me) who do so in their free time for no payment, so you expect someone to reply within 7 hours is frankly being a bit hopeful.
3. If you have followed the troubleshooting information in ‘before posting’ before er.. posting then you would probably have an answer without involving me, but to save you reading it…the most relevant part for you is
It could be a theme or plugin issue issue, so you’ll need to test to find out which
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 twentyfifteen, and see if this fixes.
Then come back
October 5, 2018 at 3:32 am #195218In reply to: WP User(subscribers) Not able to Post Reply
Robin W
ModeratorIt could be a theme or plugin issue issue, so you’ll need to test to find out which
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 twentyfifteen, and see if this fixes.
Then come back
September 28, 2018 at 9:50 pm #195082In reply to: Change forum role of more than one user
skylabb
ParticipantI came across this same issue and found this thread.
“bbpress default role is only allocated on first user login, so users who register but haven’t yet logged in will show as having no role.”
If this is how it works, how anyone is supposed to know? Naturally you would think you can change user roles by multiple select and assign them a role when they don’t have one yet. Maybe a popup message would help when the admin attempts such action.
September 24, 2018 at 7:38 am #195014In reply to: Learndash and Bbpress plugin issue
Robin W
ModeratorAs far as I know the two work together
bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes
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 twentyfifteen, and see if this fixes.
Then come back
September 22, 2018 at 10:18 am #194983In reply to: Setting User Forum Role By Code
Robin W
ModeratorI’ve just done some testing
this code :
function test_set_user () { $user_id = 1223 ; bbp_set_user_role( $user_id, 'bbp_participant' ); } add_action ('init' , 'test_set_user' ) ;
changes user 1223 on site load, so the code is fine.
I think it is a timing issue – ie when you are doing this. It may well be that even if this fires, a ‘create user’ firing after will overwrite this – eg this may set for pending, but then be overwritten by the final user creation.
Of course if it is always going to be participant, then bbpress allocates the user to the default role (as set in settings>forums>default role) if no bbpress role is set on first login, so you could just set up the user, and bbpress will take care of giving them a role when they first log in!
September 13, 2018 at 4:13 am #194822Topic: New plugin: GD Power Search Pro for bbPress
in forum PluginsMilan Petrovic
ParticipantFew days ago I have released new plugin for bbPress to add advanced search form to replace bbPress default search page. More information about the plugin is available here:
GD Power Search Pro for bbPress
September 8, 2018 at 4:39 pm #194741Robin W
Moderatorok, so not my plugin, but I cannot replicate the error
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 twentyfifteen, and see if this fixes.
Then come back
September 6, 2018 at 8:05 am #194700In reply to: How add Class on list
puniler
ParticipantThanks for getting back to me.
Break down the code in question into three.
(1)
I found the following code in this directory,
wp-content/plugins/bbpress/templates/default/bbpress/loop-replies.php<ul id="topic-<?php bbp_topic_id(); ?>-replies" class="forums bbp-replies"> <li class="bbp-header"> <!-- various --> </li> <li class="bbp-body"> <?php bbp_get_template_part( 'loop', 'single-reply' ); ?> </li> <li class="bbp-footer"> <!-- various --> </li> </ul>
(2)
And the template called in the above code is below.
wp-content/plugins/bbpress/templates/default/bbpress/loop-single-reply.php<div id="post-<?php bbp_reply_id(); ?>" class="bbp-reply-header"> <div class="bbp-meta"> <!-- various --> </div> </div> <div <?php bbp_reply_class(); ?>> <!-- various --> </div> <div id="post-<?php bbp_reply_id(); ?>" class="bbp-reply-header"> <div class="bbp-meta"> <!-- various --> </div> </div> <div <?php bbp_reply_class(); ?>> <!-- various --> </div>
(3)
But I could not find the code for the part of the list below.<li class="★"> </li> <li class="★"> </li>
In the output HTML, this list is included, but the PHP template does not show the part of the list.
Where is the list, how can I rewrite it?
Thanks.
September 6, 2018 at 7:07 am #194696nextstopdisneylandparis
ParticipantThanks for the reply
yes i know it’s default
but I put to all the forums, the topics that I created public.
and nothing has changedSeptember 3, 2018 at 10:21 pm #194630In reply to: bbPress 2.6 Release Candidate 3
scmsteve
ParticipantNoticed when migrating from 2.5.12 to 2.6 beta 2 (and also in RC1 and RC3), that my custom CSS file in mytheme/css/bbpress.css is no longer being detected.
I am seeing that here as well… Since your post was never commented on, I don’t know if it was ignored or simply thought irrelevant. Or maybe missed. 🙂
Looking at the HTML between the old site and a test site running the SVN pull of 2.6, it seems that previously as part of the enqueue_styles() call, it generated:
<link data-asynced="1" as="style" onload="this.rel="stylesheet"" rel="stylesheet" id="bbp-default-css" href="https://siteurl/wp-content/themes/mythemename/css/bbpress.css" type="text/css" media="screen">
Now it is generating:
<link data-asynced="1" as="style" onload="this.rel="stylesheet"" rel="stylesheet" id="bbp-default-css" href="https://siteurl/wp-content/plugins/bbpress/templates/default/css/bbpress.min.css" type="text/css" media="all">
So, it is not looking in the site css folder, but instead pulling from the plugin folder.
Is this intentional? If not, is there a fix/workaround?
August 31, 2018 at 4:48 pm #194586In reply to: “replies to show per page” is not working
bamadale
ParticipantTHANK YOU for this post!
I cannot remember if this defaults to both being enable at the same time, but if they are, bbPress should consider adding some notes about this in the Settings.
Thanks again! Dale
August 30, 2018 at 12:36 pm #194569In reply to: Problem with user profile
bjarvis
ParticipantThank you for your reply Robin. The issue turned out to be a conflict with the themes customization area for a “custom 404 page” instead of using the default 404 page. When I turn this off, and use the default 404 page, the issue resolved. The theme developer is working on a fix on their end. :o)
August 30, 2018 at 8:38 am #194560Topic: How to show subcategories each on separate line
in forum Troubleshootingketanco
ParticipantRight now by default under a main forum category, the subforums appear together, only separated by comma. This is confusing for me. Is there a way to list each subforum one by one each on a separate line, under their main category forum, instead of them just separating by commas?
August 28, 2018 at 3:16 am #194538In reply to: Images not showing up in threads
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 twentyfifteen, and see if this fixes.
Then come back
August 28, 2018 at 3:15 am #194536In reply to: insert/ edit image (links) not working
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 twentyfifteen, and see if this fixes.
Then come back
August 26, 2018 at 7:25 am #194513Helmuts
ParticipantA quick update – ..this topic ranks in the top positions of Google on these keywords and needs updating.
My suggestion: set up plugin “bbPress Advanced Statistics” https://wordpress.org/plugins/bbpress-improved-statistics-users-online/
and use the shortcode: [bbpas-activity] (you have to enable it first in settings under “extra” tab”
—
Sample (latest forum posts): https://www.lustjobs.com/latest-posts-custom-forum-view/
There are 2 bbcodes on this page:
[bbp-topic-index]
[bbpas-activity]—
as for the default bb code: you have to use use [bbp-stats] not [bbp-statistics]
August 26, 2018 at 6:00 am #194511Topic: How to escape html?
in forum Installationeigodeasobo
ParticipantHi bbpress
I want to escape html in topic and reply output, but I want to Embede media.
REPLACED this code which you can find inside[bbpress/templates/default/bbpress/content-single-topic-lead.php] file, opening via the editor.
<?php bbp_topic_content(); ?>
WITH THIS CODE<?php global $wp_embed; $inputTxt = bbp_get_topic_content(); $escTxt = esc_html( $inputTxt ); echo '<div class="test">'.$wp_embed->run_shortcode( '[embed]' . $escTxt . '[/embed]' ).'</div>'; ?>
But I can not it.
How do I write it?
August 25, 2018 at 4:52 am #194495In reply to: Just installed bbPress – Can’t post replies Topics
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 twentyfifteen, and see if this fixes.
Then come back
August 25, 2018 at 4:51 am #194494In reply to: Problem with user profile
Robin W
Moderatorpossibly a conflict, or maybe your site has been hacked.
is this just one username or all ?
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 twentyfifteen, and see if this fixes.
Then come back
-
AuthorSearch Results