Forum Replies Created
-
In reply to: bbPress Search Bar – Changing Color
Use background: none; in the submit buttons CSS. The little icon image is showing.
I edited the other reply I posted code, so you can just copy over the code over again.
In reply to: Problems with Forum Rating not workingWell that is really unexpected.
Glad you found the issue to what was causing the issue though.
Going to bookmark this in case anyone comes around with the same issue.
In reply to: bbPress Search Bar – Changing ColorHere try some of this custom CSS, put it in your child theme or in a custom css plugin.
This is for the submit button
#bbpress-forums #bbp-search-form input[type=submit], #bbpress-forums #bbp-search-form input[type=submit] { text-indent: 0; background: none; background-color: #3F51B5; color: #fff; width: auto; height: auto; border-radius: 0; margin-top: 0; }
This is for the search input.
#bbpress-forums #bbp-search-form input[type=text], #bbpress-forums #bbp-search-form input[type=text] { border: 1px solid #3F51B5; }
In reply to: Add/Remove from TinyMCEYou did add this argument right?? Having this at false shows the full editor. Some button may be not usuable for the forums though, so you need to move them around in the TinyMCE advanced plugin settings.
$args['teeny'] = false;
In reply to: Code to find the user subscribed topicsGreat attitude to have! 😀
In reply to: Problems with Forum Rating not workingHere is the code for that exact error notice. bbp_check_for_blacklist is checking the comment blacklist in Settings > Discussion. Since you said that you do not have anything in the blacklist do you have another plugin with a blacklist that could be hooking into the default comment blacklist??
/** Reply Blacklist *******************************************************/ if ( ! bbp_check_for_blacklist( $anonymous_data, $reply_author, $reply_title, $reply_content ) ) { bbp_add_error( 'bbp_reply_blacklist', __( '<strong>ERROR</strong>: Your reply cannot be created at this time.', 'bbpress' ) ); }
In reply to: Theme Parts from twenty fifteenIs Twenty Fifteen your default theme?
Are you making custom theme?
Post picture of the problem.
Post link to your site if you want to.
In reply to: Problems with Forum Rating not workingSo any replies that say for example porn do not get posted?? Does it only check for participants posts and bybass yours?? You can create a test user that is a subscriber/participant and sign into it and tell me what error you get by using some of these censored words you have mentioned. If you post an image of the error notice it could possibly help me help you a little better.
Any error notice that would popup in bbPress about the user not having permission to do things because they do not have the capability to do so, like moderating topics, publishing topics from the backend stuff like that.
In reply to: Change Sticky and Super Sticky TextJust the admin links??
In reply to: Remove “Link to Existing Content”?You can use this CSS to remove it. Add the CSS where you can add custom css.
.bbpress p.howto { display: none; }
In reply to: Remove author columnWell you can easily customize bbPress by creating a child theme and placing the bbPress templates into that child theme and edit them with no worries.
The author column should be in the loop templates, for example loop-single-reply.php for replies of course. It should be in a div with the class bbp-reply-author. It would be bbp-topic-author if you have are editing the loop-single-topic.php template and so on.
In reply to: Change meta/page title for user pagesWait the original code really still doesn’t work.
It really did work for me, and I have the latest version of WP too.
In reply to: forums redirected to 404 pageSorry I missed your reply.
The bbPress error is displayed when there is another plugin causing it.
It is detailed here.
You did to see if was a cache, theme, and plugin issue right, and received no resolutions?
Can you tell me the url you are being directed to instead of the topic pages?? Can you check in your browsers dev tools to tell me the url in the link?
You are experiencing this issue as a logged in registered user right??
Did you try reinstalling bbPress as a last resort?? It is possible for an issue to happen during installation because of some server hiccup.
Has bbPress worked fine before, then it just broke all of a sudden, or was it just broken during a fresh installation??
Well I am glad the workaround fix worked for you.
Could you CC the trac ticket so you can be notified of any new patch added onto there so you might test it in the future.
Login using your WordPress.org credentials then scroll down to the bottom of the ticket then click the add to CC checkbox, then hit submit changes.
In reply to: Add replies (or topic) count to menuThis is more suited for topics.
bbp_topic_reply_count()
Not entirely sure what you are going for to really help more.
In reply to: style my forum like yoursThe reply form border styles is inherited from your theme.
Do you want to remove the topic and forum descriptions too??
This php code snippet will remove the descriptions. Place this code snippet in your child themes functions.php or in a functionality plugin.
add_filter( 'bbp_get_single_forum_description', 'ja_return_blank' ); add_filter( 'bbp_get_single_topic_description', 'ja_return_blank' ); function ja_return_blank() { return ''; }
In reply to: bbpress searchThe bbPress search searches news items?? It only searches for bbPress post types really.
Are you sure you are not confusing this with the default WordPress search??
In reply to: bbPress Search Bar – Changing ColorLink to your site and tell me exactly what you want to change.
In reply to: Is it possible to loop bbp_register_view ?I have never tried anything like this yet so can’t say, sorry.
In reply to: Code to find the user subscribed topicsThis user said they got forums, but not topics from forums with the code posted in this topic.
How to query recently active topics from user subscribed forums?
Thanks for sometimes helping out here in the forums.
In reply to: Users’ Profile page is a 404 pageDid you try some troubleshooting to see if it could be a possible theme issue. Some theme frameworks do not play nice with bbPress’s theme compatibility, so try to check in a default theme to see if it works fine.
I guess you can also ask these questions too.
Did you import any users?
Are you allowing users to register with their email?In reply to: Cannot search Forum Category TitlesI think it should be this way, I don’t think it is a bug or anything like that.
Should it be in bbPress forum search??
In reply to: user profile link giving a 404 errorHow about having a shortcode that just does it?
Won’t work since profiles are dynamic public pages, might work if it was private profile pages though.
I didn’t see a bbpress ‘users’ shortcode amongst those listed in the documentation.
Because there is none.
@joopstringer where do I add the code you suggested?
His code is SQL query code that you input into phpMyAdmin.
I’m setting up a site and only my admin user page comes up, all others are 404 pages.
It could be many possibilities but I will explain that in your other topic.
In reply to: Problems with Forum Rating not workingAre the posts marked as spam?? Since you have Akismet make sure it is not too aggressive in finding spam. You could set this in the Akismet plugin settings.
Other than that maybe look for a different spam plugin an alternate plugin to Akismet if it is too aggressive in stopping spam.
This for frontend posting/commenting.
https://wordpress.org/plugins/spam-destroyer/
And this for Registration might be a good combination.
In reply to: [HELP] How to Add/Edit Role – Ranks by PostIt might be possible to use some code to calculate the posts like this or wait til 2.6 adds this feature.
https://wordpress.org/plugins/bbp-topic-count/
Then I guess setting the role using the code below when they reach the count. I am not sure entirely though, I have never tried something like this yet.
bbp_set_user_role();
Right now this is most likely custom development and you may need to hire a developer to create this for you.