Robkk (@robkk)

Forum Replies Created

Viewing 25 replies - 901 through 925 (of 3,784 total)
  • @robkk

    Moderator

    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.

    @robkk

    Moderator

    Well 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.

    @robkk

    Moderator

    Here 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;
    }

    @robkk

    Moderator

    You 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;

    @robkk

    Moderator

    @casiepa

    Great attitude to have! 😀

    @robkk

    Moderator

    Here 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' ) );
    	}

    @robkk

    Moderator

    Is Twenty Fifteen your default theme?

    Are you making custom theme?

    Post picture of the problem.

    Post link to your site if you want to.

    @robkk

    Moderator

    So 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.

    @robkk

    Moderator

    Just the admin links??

    @robkk

    Moderator

    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 column

    @robkk

    Moderator

    Well 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.

    Theme Compatibility

    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.

    @robkk

    Moderator

    Wait the original code really still doesn’t work.

    It really did work for me, and I have the latest version of WP too.

    @robkk

    Moderator

    Sorry I missed your reply.

    The bbPress error is displayed when there is another plugin causing it.

    It is detailed here.

    bbp_setup_current_user was called incorrectly

    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??

    @robkk

    Moderator

    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.

    @robkk

    Moderator

    This is more suited for topics.

    bbp_topic_reply_count()

    Not entirely sure what you are going for to really help more.

    @robkk

    Moderator

    The 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 search

    @robkk

    Moderator

    The 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??

    @robkk

    Moderator

    Link to your site and tell me exactly what you want to change.

    @robkk

    Moderator

    I have never tried anything like this yet so can’t say, sorry.

    @robkk

    Moderator

    This 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?


    @casiepa

    Thanks for sometimes helping out here in the forums.

    @robkk

    Moderator

    Did 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.

    Troubleshooting

    I guess you can also ask these questions too.

    Did you import any users?
    Are you allowing users to register with their email?

    @robkk

    Moderator

    I 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??

    @robkk

    Moderator

    How 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.

    Users’ Profile page is a 404 page

    @robkk

    Moderator

    Are 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.

    https://wordpress.org/plugins/wangguard/

    @robkk

    Moderator

    It 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.

Viewing 25 replies - 901 through 925 (of 3,784 total)