Robkk (@robkk)

Forum Replies Created

Viewing 25 replies - 526 through 550 (of 3,784 total)
  • @robkk

    Moderator

    I don’t know if this is because they are posting as a guest and they need to create an account in order to show up in my admin panel?

    Yeah, guest users do not have accounts to your website so they will not be in the users section.

    Even as a guest I am still required to submit my email with my topic post….so where is this email going/being stored????

    I think it is in the post meta, so the post_meta table in your database.

    In reply to: smiley emoticons

    @robkk

    Moderator

    Please find enclosed a link for the test Website:

    Well I am not seeing an issue with my forums disappearing with WP Monalisa activated.

    Where do I activate TinyMCE and find the default toolbar editor in WordPress? Or are you talking about BBPress Dashboard?

    Well your not using TinyMCE so you would see the error I come across. Like said there is an issue, so you may not need to activate it. There is a plugin on wordpress repository and a code snippet in the codex to allow TinyMCE.

    As previously mentioned it didn’t work with a freshly installed bbPress Website. I had nothing else installed except the bbPress Forum. The enclosed totius.tk however is now a plugin.

    Yes, wordpress plugins do not work for the old standalone version, but with the plugin version. I cannot test to see if an install of bbPress v1 would cause an issue, as I cannot run this on wamp. Kind of do not know how to install bbPress v1 anyway.

    Sorry, I forgot to post the WordPress Dashboard that comes up for Settings/Writing:

    A new version of WordPress probably removed the smilies setting like the wp monalisa plugin says, there was a version with that setting before.

    @robkk

    Moderator

    Just ignore that error, it might be caused by something other than bbPress.

    bbp_setup_current_user was called incorrectly

    If you did not try the plugin troubleshooting already, do so.

    @robkk

    Moderator

    no problem 🙂

    @robkk

    Moderator

    no problem 🙂

    @robkk

    Moderator

    @seyibest Put this loop-forums.php file in your child theme in a folder called bbpress.

    https://github.com/robkk/bbPress-Hierarchical-Forum-and-Category-Layout

    so, how do i make it to be in a place like just only Login/Register on just a menu bar like

    They added custom menu item links in the menu section. You can create links leading to the WordPress login/register forms. There is also this php code snippet here to add links, you might need to add a conditional to it for a specific menu.

    add_filter( 'wp_nav_menu_items', 'rkk_add_auth_links', 10 , 2 );
    function rkk_add_auth_links( $items, $args ) {
        if (is_user_logged_in() {
            $items .= '<li><a href="'. wp_logout_url() .'">Log Out</a></li>';
        }
        elseif (!is_user_logged_in() {
            $items .= '<li><a href="'. site_url('wp-login.php') .'">Log In</a></li>';
            $items .= '<li><a href="'. site_url('wp-login.php?action=register') .'">Register</a></li>';
            $items .= '<li><a href="'. site_url('wp-login.php?action=lostpassword') .'">Lost Password</a></li>';
        }
        return $items;
    }

    and moreso, i made the homepage to be the forum. how can i code it in such a way that 2-3 of my post will appear on the homepage follow by the forum beneath it?

    There is a plugin called bbp style pack that can give you a shortcode to display the latest number of topics on your site. bbPress has this shortcode for the forum archive, [bbp-forum-index]

    @robkk

    Moderator

    Glad your issue is resolved.

    @robkk

    Moderator

    It is definitely possible. I kind of meant that you could edit and customize the plugin to do what you want, or hire a developer to create this custom functionality for you.

    In reply to: No Forum Settings

    @robkk

    Moderator

    no problem 🙂

    @robkk

    Moderator

    Yeah it is not really Jetpack’s issue at all. Since I see this topic, it seems like your issue is resolved now.

    https://wordpress.org/support/topic/password-reset-link-appears-to-be-invalid?replies=7

    @robkk

    Moderator

    There could be a plugin that affects TinyMCE that could be causing this issue. Try some plugin troubleshooting.

    Troubleshooting

    I could also check out your theme if you tell me what it is.

    @robkk

    Moderator

    Alright I see you have your forums cleaned up already. If you need any more help or have questions about stopping spam in general, post your questions here.

    @robkk

    Moderator

    There should be pagination at the top and bottom of a topic by default?? Do you have reply threading enabled? With reply threading enabled there is no pagination.

    @robkk

    Moderator

    Here is the ticket for forums pagination.

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

    @robkk

    Moderator

    @danceee3

    Oh I forgot, put the customized loop-single-topic.php you have to a folder called bbpress in your child theme. bbPress should then use that file, and you should see the changes immediately.

    @robkk

    Moderator

    no problem

    @robkk

    Moderator

    You can just use the code I posted here. It is more customizable then the other one in the codex article and the other topic you linked to. I might change it in the codex article later on to this one too.

    Login, Register, Lost Password links

    You can put a custom page like this '/page-slug/'. Here I made it so where when a user logs out they go to a page called “Logout” that has the permalink slug “logout”.

    add_filter( 'wp_nav_menu_items', 'rkk_add_auth_links', 10 , 2 );
    function rkk_add_auth_links( $items, $args ) {
        if (is_user_logged_in() && $args->theme_location == 'sub-header-menu') {
            $items .= '<li><a href="'. wp_logout_url('/logout/') .'">Log Out</a></li>';
        }
        elseif (!is_user_logged_in() && $args->theme_location == 'sub-header-menu') {
            $items .= '<li><a href="'. site_url('wp-login.php') .'">Log In</a></li>';
            $items .= '<li><a href="'. site_url('wp-login.php?action=register') .'">Register</a></li>';
            $items .= '<li><a href="'. site_url('wp-login.php?action=lostpassword') .'">Lost Password</a></li>';
        }
        return $items;
    }

    @robkk

    Moderator

    Since I see you have Avada, you may need to go through some plugin troubleshooting.

    Troubleshooting

    Also your notification bar says for users to not register, you can disallow that by going into Settings > General and disable Anyone can register. Enable it again whenever you want.

    @robkk

    Moderator

    Try this custom css, I think I got ahold of most of the styles you would need to fix this issue. Make sure to place these CSS styles into your child themes stylesheet or anywhere else you can place custom CSS styles into, like in a separate plugin

    #bbpress-forums ul>li {
        overflow-x: visible !important;
        overflow-y: visible !important;
        padding-left: 0 !important;
    }
    
    #bbpress-forums ul>li:before {
        margin-left: 0 !important;
        content: ‘‘ !important;
        margin-right: 0 !important;
        bottom: 0 !important;
        position: relative !important;
        display: block !important;
    }
    
    #bbpress-forums li {
        color: inherit !important;
        margin: 0 !important;
    }

    @robkk

    Moderator

    You could have done what most theme authors do with the post tag list when they are customizing it and replace <?php bbp_topic_tag_list(); ?> with something like this.

    <?php bbp_topic_tag_list( 0, array(
    	'sep'    => ''
    ) ); ?>

    @robkk

    Moderator

    and whether they can respond to the posts via e-mail?

    bbPress cannot do this by default, you may need a plugin for this. I think their is one in the WordPress repository called bbPress bbPress post by email. It needs to be hooked up with an SMTP service though.

    @robkk

    Moderator

    This is a known bug. HEre is the ticket.

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


    @tkserver
    ’s right it is a bit of both.


    @wafadul
    follow this topic if you haven’t seen @tkserver’s BuddyPress topic yet.

    BBpress post edit causes multiple activity entries

    @robkk

    Moderator

    On my menu on wordpress I am getting link.com/forum-4/ and I cant remove the “-4”?

    Well you created a page called forum 3 other times that is why it adds the -4 to the end.

    If you are creating a “forum page”, know that you really do not have to do this. Just go to /forums or whatever the forum root slug is set in your forum settings in Settings > Forums.

    I’m getting the same error on bbpress with some forums.

    Are you naming a forum, “forum”??

    Also, where is the function for users to register and their profiles?

    Since your using the bbPress plugin, you register through WordPress login and register forms. bbPress has some shortcodes you can place in a page, and they will redirect you to the default WordPress forms since they aren’t really dedicated forms.

    Profiles should be present if users click their name on the bbPress login widget, the author link in their posts, or you can add a custom menu item using a function in this guide.

    Layout and functionality – Examples you can use

    @robkk

    Moderator

    @kallard

    This is a common layout issue and like you said caused by the themes css and because bbPress uses lists instead of a table layout.

    You can most likely fix this just with some Custom CSS. When I visited your site I do not see the discussion forums present, so can you activate bbPress again so I can help with this by giving you some CSS to fix the layout issue.

    @robkk

    Moderator

    Thanks for the snippet, but will that add pagination or just put more forums on the page?

    There is no pagination for the forum archive page. There is this, but it outputs pagination for a single forum page.

    <?php bbp_forum_pagination_links(); ?>

    I might have to create a ticket to possibly add this in the future.

    I’d love to come up with some kind of awesome method to self organize all of these books, but that is unlikely to happen given the many restraints.

    I was thinking a better tagging system might help, but yeah.

Viewing 25 replies - 526 through 550 (of 3,784 total)