Robin W (@robin-w)

Forum Replies Created

Viewing 25 replies - 3,426 through 3,450 (of 13,976 total)
  • @robin-w

    Moderator

    if viewing as a ‘guest’ then presumably you are not logged in so have no identity, so the system doesn’t know who you are, so there are no subscriptions or email address to notify

    @robin-w

    Moderator

    hmmm…

    bbpress just uses wordpress registration, so users should be able to just register and get participant access.

    what have you got set in

    dashboard>settings>forums>Roles?

    @robin-w

    Moderator

    I think your theme is adding another one in the bbpress templates

    so in 2.6.x they are added in

    \bbpress 2.6.6\templates\default\bbpress\form-reply.php
    \bbpress 2.6.6\templates\default\bbpress\form-topic.php

    so your have 2 choices

    a. the better one
    Look in each of the files you listed as being bbpress in your themes template and look for a line which says something like

    bbp_get_template_part( 'form', 'user-login' );

    and edit out this line

    b. If you can’t find it there, then

    find
    wp-content/plugins/bbpress/templates/default/bbpress/form-reply.php

    transfer this to your pc and edit

    remove the line which says

    <?php bbp_get_template_part( ‘form’, ‘user-login’ ); ?>

    and save

    create a directory on your theme called ‘bbpress’
    ie wp-content/themes/%your-theme-name%/bbpress

    where %your-theme-name% is the name of your theme

    Then transfer the file you saved above and put in in the directory called bbpress that you created above, so you end up with
    wp-content/themes/%your-theme-name%/bbpress/form-reply.php
    bbPress will now use this template instead of the original

    Repeat this for form-topic.php

    @robin-w

    Moderator

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentytwenty, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Then come back

    @robin-w

    Moderator

    Still waiting to see if people using the Forums are having any issues using them.

    not sure what this means πŸ™‚

    I would like to change the font color against the maroon top bars, from black to yellow, or grey, but I am not finding the right tab to do so.

    probably theme related, but link to an example on your site please.

    Why are there tabs for setting up logins/logim failures, if logging in is accomplished at the WordPress level?

    bbpress has some widgets and shortcodes that let users enter username and password. these details are passed to wordpress security to go through login.

    In reply to: Messages not working.

    @robin-w

    Moderator

    what do you mean by ‘send message’ ? do you mean submit topics and replies? bbpress does not have messages as standard.

    @robin-w

    Moderator

    contact me via

    Contact me

    with a link to this thread πŸ™‚

    @robin-w

    Moderator

    great – glad you are fixed !

    @robin-w

    Moderator

    ok, not sure I can help further, it looks site specific.

    @robin-w

    Moderator

    ‘Private’ is a wordpress/bbpress conflict – and it is annoying !!

    either

    Put this in your child theme’s function file –

    ie wp-content/themes/%your-theme-name%/functions.php

    where %your-theme-name% is the name of your theme

    or use

    Code Snippets

    add_filter('private_title_format', 'ntwb_remove_private_title');
    function ntwb_remove_private_title($title) {
    	return '%s';
    }

    or use

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>Forum Display

    @robin-w

    Moderator

    some code from one of my plugins (bbp-style-pack) that plays with this area might help

    add_action ('bbp_new_topic_post_extras' , 'bsp_topic_tags_process' ) ;
    	add_action ('bbp_edit_topic_post_extras' , 'bsp_topic_tags_process' ) ;
    	add_action( 'bbp_new_reply_post_extras', 'bsp_reply_tags_process' );
    	add_action( 'bbp_edit_reply_post_extras', 'bsp_reply_tags_process' );
    
    //handle topic tags
    
    function bsp_topic_tags_process ($topic_id) {
    	if ( bbp_allow_topic_tags() && ! empty( $_POST['bbp_topic_tags'] ) ) {
    		
    		$terms = $_POST['bbp_topic_tags'] ;
    		
    		// Add topic tag ID as main key
    		$terms = array( bbp_get_topic_tag_tax_id() => $terms );
    		
    		$topic_data = array(
    		'ID'           => $topic_id,
    		'tax_input'    => $terms,
    		) ;
    		$topic_id = wp_update_post( $topic_data );
    		
    		
    	}
    }
    
    function bsp_reply_tags_process ($reply_id) {
    	if ( bbp_allow_topic_tags() && ! empty( $_POST['bbp_topic_tags'] ) ) {
    		$topic_id = bbp_get_reply_topic_id ($reply_id) ;
    		
    		$terms = $_POST['bbp_topic_tags'] ;
    		
    		// Add topic tag ID as main key
    		$terms = array( bbp_get_topic_tag_tax_id() => $terms );
    		
    		$topic_data = array(
    		'ID'           => $topic_id,
    		'tax_input'    => $terms,
    		) ;
    		$topic_id = wp_update_post( $topic_data );
    	}
    }

    @robin-w

    Moderator

    thanks for posting πŸ™‚

    @robin-w

    Moderator

    probably one for the buddypress support forum

    https://buddypress.org/support/

    @robin-w

    Moderator

    Put this in your child theme’s function file –

    ie wp-content/themes/%your-theme-name%/functions.php

    where %your-theme-name% is the name of your theme

    or use

    Code Snippets

    add_filter ('bbp_reply_admin_links', 'rew_remove_reply') ;
    add_filter ('bbp_topic_admin_links', 'rew_remove_reply') ;
    
    function rew_remove_reply ($links) {
    	unset ($links['reply']) ;
    return $links ;	
    }

    @robin-w

    Moderator

    hmmm.. this seems to be wordpress capability and looks difficult to remove.

    The best I could find is

    https://wordpress.stackexchange.com/questions/29000/disallow-user-from-editing-their-own-profile-information

    but it would need some work to make it work for bbpress

    In reply to: Display problem

    @robin-w

    Moderator

    no idea if this has anything to do with the bbpress plugin. Please advise what widget

    @robin-w

    Moderator

    ok so try it without buddypress

    @robin-w

    Moderator

    not sure, but try this (untested)

    add_filter ('bbp_get_user_edit_profile_url' , 'rew_remove_edit' ) ;
    
    function rew_remove_edit () {
    return ;
    }

    Put this in your child theme’s function file –

    ie wp-content/themes/%your-theme-name%/functions.php

    where %your-theme-name% is the name of your theme

    or use

    Code Snippets

    @robin-w

    Moderator

    At a guess you might want to start by looking at

    Step by step guide to setting up a bbPress forum – Part 1

    and particularly items 3 & 5

    @robin-w

    Moderator

    bbpress just uses wordpress login, there is no ‘double security’ sorry, no idea what the above is trying to say, or what exactly the problem is.

    Perhaps you could start by stating what you are trying to achieve?

    In reply to: Topic font size

    @robin-w

    Moderator

    great – glad you are fixed

    In reply to: Topic font size

    @robin-w

    Moderator

    ok, I can see that you have set it to font-size: 18px – so now I can see the car, but without your lifting the motorhuv I can’t see whether your theme is in the way.

    In reply to: Topic font size

    @robin-w

    Moderator

    that makes it kinda difficult to help πŸ™‚ – a bit like asking me what is wrong with your car, but I am not allowed to see it !

    In reply to: Topic font size

    @robin-w

    Moderator

    I’d need a link to an example on your site

    In reply to: Topic font size

    @robin-w

    Moderator

    dashboard>settings>bbp style pack>Topics index styling>item 4

Viewing 25 replies - 3,426 through 3,450 (of 13,976 total)