Robin W (@robin-w)

Forum Replies Created

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

    Moderator

    the keymaster role is further down the profile – it is an additional role to the wordpress one.

    If you have keymaster set for you, then 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

    that’s not code from bbpress.

    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

    This should do it

    add_filter( 'bbp_get_breadcrumb', 'rew_remove_xx_breadcrumb' , 10 , 4) ;
    
    function rew_remove_xx_breadcrumb ($trail, $crumbs, $r, $args) {
    	if (strpos($trail,  'Forum Name') !== false) {
        $trail = '' ;
    	}
    	return $trail;
    }

    replace ‘Forum Name’ with the name of the forum you want to exclude

    but it would also get rid of the breadcrumb in any forums for a topic with the forum name as the topic title – ie it is just searching for any occurrence of the text in the breadcrumb string !!

    @robin-w

    Moderator

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>Forum Display

    @robin-w

    Moderator

    great – glad you are fixed !!

    In reply to: 404 on Forums

    @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

    In reply to: 404 on Forums

    @robin-w

    Moderator

    try

    dashboard>settings>permalinks and just click save – this resets the permalinks and may help

    @robin-w

    Moderator

    Install

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>bug fixes

    and you will see the ability to add back keymaster.

    Once done, you can deactivate and delete the style pack plugin, or you may find the other features useful

    @robin-w

    Moderator

    Check the roles- does the user accessing have the ‘keymaster role’

    dashboard>users>all users

    @robin-w

    Moderator

    try this -old but still works

    bbPress Genesis Extend

    @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

    In reply to: bbPress + Elementor

    @robin-w

    Moderator

    thanks for that great update

    I’ll take a look at the template

    @robin-w

    Moderator

    just run it on my test site, and the counts stay as they should

    @robin-w

    Moderator

    not sure I can help further – would require a deep delve into your website

    @robin-w

    Moderator

    I suspect this is to do with your import, not a bug in the count

    @robin-w

    Moderator

    hmmm… nor sure how a computer can recognise the difference between an image and a link

    @robin-w

    Moderator

    🙂

    @robin-w

    Moderator

    oh and you lose the editor in

    dashboard>sttings>forums>Post Formatting>uncheck

    @robin-w

    Moderator

    using unfiltered HTML is a wordpress capability, normally given to Editors and above, so standard subscribers should not be able to user HTML

    @robin-w

    Moderator

    🙂

    @robin-w

    Moderator

    @robin-w

    Moderator

    try

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>bug fixes

    Fix Threaded Replies Jump

    @robin-w

    Moderator

    I’ve just taken a look at the front end restore.

    The bbpress restore function calls a wordpress function wp_untrash_post which sets the restored status to ‘draft’.

    I’m pretty sure that it didn’t used to do that, so am presuming it’s a wordpress change.

    However if you are using

    bbp style pack

    then I’ve added a fix for this to the ‘bbpress bug fixes’ tab.

    If you want code, then 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 ('wp_untrash_post_status', 'rew_correct_untrash_status' , 10, 3) ;
    
    function rew_correct_untrash_status ($new_status, $post_id, $previous_status) {
    	$post_check = get_post( $post_id );
    	//update_post_meta ($post_id , 'rew_type', $post_check->post_type) ;
    	//if it's a reply or topic, then change status back to $previous_status
    	if ($post_check->post_type == bbp_get_reply_post_type() || $post_check->post_type == bbp_get_topic_post_type()) {
    		$new_status = $previous_status ;
    	}
    return $new_status ;
    }

    @robin-w

    Moderator

    There are 2 standard bbpress templates, one for the topic form, and one for the reply form.

    My plugin amends these templates, but I’d bet that so does the Yuozify plugin. Plugins tend to load in alphabetical order, so the Yuozify probably takes preference, but in any case, if we reversed it, my plugin would overwrite any changes they have made.

    I don’t have access to the Yuozify plugin as it is paid.

    Chances are that if we put a combined one in your child theme it would work, but this would be beyond free help, although not expensive.

    Maybe contact me via my contact page http://www.rewweb.co.uk/contact-me/ and I’ll see if I can help further

    @robin-w

    Moderator

    🙂

Viewing 25 replies - 3,426 through 3,450 (of 14,231 total)