Robin W (@robin-w)

Forum Replies Created

Viewing 25 replies - 4,651 through 4,675 (of 14,283 total)
  • @robin-w

    Moderator

    you are showing a screenshot of what is an incoming email – yes ?

    But it is showing bcc info, which incoming emails do not, so is that info in the bcc field or elsewhere in the email?

    @robin-w

    Moderator

    I could dig into it, but as it is working I won’t 🙂 But thanks for posting the answer, if others find the same issue, I’ll look to update.

    Glad you are fixed !!

    @robin-w

    Moderator

    so no receiving email would list BCC’s, so there are presumably included elsewhere in the email?

    @robin-w

    Moderator

    hmm.. that screenshot – where is it from – is it a screenshot on an email being received? and if so in what mailer ?

    I suspect it is related to your bcc issue, as this screenshot also shows it.

    I’d suggest something is just sending out the email as a stream.

    The troubleshooting in the other thread might help identify

    @robin-w

    Moderator

    sorry, there are 300,000 users of bbpress and you have found a couple of instances where users found an issue.

    In one advice was to troubleshoot the problem, and the user never came back, in the other one user found that it was a wp mail plugin.

    I appreciate that you ae frustrated, but ‘this same exact issue 5 and a half years ago? Is this issue still not fixed?’ is not going to endear you to the free support offered for this free product.

    As a first instance, please do the troubleshooting :

    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

    @bodybyloud I’m most of the way through getting this going – can you test when I am ready?

    and do you know the actual post type names you want to add – ie what they are called in the database ?

    @robin-w

    Moderator

    sorry, nothing to do with bbpress plugin which is where you posted this

    @robin-w

    Moderator

    sorry, bbpress works on themes that comply with the some old wordpress conventions, and nowadays 90% don’t so most don’t.

    No-ones fault, wordpress themes have moved on faster than worpdress 🙂

    @robin-w

    Moderator

    you might do best by installing

    bbp style pack

    and use that to style the forums

    @robin-w

    Moderator

    thanks everyone

    so yes, the plugin won’t work with Gutenberg, as it doesn’t use the same way to interact with metaboxes. I can write some code to do that, and I’ll take a look at what’s involved.

    For those of you that aren’t using Gutenberg eg disabling or installing classic editor plugins, then as far as I can see it still works ok – does anyone have any issues with it ?


    @bodybyloud
    – not sure if you are looking for an additional feature – ie automatically create a topic on post publishing, or if the existing functionality isn’t working for you – ca you come back with some further detail please.

    @robin-w

    Moderator

    so you would set the default role in

    dashboard>settings>forums to be ‘spectator’ and then wordpress login hook to wp-login or init

    add_action('wp_login', 'xxx', 10, 2);  which passes '$user_login, $user'
    add_action('init', 'xxx');

    your function then would check date current user registered, and if over a month, change the role to ‘participant’ using

    
    bbp_set_user_role( $user_id, bbp_get_participant_role() );

    @robin-w

    Moderator

    great – glad you are fixed

    @robin-w

    Moderator

    this will display any topics which have no topic tags I think

    add_shortcode ('empty-tags' , 'rew_empty_tags' ) ;
    
    function rew_empty_tags () {
    	$args = array( 'post_type' => 'topic', 'posts_per_page' => -1 );
    	$loop = new WP_Query( $args );
    	$output = '' ;
    	while ( $loop->have_posts() ) : $loop->the_post();
    		$current_id = get_the_ID();
    		$topic_tags = bbp_get_topic_tag_names( $current_id );
    		if (empty ($topic_tags)) $output.= '<br>'.$current_id ;
    	endwhile;
    	
    	return $output ;
    }

    create a private page and put the shortcode

    [empty-tags] in it

    @robin-w

    Moderator

    the original function is in

    bbpress/includes/common/template.php and starts on line 2227

    line 2419 creates the breadcrumb and to hide you would hide class bbp-breadcrumb-forum

    line 2478 is the best place to change what you want, you would use that filter and cycle though the breadcrumb array and amend or take out the forum one.

    Sorry beyond my time availability to code this for you.

    @robin-w

    Moderator

    @bodybyloud – so are listings a custom post type? (if you know what I am talking about !!)

    @robin-w

    Moderator

    this plugin lets you do that (if I understand your question)

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>Breadcrumbs

    if you want to do it programmatically your self look at the plugins functions file

    includes/functions.php

    around line 607 onwards

    In reply to: Deleting user account

    @robin-w

    Moderator

    since there are decisions to be made on user deletion, these are best left to the admin after an email request.

    eg what do you want to do with content – this will depend on why deletion is being requested – gdpr, or user just wants account locked but content left etc.

    @robin-w

    Moderator

    what summary panel?

    @robin-w

    Moderator

    @erich199 and @bodybyloud – I have now had a look at the code.

    I’m presuming both of you are using wordpress with blocks (ie the newer block editor rather than the classic editor) in posts and pages – I can see that this would not allow you to add topics for posts to new (or amend existing).

    But it would allow the display in posts for old ones.

    Is this what you are seeing ?

    If so I think I can help, if not – can you explain further what is not happening

    @robin-w

    Moderator

    no problem – glad you are fixed

    @robin-w

    Moderator

    @casiepa – are you happy to update this plugin, or can I be added as a contributor?

    @robin-w

    Moderator

    I’ll take a look

    @robin-w

    Moderator

    it’s showing tags with 2 & 1 on my test site.

    If you sure it is an issue, then unlikely but 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

    @robin-w

    Moderator

    ok, thanks for the update – if you find anything further, do come back

    @robin-w

    Moderator

    ok, so I can only suggest you do some issue finding

    Themes

    As a test switch to a default theme such as twentyfifteen, 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

Viewing 25 replies - 4,651 through 4,675 (of 14,283 total)