Robkk (@robkk)

Forum Replies Created

Viewing 25 replies - 2,601 through 2,625 (of 3,784 total)

  • Robkk
    Moderator

    @robkk

    so when you click the reply link under an already posted users reply what happens??

    and 10 is a lot already do you really want more?? Your going to have to make some space for all these threaded replies and fix the awkwardness it will generate.


    Robkk
    Moderator

    @robkk

    why did you use echo do shortcode on these two lines , they are not shortcodes , its just header text.

    <?php if (!is_user_logged_in()) echo do_shortcode ('<h2 class="mve-form-title">Zo te zien is hierover nog niets geschreven...<br><br>Geregistreerde leden kunnen een vraag stellen aan de community.</h2>') ; ?>

    <?php if (is_user_logged_in()) echo do_shortcode ('<h2 class="mve-form-title">Zo te zien is hierover nog niets geschreven. Stel je vraag aan de community.</h2>') ; ?>

    but the topic you lead to there was a fix , i just edited for your search results page.

    i did test everything out , saw the issue , and resolved it with this function.

    add_filter( 'bbp_current_user_can_access_create_topic_form', 'custom_bbp_access_topic_form' );
    function custom_bbp_access_topic_form( $retval ) {
    
    	if ( bbp_is_search_results() ) {
    		$retval = bbp_current_user_can_publish_topics();
    	}
    
    	return $retval;
    
    }

    Robkk
    Moderator

    @robkk

    add all this CSS to anywhere you can add Custom CSS

    .bbp-login-form label[for=rememberme] {
      width: auto !important;
    }
    
    #sidebar .bbp-login-form label {
      width: auto!important;
    }
    
    .bbp-login-form .bbp-login-links a {
      margin-top: 25px;
    }
    
    .bbp-login-form button#user-submit {
      margin-top: 15px;
    }
    
    .bbp-login-form label[for=user_login] {
      display: block;
      width: auto!important;
    }

    Robkk
    Moderator

    @robkk

    alright cool


    Robkk
    Moderator

    @robkk

    @mvaneijgen

    i just tested out the shortcode an i get no issues , i checked with a participant and keymaster roles.

    i usually use the topic form page on this site too when i created topics and it seems to work well here too since im a participant.

    Create New Topic

    have you edited the template files specifically the ones for the topic form??
    have you edited role permissions??
    can your users see the message on normal topic forms that should display under a forum list.
    have you done the usual troubleshooting??

    In reply to: couple of questions

    Robkk
    Moderator

    @robkk

    you have a link to your dissuasion board already in your menu

    i mean if you didnt put the shortcode into that page already , the forums should show up every time you hit it.

    use this shortcode

    [bbp-forum-index]

    https://codex.bbpress.org/shortcodes/

    other than putting the shortcode

    usually when visiting a site the forums archive is usually yoursite.com/forums.

    so use the links part in the menus section and add a custom link


    Robkk
    Moderator

    @robkk

    here is the list of all bbPress shortcodes

    codex.bbpress.org/shortcodes/

    you could develop/hire a developer to use something like this

    <?php wp_get_current_user(); ?>

    codex.wordpress.org/Function_Reference/wp_get_current_user

    an alternative would be to use #3

    codex.bbpress.org/layout-and-functionality-examples-you-can-use/


    Robkk
    Moderator

    @robkk

    Redirecting 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';
    }

    Robkk
    Moderator

    @robkk

    this 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 following

    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.

    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.


    Robkk
    Moderator

    @robkk

    Follow 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 following

    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.

    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.


    Robkk
    Moderator

    @robkk

    follow 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 following

    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.

    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.


    Robkk
    Moderator

    @robkk

    @2cats

    my reccomendation would seem tiresome especially since you would have multiple users , an other suggestion i can provide is to post a job at http://jobs.wordpress.net/ and see if a developer can create something for you.

    In reply to: View Topic By

    Robkk
    Moderator

    @robkk

    you can use the bbPress views widget.

    which would link to optional ways to view the topics.

    Recommended im not sure though?? maybe as an alternative you can use most replied too??

    to add more custom views

    you can plop this code into your child themes functions.php file or add it into a functionality plugin.

    /**
     * Register these bbPress views:
     *  - Popular Topics
     *  - Unpopular Topics
     *  - Random Topic
     *  - Recently Closed
     *  - Tagged Test
     *  - All Topics
     *  - Open (Not Closed)
     *  - Random Single Topic
     *
     * @uses bbp_register_view() To register the view
     */
    function ntwb_register_custom_views() {
    	bbp_register_view( 'popular-topics', __( 'Popular Topics' ), array( 'meta_key' => '_bbp_reply_count', 'orderby' => 'meta_value_num' ), false );
    	bbp_register_view( 'unpopular-topics', __( 'Unpopular Topics' ), array( 'meta_key' => '_bbp_reply_count', 'orderby' => 'meta_value_num', 'order' => 'asc' ), false );
    	bbp_register_view( 'random-topic', __( 'Random Topic' ), array( 'orderby' => 'rand' ), false );
    	bbp_register_view( 'closed', __( 'Recently Closed' ), array( 'post_status' => 'closed' ), false );
    	bbp_register_view( 'taggedtest', __( 'Tagged Test' ), array( 'topic-tag' => 'test' ) );
    	bbp_register_view( 'all-topics', __( 'All Topics' ), array( 'order' => 'DESC' ), false );
    	bbp_register_view( 'open', __( 'Open (Not Closed)' ), array( 'post_status' => 'publish' ), false );
    	bbp_register_view( 'random-single-topic', __( 'Random Single-Topic' ), array( 'orderby' => 'rand', 'posts_per_page' => '1', 'max_num_pages' => '1' ), false );
    
    }
    add_action( 'bbp_register_views', 'ntwb_register_custom_views' );

    Robkk
    Moderator

    @robkk

    there is a topic form shortcode which is listed here, it does as you describe.

    [bbp-topic-form]

    https://codex.bbpress.org/shortcodes/

    for the button , search through the forums im sure ive said this before

    its somewhere in this topic

    How to make similar bbpress forum to QuicSprout one?


    Robkk
    Moderator

    @robkk

    do 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 following

    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.

    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.


    Robkk
    Moderator

    @robkk

    if its in a forum you should use <?php bbp_forum_reply_count() ?> for topics the other code works.

    In reply to: First topic text color

    Robkk
    Moderator

    @robkk

    @navinn

    alight , i knew it was that CSS code for sure but i didnt know for sure if it was for something cool in your theme.

    the original code i posted shouldve worked all i did was add an CSS ID so that it would only show for bbPress , because that is where the issue was.


    Robkk
    Moderator

    @robkk

    @nolimit966

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

    bbpress wp4 fix2

    bbpress wp4 fix

    In reply to: couple of questions

    Robkk
    Moderator

    @robkk

    1. you can add a custom link to your forums in the menu section of your site.

    2. Well since bbPress is a WordPress plugin most of the Content Management is done through the WordPress back-end. To manage the users in the back-end of WordPress you would have to go to users > all users. For them or you to edit their bbPress profile they could go to the front-end by defalt should be yoursite.com/forums/users/username/edit/.

    to manage bbPress specific settings go to settings > forums in the back-end of WordPress.

    if you need anymore help come back.


    Robkk
    Moderator

    @robkk

    @teamoo

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


    Robkk
    Moderator

    @robkk

    contact your server support


    Robkk
    Moderator

    @robkk

    i think using this instead will allow more customization options to the widget

    https://wordpress.org/plugins/bbpress-search-widget/


    Robkk
    Moderator

    @robkk

    @assiini

    i dont think you can move single replies to a specific topic.

    you might have to use merge/split depending on the position the reply is though

    In reply to: Forum Headers

    Robkk
    Moderator

    @robkk

    @lhughes16

    i suggest you go to http://jobs.wordpress.net/ and post a job so a developer can help you with this.


    Robkk
    Moderator

    @robkk

    @drsarf

    sorry i forgot about your topic

    in page is kind of hard to do since there is usually multiple forums.

    the only thing i can think of is maybe outputting the shortcode in a template

    like so <?php echo do_shortcode("[shortcode]"); ?>

    but then since there is multiple forums you will need multiple shortcodes for each slider.

    which would require you to use a bunch of if statements for each forum.

    i suggest go to http://jobs.wordpress.net/ and see if a developer can do this for you.

Viewing 25 replies - 2,601 through 2,625 (of 3,784 total)