Robkk (@robkk)

Forum Replies Created

Viewing 25 replies - 451 through 475 (of 3,784 total)
  • @robkk

    Moderator

    There is no answer from the specialists

    It is the holidays where I am from.

    The currently browsing each post functionality, I am not sure, there is not a plugin that I am aware of that can do this for bbPress specifically or for WordPress custom post types. There are user online plugins that display all users online on the site as an alternative to this. You may need to hire a developer to create this currently browsing functionality for you.

    – bbPress Advanced Statistics
    – WP – useronline

    The images by each forum, follow this topic.

    add a "Featured Image" to a forum

    @robkk

    Moderator

    Could be a theme, plugin, or WordPress/bbPress issue. You can try the plugin and theme troubleshooting listed below to see if it is only your currently active theme having the issue present. After the troubleshooting come back with some results.

    Troubleshooting

    In reply to: Login Checkbox style

    @robkk

    Moderator

    @dlndolgion

    Your theme author could have styled the input checkbox on only webkit browsers. I see that you are now using the default WordPress forms, which I usually recommend anyway.

    @robkk

    Moderator

    @moneill18

    What is the exact issue you are getting, it looks fine from what I am seeing.

    @robkk

    Moderator

    @punkdified

    Glad you solved your own issue! 🙂

    In reply to: missing sidebar

    @robkk

    Moderator

    @frankuray

    Contact the theme author about this issue since it is a premium theme.

    In reply to: missing sidebar

    @robkk

    Moderator

    It could be theme related. What is your theme??

    @robkk

    Moderator

    I also should have mentioned before that all of my parent & child forums are set to private.

    Didn’t try a private parent and child forum structure earlier, and then I could duplicate the issue. Thanks @timsilva_ for pointing that out.

    Thanks @tharsheblows for finding the issue, and creating a patch for WordPress. 🙂

    In reply to: How to show topics

    @robkk

    Moderator

    rather than being restricted to one of the 3 sub-forums. I want postings to only be allowed on one of the 3 sub-forums. Can you tell me how to fix that?

    Is this still about only showing one topic without clicking a forum or something else??

    @robkk

    Moderator

    You can Add this to your child themes functions.php file or add this PHP code snippet into a plugin that can hold custom php code snippets like functionality.

    function mycustom_breadcrumb_options() {
        $args['include_home']    = false;
        return $args;
    }
    add_filter('bbp_before_get_breadcrumb_parse_args', 'mycustom_breadcrumb_options');

    @robkk

    Moderator

    The default bbPress forum index shortcode works fine. And it does not have arguments for removing the search bar, and showing specific forums in the forum index only.

    You had some code that uses the shortcodes in the plugin bbp style pack.

    Here is a shortcode from the bbp style pack plugin.

    [bsp-display-forum-index forum= '2932, 2921' breadcrumb='no' search='no']

    @robkk

    Moderator

    See if this CSS fixes the styling issue. Add this custom CSS into your child themes style.css file or add the css code into a separate css plugin that can hold custom css code snippets.

    input[type="text"], 
    input[type="password"], 
    input.input-text, 
    textarea, 
    input.txt, 
    input[type="tel"], 
    input[type="email"] {
        padding: .236em .5em;
        border: 1px solid #e9e9e9;
        font-size: 1em;
        line-height: 1.618em;
        font-family: inherit;
        outline: none;
        background: #fcfcfc;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-appearance: none;
    }

    @robkk

    Moderator

    Here is a fork of that plugin mentioned above for anyone not comfortable editing files.

    https://wordpress.org/plugins/bbp-auto-close-topics/

    @robkk

    Moderator

    It is usually recommended to not edit the core plugin files. Use a custom css plugin and add some of these styles and customize it to how you want it.

    1.

    
    .bbp-forum-content p,
    .bbp-topic-content p, 
    .bbp-reply-content p {
        font-size: 16px;
    }

    2.

    .bbp-topic-author a.bbp-author-name,
    .bbp-reply-author a.bbp-author-name {
        font-size: 14px;
    }

    3.

    Depends on what Avatars exactly? Plus CSS is not the best way to adjust this.

    #bbpress-forums div.bbp-forum-author img.avatar,
    #bbpress-forums div.bbp-topic-author img.avatar,
    #bbpress-forums div.bbp-reply-author img.avatar {
        border: none;
        max-width: 80px;
        padding: 0;
        margin: 12px auto 0 auto;
        float: none;
    }

    4.

    #bbpress-forums div.even,
    #bbpress-forums ul.even {
    	background-color: #fff;
    }
    
    #bbpress-forums div.odd,
    #bbpress-forums ul.odd {
    	background-color: #fbfbfb;
    }

    @robkk

    Moderator

    Copy the archive-forum.php template from the extras folder and place it into the root of your child theme and customize it to your liking, make sure that the template code is similar to the one bbPress is inheriting from your theme.

    Just make sure the get_sidebar() code is in your archive-forum.php template while the rest of your forums are full-width.

    Getting Started in Modifying the Main bbPress Template

    @robkk

    Moderator

    Forums do not even have pagination.

    Here is a ticket for it though. Open it or add a little description of why you want it to the ticket if you want.

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

    @robkk

    Moderator

    @tomzag

    There is not a plugin that can currently do this.

    Please do not bump topics this old again. About 2 years old and earlier is good.

    @robkk

    Moderator

    On your profile page and your forum index page it shoudn’t have this layout by default. It is most likely happening because of the template that bbPress is inheriting. You would need to follow this guide and create a bbpress.php file and place it in your child theme.

    Getting Started in Modifying the Main bbPress Template

    Here is an example bbpress.php file for your Canvas child theme. It is what I created straight from Canvas original theme code.

    https://gist.github.com/robkk/c7ec3a0f2d730f5cb10d

    @robkk

    Moderator

    However, I seem to also have a Forums Page http://www.practicesuccesstools.com/forums/ which I really don’t want.

    This is where the normal forum index should be. It just looks weird because it is inheriting a certain template.

    And the main forum page has a first line of

    “Your blog is your most powerful practice tool › Forums › Forums

    This is because your Front Page that you set in Settings > Reading has that as its title of the page. You may need to just rename that to Home or Front Page. You could possibly add the heading manually in the content, and maybe set a no title template for the page if you have one.

    In reply to: How to show topics

    @robkk

    Moderator

    Here is some CSS to fix the avatar issue I see on your forums. Place this custom CSS anywhere where you could like in a child themes style.css file, or in a separate custom css plugin.

    #bbpress-forums p.bbp-topic-meta img.avatar,
    #bbpress-forums ul.bbp-reply-revision-log img.avatar,
    #bbpress-forums ul.bbp-topic-revision-log img.avatar, 
    #bbpress-forums div.bbp-template-notice img.avatar,
    #bbpress-forums .widget_display_topics img.avatar,
    #bbpress-forums .widget_display_replies img.avatar {
        float: none;
        margin-bottom: 0;
        vertical-align: middle;
        border: 1px solid #ddd;
    }
    
    #bbpress-forums .avatar {
        width: auto;
        height: auto;
        margin-left: inherit;
        display: inline;
    }

    As for what you wanted, you seem to have it by making sure a topic does not have a parent post (forum).

    You may also need to follow this guide to fix your /forums index page, instead of doing the workaround that you have already.

    Getting Started in Modifying the Main bbPress Template

    @robkk

    Moderator

    @stewagner

    I had a feeling you were using that plugin, that is why you linked to the single reply post.

    There is a little shortcode you have to change in the plugins settings for the notification. It should have it this way by default, but it does not. Might need to contact the plugin author to set that as the default setup.

    I think you have to change [reply-url] with [reply-replyurl] in the plugins settings. It adds the settings to bbPress default settings in Settings > Forums.

    @robkk

    Moderator

    Haha sorry I didn’t notify you that your post has been split.

    I assumed it is different from the topic you posted in, that is why I split it it into a new topic in the first place.

    The refreshing when you click the reply link I think is normal. And when I tested it on your site, it does indeed drop down to the reply form to create the reply.

    The link you posted of the reply, only leads to a single reply post not inside of the topic or near the reply form, so the reply link of course would not work in that case.

    @robkk

    Moderator

    This is not really a bbPress issue as the plugin just piggybacks off of WordPress’ core code, could be fixed server side with the explanation in the codex guide, or by using an smtp plugin though.

    There may be many factors to the emails being sent to the spam folder. There are some solutions outlined in the bottom of this WordPress codex guide piece for sending the emails correctly while using the hosts.

    https://codex.wordpress.org/FAQ_Troubleshooting#E-mailed_passwords_are_not_being_received

    Other common suggestions of fixing this issue is using SMTP and seing any emails on your site that way and making sure that you use an email address that has the same domain as your site.

    @robkk

    Moderator

    From what I can see on a topic on your site, your forums seem to be functioning properly now. It is extremely weird that just reuploading your sites files seem to have fixed the issue.

    @robkk

    Moderator

    Guys some devs and I are having a hard time duplicating this issue.

    This is how I tested it and come across no issues.

    WordPress: 4.4
    bbPress: 2.5.8

    I tried these default WordPress themes

    2013, 2014, 2015 and 2016

    I tried these forum structures.

    Category > Forum > Forum
    Category > Forum > Private: Forum
    Category > Forum
    Category > Private: Forum
    Forum > Forum
    Forum > Private: Forum
    Category > Category > Category > Forum
    Category > Category > Category > Private: Forum
    Category > Category > Forum
    Category > Category > Private: Forum

    With the postname permalink structure (since it is most commonly used and I want to try to duplicate it)

    Other things I like to ask is if this is a theme side 404 message being outputted or the normal no topics/forums found here message bbPress outputs like the one below (it could be different if you are using a different language than English for bbPress of course).

    Oh bother! No topics were found here!

    If you guys can help ask a few questions like the ones that @casiepa asked and these additional ones.

    What is your bbPress version?
    Have you already tried troubleshooting for a possible plugin/theme conflict?
    Are you guys using BuddyPress groups for group forums?
    Are the issues only happening on private forums? (Like @kpdub has said)
    Did you try the postname permalink structure?

    Another thing I may suggest to help try to gather information for the developers, is to try to duplicate the issue yourself. Try to duplicate the issue again on a local installation on your computer. If you can tell us step by step to duplicate it.

    Creating a Test Site

Viewing 25 replies - 451 through 475 (of 3,784 total)