Robkk (@robkk)

Forum Replies Created

Viewing 25 replies - 776 through 800 (of 3,784 total)
  • In reply to: richer toolbar

    @robkk

    Moderator

    @tecca @denaize

    Yeah I hate any commercial items that require a yearly renewal of service. Is there anything you would like to see that is premium that does not have a free alternative??


    @denaize

    I forgot that in my editor.js file I hadn’t yet figured out how to customize the image and link quicktags. The guide you found will hopefully help, it will not add a bbcode toolbar though, but TinyMCE is good.

    In reply to: Content Above Forum

    @robkk

    Moderator

    Do you want it over all forum forum pages, the forum root page, or a single forum page??

    @robkk

    Moderator

    @tomtower

    Is that an extra avatar or just an image to show that the user donated?

    This might be possible if you have something that tracks what users have donated. Like if the data was stored in the user meta table.

    https://codex.wordpress.org/Database_Description#Table:_wp_usermeta

    https://codex.wordpress.org/Function_Reference/add_user_meta
    https://codex.wordpress.org/Function_Reference/get_user_meta

    This might be considered custom development and you may need to hire a developer to create this for you.

    @robkk

    Moderator

    Use this custom css. Add the custom css to your child themes style.css file or anywhere else you can add custom css like in a custom css plugin.

    #bbpress-forums .reply {
        position: relative;
        top: inherit;
        right: inherit;
        line-height: inherit;
        font-size: inherit;
    }
    In reply to: richer toolbar

    @robkk

    Moderator

    @denaize

    for bbcode use gd bbpress tools. It does not modify the quicktags toolbar automatically but you can change the output of the buttons though.

    I have to find my custom editor.js file so give me a minute to help you on that.

    @robkk

    Moderator

    I think she has already got this. Since here function here has it where it shows up in a single forum.

    extra fields in topicform (edit-function)

    @robkk

    Moderator

    🙂 Your Welcome!

    @robkk

    Moderator

    Does the fields show up, if you do not have the condtional for the single forum?

    I did follow this guide and it shows up in the edit topic area.

    https://wp-dreams.com/articles/2013/06/adding-custom-fields-bbpress-topic-form/

    @robkk

    Moderator

    I guess you could use a hook if you want to add the styles in the head.

    How much, and what are you trying to style specifically?

    Every forum and the topics under that forum should have a class that says bbp-parent-forum-ID and the normal post-ID class, with the ID being the post ID.

    @robkk

    Moderator

    Glad you got yourself sorted out in your issue.

    I also see that there is a huge avatar issue on your site so inserting this CSS into your child themes style css file or in a custom css plugin will fix that.

    #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 {
        margin-bottom: 0;
        vertical-align: middle;
        border: 1px solid #ddd;
        width: 14px !important;
        height: 14px !Important;
    }

    @robkk

    Moderator

    @casiepa

    Good find!!

    @robkk

    Moderator

    @gin_marcin

    You can also use the code I posted here. It is straight from that plugin.

    Show 5 Recent Topics without Pagination Just like on bbpress.org homepage

    In reply to: Version 2.6

    @robkk

    Moderator

    @hdcms

    Yeah the release of 2.6 has been pushed back a couple times because of new bugs found, and further performance enhancements discovered.

    Its a good and bad thing. Better software for you, but it might take awhile before it is released.

    Anything that you might think should be released earlier(like a bug fix) in bbPress could released in a 2.5.9 security release.

    The phpbb thing has to be in the 2.6 though, since it requires some major changes.

    @robkk

    Moderator

    Glad you resolved your own issue, and also glad you shared your fix!! 🙂

    @robkk

    Moderator

    @jrunfitpro

    Glad you resolved your own issue! 🙂

    @robkk

    Moderator

    @mica123

    When you said you got this.

    bbpress
    Response headers:
    cache control: max-age=2592000

    I think you just selected something similar to this in your dev tools.

    bbpress.css?ver=2.5.8-5815

    This is a CSS file, and the cache information you are outputting is just the browser cache information for that CSS file.

    Usually you might find this in your htaccess file for code for browser caching, and this exactly for some CSS files.

    ExpiresByType text/css A2592000

    In the list of names of files being requested, you can try to pick another CSS file like

    responsive.css?ver=1.9.7.7

    And you should see the caching age be the same thing since it is a CSS file.

    Most of the time the browser caching code would be present in your htaccess file wrapped in something like this.

    <IfModule mod_expires.c>

    But there could also be WordPress plugins that add browser caching like some minify plugins.

    You and your dev have to backtrack and find out where and what is causing the browser caching. It is tough for me to find it on my end without a bunch of guessing, but if you want me to try to take a look at it, you can contact me through email here. https://robkkdev.wordpress.com/contact/

    Also that custom login script would not cause this type of issue.

    Also you can delete this piece of code since you are probably not using it correctly.

    wp_enqueue_script( ‘custom-login’, get_stylesheet_directory_uri() . ‘/css/style-login.js’ );

    @robkk

    Moderator

    (I am not sure how to turn off the theme to test this fault with a bundled theme like Twenty Twelve…

    Go to Appearance > THemes and activate a theme like twenty twelve temporarily.

    Also I think some other user has had the exact same issue with PMP Pro, I wonder if using the plugin could cause an issue.

    I will test to see if it is causing the issue.

    @robkk

    Moderator

    This is a common theme issue related to the theme styling absolute positioning the comment reply link for WordPress comments.

    Use this custom css to fix the issue. Add it in your child themes style.css file or anywhere you can add custom css like in a custom css plugin.

    #bbpress-forums .reply {
        position: relative;
        top: inherit;
        right: inherit;
        line-height: inherit;
        font-size: inherit;
    }

    @robkk

    Moderator

    It is a common issue where CSS for WordPress comments reply link has conflicts with actual reply posts in bbPress.

    Copy this custom css in your child themes style.css file or in anywhere you can put custom css like in a custom css plugin.

    #bbpress-forums .reply {
        font-size: inherit;
        padding: inherit;
        position: relative;
        right: inherit;
        top: inherit;
    }

    @robkk

    Moderator

    @gperez-tl

    Well if you see the error message in a red notice on your bbPress forums, it is definitely bbPress pushing the error.

    @robkk

    Moderator

    I had to get to get a confirmation from Stephen but

    _bbp_topic_count = only published topics

    _bbp_total_topic_count = published/spam/unapproved/trashed topics. Basically the actual total topic count.

    @robkk

    Moderator

    @gperez-tl

    Are you only getting this error when trying to restore trashed topics as you replied to the other topic about it.

    @robkk

    Moderator

    @mica123

    You need to start seeing if other parts of your site is being cached and it is not just the bbPress portions, if it the bbPress portions make sure to see if it is just you must be logged in notice or other areas like the user’s profile pages to see if it is related to @gperez-tl’s issue.

    You may need to create me a test user account so that I can confirm of the issue you are getting, and to also test other areas the cache issue might be present.

    @robkk

    Moderator

    @gperez-tl

    The fix will make it into 2.6 or earlier I bet.

    Haven’t tested the latest patch but I can assume that the issue could be resolved.

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

    @robkk

    Moderator

    @gperez-tl

    Post the code you are using for the custom howdy message in the toolbar. I do not think this would cause an issue but just double checking.

    Do the same thing with the profile menu items code.

    Just know that you said these were bbPress’s issue although the menu system and the WordPress toolbar are both part of WordPress. The registered menu and menu location are your theme. I do not know how bbPress could cause an issue with this.

    So, (visiting any author’s profile and) clicking on some of these items will show the author’s data, while clicking in others will retrieve current user profile data or something.

    Wait so clicking on anyone’s frontend forum profile could show the current users profile for some reason, or is it just the menu links as you stated.

    You did not edit the user profile templates heavily? you said you are receiving issues with users profiles.

    IF you haven’t already try to track down what is causing the issues you are getting. Since you have a custom theme see if the issue persists in a default theme like twenty twelve, deactivate all plugins but bbPress.

    Troubleshooting

    Your profile pages shouldn’t just be magically be cached by bbPress.

    You may need to create me a test user account so that I can confirm of the issue you are getting, and to also test other areas the cache issue might be present.

Viewing 25 replies - 776 through 800 (of 3,784 total)