Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '\"wordpress\'

Viewing 25 results - 1,601 through 1,625 (of 26,829 total)
  • Author
    Search Results
  • #222018
    Robin W
    Moderator

    I’ve just upgraded my test site to wordpress 5.8 and all looks ok.

    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

    #222015
    wonadoomore
    Participant

    HI,

    the only update i have just had is wordpress and i have just noticed that my BBpress has stopped working, but now it has gone from my admin list and the forums or no longer visible. but in plugins it shows that the plugin is still active.

    i have reinstalled the plugin but noting is happening. I havent even got forums in my wordpress dashboard anymore.

    Any ideas? Thanks

    #221999
    Robin W
    Moderator

    I suspect that this is a woocommerce issue. bbpress just uses wordoress login, so it looks like something (eg woocommerce) is hooking to the wordpress login and taking you to shop.

    May well be a setting in woocommerce as to what to do when a user logs in

    #221996
    centralstatesmedia
    Participant
      Running wordpress 5.8, php 7.4

    • have deactivated all plugins except bbPress
    • switched to a default theme
    • flushed permalinks
    • cleared cache
    • repaired forums

    bbPress All Replies still getting a 502 error. What can I do. WP Engine states segmentation faults, which is common with plugin error. Any advice?

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

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

    #221835
    Robin W
    Moderator

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>Forum Display

    #221814

    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

    #221807

    Topic: 404 on Forums

    in forum Troubleshooting
    kathukat
    Participant

    WordPress Version 5.7.2
    BBPress Version 2.6.6
    https://kathukat.com/forums/forum/what-book-are-you-reading-at-the-moment/

    Hi!
    All my newly created forums are giving me this:
    Not Found
    The requested URL was not found on this server.

    Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

    What could be the issue?

    #221806

    Topic: Widget Display issue

    in forum Plugins
    kathukat
    Participant

    WordPress Version 5.7.2
    BBPress Version 2.6.6
    https://kathukat.com/forum/

    Hi!
    I need the “keep me signed in” with the tickbox to be in one line, not like it is at the moment. Can you please instruct me on how to fix it? I know nothing of CSS..

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

    #221789
    Robin W
    Moderator

    try this -old but still works

    bbPress Genesis Extend

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

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

    #221727
    Marco
    Participant

    Hi Robin,

    thank you very much.

    Currently it is not possible to make a nested reply on the first post of the topic. Only at the second post the nested reply works. I think that is not a concept of bbpress and has to do with the last wordpress update?

    Kind regards

    #221712
    Robin W
    Moderator
    #221688
    Robin W
    Moderator

    try

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>bug fixes

    Fix Threaded Replies Jump

    #221626
    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 ;
    }
    #221583
    Robin W
    Moderator

    The code is in my style pack.

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>Topic/Reply Form

    and tick option 18.

    If this does not work, then it may be a theme or other plugin affecting

    Robin W
    Moderator

    ok, so you have users who have a wordpress role, but no bbpress role – yes?

    If so, then testing for a bbpress role, or as you are suggesting a capability such as create_topic seems a sensible solution.

    #221550
    Marco
    Participant

    Hi Robin,

    it’s in the frontend. In the head of the posts there is a button “Papierkorb” (recycle bin).

    I check if the topic is listed in the wordpress-backend after clicking on the Recycle bin in the frontend. And there it is also removed.

    #221548
    Marco
    Participant

    Dear community,

    if I want to delete a topic or a post by clicking on “Recycle Bin”, it is no longer possible to restore the topic/post because the “marked” object has already been removed from the database.
    If I click on “Delete” again, the page is reloaded and I see all the topics that I had deleted. After reloading the page, these posts have disappeared.

    I use the bbpress version 2.6.6. The wordpress version is 5.7.2. I am using the Avada theme. The forum is password secured, so it is not possible for me to share a link here.

    Thank your very much if you know how to fix this issue.

    Kind regards
    Marco

    Robin W
    Moderator

    I suspect those functions are bbpress version 1

    bbpress 2.x just uses wordpress login, so the standard wordpress function

    is_user_logged_in()

    will tell you if the user is logged in.

    bobdobbs
    Participant

    I’m wanting to create conditional logic that responds to whether a user is logged in to bbpress.

    Googling helped me to find these two functions:

    bb_current_user_can()
    bb_is_user_logged_in()

    However, when I use them, I get the error “Call to undefined function bb)…”.

    This happens even when I tie my containing function to the hook ‘plugins_loaded’, which I believe fires after all activated plugins have loaded.

    (I first tried to use the hook ‘wp’)

    So I’m just double-checking…

    Should I be able to use either of those two functions to test if a user requesting a resource is a logged-in bbpress user?

Viewing 25 results - 1,601 through 1,625 (of 26,829 total)
Skip to toolbar