Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress"'

Viewing 25 results - 1,476 through 1,500 (of 26,879 total)
  • Author
    Search Results
  • #226093

    In reply to: Missing Forum Menu

    dilnawaaz
    Participant

    By keymaster, do you mean complete back-end control? If yes, then the user has complete administrator control. We can’t see a ‘keymaster’ role either on wordpress or bbpress.

    We are getting a ‘Topics’ and ‘Reply’ tab but not the ‘Forum’ tab in the menu. Here’s the screenshot – https://prnt.sc/22qcdfs

    #226055
    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

    #226049
    Robin W
    Moderator

    try this

    add_filter( 'get_the_archive_title', function ($title) {
     if ( is_category() ) {
     $title = single_cat_title( '', false );
     } elseif ( is_tag() ) {
     $title = single_tag_title( '', false );
     } elseif ( is_author() ) {
     $title = '<span class="vcard">' . get_the_author() . '</span>' ;
     }
     
     return $title;
    });

    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

    #226037

    In reply to: Missing Forum Menu

    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

    #226035
    Robin W
    Moderator

    bbp style pack

    has a link that adds a redirect to the topic in the email

    dashboard>settings>bbp style pack>subscription emails>auto login

    No idea if your redirection would take precedence.

    #226019
    ecollart
    Participant

    I fully agree on your last remark but it was done like that long before I started managing that site !

    I want ideally to set 1 to 4 moderators max per forum (all with same @domain.com in their ID)

    I’ll check deeper if any way to change/migrate user ID in WordPress but it looks not easy…

    Eric Collart

    #226016
    ecollart
    Participant

    Well,

    I got time this evening (Belgium time).

    The problem described here is caused by bbPress; reproduced on a deafault install of WP with only bbPress as plugin.

    That’s an annoying one because you cannot change user ID in WordPress and I have 250 accounts.

    I hope we can find some solution or workaround …

    Eric Collart

    #226014
    Robin W
    Moderator

    I am not certain, but on save a function is run that includes the wordpress function ‘sanitize_text_field’ which may well be stripping the @

    what the code does is to try and find out the user_id of the name entered, and then passes this to

    bbp_add_moderator( $forum_id, $user_id );

    If I am guessing that this is not something you need to do too often, you could do it programatically if you know how?

    in essence there are 2 functions

    bbp_add_moderator( $forum_id, $user_id );
    bbp_remove_moderator( $forum_id, $user_id );
    #226013
    ecollart
    Participant

    Hello,

    we create our WordPress accounts using a mail address as the username (not the best idea but I wasn’t admin at decision moment) and it is used as user ID in WP.

    When I try to add such an ID as moderator of a specific forum, the ID is changed: the “.” is replaced by a dash “-” and the “@” is simply removed.
    As a result, the moderator doesn’t receive any notification.

    Not sure bbPress is the problem or again due to one of our plugins.

    Just let me know if that problem is known or not at bbPress…

    Thanks for your support

    Eric Collart

    Robin W
    Moderator

    I don’t know how well it might work with your buddypress set up, but try

    Private groups

    #225945

    In reply to: Subscription Mails

    Robin W
    Moderator

    ok, so I am wondering if something else is interfering.

    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

    #225942

    In reply to: Subscription Mails

    Chris
    Participant

    Sure Robin. I’m not sure if it’s wordpress default template, but I’ll show you what I receive (as a test user, not admin) and what I set up.

    Here’s what I receive:
    Example

    Here’s my template:
    Template

    I also noticed that “Don’t show this message” (Oh bother! No forums were found here!) doesn’t work for me. I ticked it, but the message is still there. Is there a php snippet I could add to my Woody snippet plugin? Thank you.

    #225941

    In reply to: Subscription Mails

    Robin W
    Moderator

    can you give an example of a ‘default wordpress notification’ please

    #225935
    Chris
    Participant

    HI. I have bbp Style Pack. I set up nice templates in Subscription Emails tab, but users don’t receive those mails. They receive default WordPress notifications. How to force bbPress to send those nice looking templates I’ve created?
    Thank you
    Chris

    #225921

    Just these!

    We also use custom themes:

    #225916
    Robin W
    Moderator

    no idea, but I googled around and found this

    https://www.hostinger.co.uk/tutorials/wordpress-broken-permalinks

    I’d suggest taking a look at your htaccess file, but it’s not a speciality of mine, so proceed with caution 🙂

    #225892
    Robin W
    Moderator

    @oscowordpress1 – it does on my test site

    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

    #225890
    Robin W
    Moderator

    it’s great that you have taken the time to understand the standard tests required, they do solve 80% of issues which is why we ask for them, we don’t do it to annoy you.

    the issue may well be a 3 plugin combination thing – so bbpress in combination with another plugin and jetpack, which is why ideally you would carry out the tests.

    Given that you cannot, then there are two elements to user access – the wordpress level and the bbpress level

    eg ‘administrator’ for wordpress and ‘keymaster’ for bbpress.

    I think you best bet would be to set up a user and work through the combinations to see what works and what doesn’t – eg does admin and participant work, but not subscriber and keymaster, does admin work with moderator etc etc. That would help decide what the override that is allowing ‘admins’ to see stuff is.

    Then come back and report

    #225885
    pschlenker
    Participant

    Our website uses the bbPress plugin to create forums. When I connect the Jetpack plugin to WordPress.org, non-admin users get a “Well, this is embarrassing” 404 not found error when they try to access any of the forums, whether the forums are public or private. Users with the Administrator role are able to access the forums without difficulty. When I disconnect the Jetpack plugin, forum access for non-admin users is restored.

    Before you suggest that I disable all plugins and themes, and reactivate them one by one until I find the offending plugin/theme, be advised that I can’t do that on our live site because it would cause all sorts of issues for our users. I can’t troubleshoot this issue in my local development environment because I can’t connect the Jetpack plugin to WordPress.org when the website is running in my local development environment.

    And yes, I already tried switching to a different permalink format/structure temporarily, and then switching back. It did not solve the problem.

    I’m running WordPress 5.8.2, and bbPress plugin version 2.6.9. Our website is located at https://evangelizationschool.com

    #225882
    pelmoggian
    Participant

    Hi!

    I have a straightforward question – how do I move the existing bbpress data (Forums, Topics, Replies) from one WordPress installation to another?

    I see there is an ‘Export’ and ‘Import’ function in WordPress, where Forums, Topics and Replies can each be exported separately.

    But – would importing them into a functioning website overwrite existing pages and posts?

    Or is there something I am just missing in this whole process, and it is really just super easy, barely an inconvenience?

    #225855
    Robin W
    Moderator

    your theme/developer has added the ‘no-js’ class to the very top, hence why the other codes are not working.

    can you try this snippet

    add_action( 'wp_footer', 'rew_supports_js' );
    
    function rew_supports_js() {
    	echo '<script>document.documentElement.className = document.documentElement.className.replace(/\bno-js\b/g, '') + " js ";</script>';
    }

    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

    #225808
    Robin W
    Moderator

    it’s a wordpress rather than bbpress issue.

    The documentation could be clearer, but that section refers to the tinymce not the text editor

    I’ve not tried it, but this might help

    Paste As Plain Text By Default

    #225780
    Robin W
    Moderator

    @oscowordpress1

    There is a temporary fix, either

    1. use code

    if( !function_exists( 'bbpress_browser_supports_js' ) ){
    	function bbpress_browser_supports_js() {
    		echo '<script>document.body.classList.remove("no-js");</script>';
    	}
    	add_action( 'wp_footer', 'bbpress_browser_supports_js' );
    }

    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

    or

    2. install and activate

    bbp style pack

    #225728
    Robin W
    Moderator

    this is a temporary fix, the bbpress authors are looking at a permanent one

    if( !function_exists( 'bbpress_browser_supports_js' ) ){
    	function bbpress_browser_supports_js() {
    		echo '<script>document.body.classList.remove("no-js");</script>';
    	}
    	add_action( 'wp_footer', 'bbpress_browser_supports_js' );
    }

    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

    #225532
    Robin W
    Moderator

    2.6.8 does not fix.

    so use either

    add_filter ('bbp_body_class', 'rew_unset_no_js') ;
    
    function rew_unset_no_js($classes) {
    	if (in_array ('single-forum', $classes) || in_array ('single-topic', $classes)) {
    		if (($key = array_search('no-js', $classes)) !== false) {
    			unset($classes[$key]);
    		}
    	}
    return $classes ;
    }

    or if that doesn’t work

    add_filter ('bbp_body_class', 'rew_unset_no_js') ;
    
    function rew_unset_no_js($classes) {
    	if (($key = array_search('no-js', $classes)) !== false) {
    			unset($classes[$key]);
    		}
    return $classes ;
    }

    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

Viewing 25 results - 1,476 through 1,500 (of 26,879 total)
Skip to toolbar