Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress"'

Viewing 25 results - 1,601 through 1,625 (of 26,818 total)
  • Author
    Search Results
  • #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?

    ecarlson
    Participant

    I’m not sure if this is an issue with bbPress or BuddyPress; forgive me if I’m posting this in the wrong place. I recently added BuddyPress to my installation which already had bbPress, and I see that when a BuddyPress group has a forum, it’s added to the list of forums like the bbPress ones. Awesome!

    However, if I change the description of the BuddyPress group, the bbPress forum list still shows the old description. If I go to Forums > All Forums, I can edit the description which updates the description on the forums list. Is this a bug, or are you supposed to have to update it in two places? Is it allowing for some users to have a different description in bbPress vs BuddyPress?

    bbPress: 2.6.6
    BuddyPress: 8.0.0
    Wordpress: 5.7.2
    Site (though most of the forums are private): https://antiochfc.org/forums

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

    #221531
    joeltagert
    Participant

    I am running BBpress with the Highend theme. I have set up the forums and they look great, but the “subscribe” button is missing. “Allow users to subscribe to forums and topics” is checked in the settings. I assume it’s a theme conflict, but without the forum subscribe button, the functionality for our users is crippled. Is there any way to correct this? Thanks!

    Wordpress 5.7.2
    bbpress 2.6.6

    https://zencenterofdenver.org/forums/

    Robin W
    Moderator

    ok, so if you are a keymaster then I can only suggest

    1. reset the permalinks – dashboard>settings>permalinks and just click save – this resets them.

    2. if that doesn’t fix, 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

    #221471
    uksentinel
    Participant

    Apologies for opening an old thread, given w3 total cache is not ideally suited for caching for BBPRESS – but is good for wordpress, is there an alternative cashing plugin suitable for BBPRESS or is BBPRESS generally best left un cashed ?

    Thanks

    goosie00
    Participant

    I’ve done something, but I don’t know what? I think the slugs for the ‘forum’ page may have had a conflict (there was a warning message, but I changed the names), and I think the tabs went missing after I rebuilt the tables, but the tabs have totally disappeared now, and I don’t know how to get them back. Its a backend issue, as its not affecting the front end – you can still get to the forum page
    I uninstalled and deleted/reinstalled bbpress, and it hasn’t brought the tabs back.
    I’m really worried that if I delete the Buddypress plugin, I will lose my settings and customer lists of Participants. Any advice would be very much appreciated.
    bbPress Version 2.6.6
    Buddypress Version 8.0.0
    Wordpress the latest
    FORUM HERE

    Robin W
    Moderator

    if they are not showing, 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

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

    #221424
    Robin W
    Moderator

    This still works

    bbPress – Moderation Tools

    #221400
    Robin W
    Moderator
    #221386
    Robin W
    Moderator

    This plugin will let you do this

    Private groups

    in the settings, create an ‘admin’ group and a ‘user’ group.

    use the topic permissions to set this

    and then for that forum (you can leave the others alone) , just assign that forum to the admin and user groups and save. You can then use the topic permissions to allow admins to post, but users just to view.

    Finally use the ‘assign groups to roles’ tab to give admins the ‘admin’ group and subscribers the ‘user’ group

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