JaneAkshar (@janeakshar)

Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)
  • @janeakshar

    Participant

    OK, thanks

    Back to bed

    @janeakshar

    Participant

    @robkk

    silly thing but is there anyway to make the nil search result dialog a bit more formal

    currently it says “Oh bother! No search results were found here!”

    @janeakshar

    Participant

    lol it is so easy when you know how isnt it

    peace and love

    mega grateful

    PS I was in bed but had the phone on, then you get me all woken up

    @janeakshar

    Participant

    @robkk I have set you up as an admin and you should get an email to this address

    Truly appreciate your help.

    I am on Egyptian time so 3am here, hope you get the login ok

    @janeakshar

    Participant

    These are my plugins
    bbPress
    Category Posts Widget
    Contact Form 7
    Display Posts Shortcode
    iThemes Security
    jetpack by WordPress.com
    Really Simple CAPTCHA
    Wordfence Security
    WP Google Maps
    WP-Members
    Yoast SEO

    @janeakshar

    Participant

    The author of wp-members (yes it was that plugin) suggested deactivating his plugin and then trying but it still did not work. so no it did not work with that theme Custom Community 2.0 with or without the members area.

    @janeakshar

    Participant

    I used the plugin wp-members and put the forums in the member area. I have been speaking to the author of that plugin who is brilliant with support and he had problems at the begining as well. So I have done loads more searching and it is known problem which BBPress do nothing about

    There is no solution out there BUT what you can do is change the main search function to include forums and that is what I have eventually done. I do think BBPress should provide a proper solution

    So you ditch the BBPress function, it does not work. And amend the normal search to include forums. I used this code snippet to help.

    /**
    * Include bbPress 'topic' custom post type in WordPress' search results */
    
    function ntwb_bbp_topic_cpt_search( $topic_search ) {
            $topic_search['exclude_from_search'] = false;
            return $topic_search;
    }
    add_filter( 'bbp_register_topic_post_type', 'ntwb_bbp_topic_cpt_search' );
    
    /**
    * Include bbPress 'forum' custom post type in WordPress' search results */
    
    function ntwb_bbp_forum_cpt_search( $forum_search ) {
            $forum_search['exclude_from_search'] = false;
            return $forum_search;
    }
    add_filter( 'bbp_register_forum_post_type', 'ntwb_bbp_forum_cpt_search' );
    
    /**
    * Include bbPress 'reply' custom post type in WordPress' search results  */
    
    function ntwb_bbp_reply_cpt_search( $reply_search ) {
            $reply_search['exclude_from_search'] = false;
            return $reply_search;
    }
    add_filter( 'bbp_register_reply_post_type', 'ntwb_bbp_reply_cpt_search' );

    @janeakshar

    Participant

    any answers

    @janeakshar

    Participant

    website chinnockswharf.website

Viewing 9 replies - 1 through 9 (of 9 total)