Robkk (@robkk)

Forum Replies Created

Viewing 25 replies - 1,076 through 1,100 (of 3,784 total)
  • @robkk

    Moderator

    Try to see if there is a plugin issue also.

    Troubleshooting

    @robkk

    Moderator

    bbPress uses the WordPress registration process, they are unified. THe bbPress shortcodes for lost password, registration, and login are there for frontend forms but they are incomplete in functionality, there shouldn’t be a problem with using the default WordPress registration form by default.

    You can customize the default the WordPress forms by a plugin, or using some PHP functions too.

    @robkk

    Moderator

    Did the default bbPress roles ever work fine?? Or did it break recently after installing a plugin??

    Can you link to this user role and capability plugin you are using??

    In reply to: Missing menu items

    @robkk

    Moderator

    It is just the WordPress backend menu items for managing forums. topics, and replies right??

    what version of bbPress do you have??

    Also I do not think IP address should be a cause to this issue.

    In reply to: Forum Role

    @robkk

    Moderator

    @realshortdatacom I split your replies into a separate topic.

    Missing menu items

    In reply to: Missing menu items

    @robkk

    Moderator

    I split this topic off just so confusion does not start in the other topic.

    All plugins deactivated except bbPress?
    Try a default theme with the only plugin on your site activated being bbPress?

    Also check to see what is your Forum Role in Users > All Users. If it is Participant you may not be able to see the menu items, make sure if you are an Admin that your Forum Role is Keymaster.

    In reply to: forum link in admin

    @robkk

    Moderator

    Closing in favor of your other topic. Please do not make duplicate topics.

    Forum Role

    In reply to: Forum Role

    @robkk

    Moderator

    @mihirpatel7410

    Check your email.

    In reply to: Forum

    @robkk

    Moderator

    Closing in favor of your other topic.

    Forum Role

    In reply to: Forum Role

    @robkk

    Moderator

    Create me a participant/subscriber account and send the login details to my email, then I will will try to find the issue using the account you created and see if regular participants can participate in the forums.

    Contact

    @robkk

    Moderator

    That will not work very well. Think about multiple other replies in a topic, it would all have the same url. At least there is some uniqueness to the url when using an ID.

    I usually noindex replies, topics and forums are more important to index.

    @robkk

    Moderator

    Try some repair tools, do them one at a time, in Tools > Forums.

    @robkk

    Moderator

    Sounds kind of neat for threaded replies, make a feature request in the bbPress trac.

    Login and create a ticket.

    https://bbpress.trac.wordpress.org/

    @robkk

    Moderator

    So it is just the normal Forum notifications in bbPress, that users have to manually subscribe to each forum and not any other plugin that might of had their settings modified?

    @robkk

    Moderator

    Works when I tested it on my test site.

    Try some troubleshooting to see what could be causing the issue.

    Troubleshooting

    In reply to: Forum Role

    @robkk

    Moderator

    Downgrade that testacccount user I created on your site to a participant so that I can see if there is still an issue.

    @robkk

    Moderator

    Subscriber makes sense for a default WordPress role since WordPress was just for blogs, so the default registrant role would be a subscriber to see your blog posts.

    https://codex.wordpress.org/Roles_and_Capabilities

    Try creating a test user by manually doing so with an additional email you may have in the WordPress Register form. Then see what the forum role is. If it is blank still, make a test forum post to see if it changes.

    You can also try some troubleshooting if something is messing with the forum role being set.

    Troubleshooting

    @robkk

    Moderator

    No there is not. I guess you can manually create them though.

    Just get real users to post in your forums. You need some type of community already if you are planning to use forums on your website. Try to get friends/followers from other social networks in your community.

    @robkk

    Moderator

    I think I created a trac ticket for this type of issue, but it might be something I found related to TinyMCE, so I will need to check on that.

    @robkk

    Moderator

    Oh yeah sorry the slug is “profile” on this site.

    It is easy to find a users profile by clicking the author link on their replies/topics.

    If you need something that could link to your profile, like say in the menu, you can try something like this.

    // Filter wp_nav_menu() to add profile link
    add_filter( 'wp_nav_menu_items', 'my_nav_menu_profile_link' );
    function my_nav_menu_profile_link($menu) {
        if (!is_user_logged_in())
            return $menu;
        else
            $current_user = wp_get_current_user();
            $user=$current_user->user_nicename ;
            $profilelink = '<li><a href="/forums/users/' . $user . '/">Profile</a></li>';
            $menu = $menu . $profilelink;
            return $menu;
     
    }

    @robkk

    Moderator

    This does not have to do with bbPress…but.

    If Drupal was your first CMS read this guide.

    https://codex.wordpress.org/Importing_Content#Drupal

    You may need to hire a developer again if you had more customizations created then just migrating from one CMS to another.

    Contact the WordPress support team for any WordPress specific help..

    Support Forums

    @robkk

    Moderator

    Yeah you can insert a shortcode on the forum index page using some hooks that bbPress provides.

    bbp_template_after_forums_loop

    Here is a code snippet that will do what you are looking for though.

    Layout and functionality – Examples you can use

    For the freshness link it should link to whatever was the last activity, with that either being a reply or a topic created. If you want you can filter the forum freshness link to just show topics I guess. The filter is bbp_get_forum_freshness_link

    In reply to: forum link in admin

    @robkk

    Moderator

    what about now? I just saw your forum role was a participant and participants cannot see those menus. Anybody that is an admin should also be a Keymaster which can see these menu items.

    In reply to: forum link in admin

    @robkk

    Moderator

    This is what you are trying to find right??

    Just go to each section and find the forums in Forums > All Forums, topics in Topics > All Topics, and topics tags if you created any in Topics > Topic Tags.

    @robkk

    Moderator

    bbPress does not do this by default, and it might be a little tricky to do this with the subscriptions component.

    What you want may be custom development and you may need to hire a developer to create this for you.

Viewing 25 replies - 1,076 through 1,100 (of 3,784 total)