Robkk (@robkk)

Forum Replies Created

Viewing 25 replies - 2,951 through 2,975 (of 3,784 total)

  • Robkk
    Moderator

    @robkk

    this plugin does this type of thing but you have to manually configure that part

    https://wordpress.org/plugins/bbpress-go-to-first-unread-post/changelog/

    you would have to copy the bbPress Recent Topics widget edit it/rename it and change where it renders the topic title to gtf_topic_title()


    Robkk
    Moderator

    @robkk

    we´re finding bbpress so incredibly frustrating, no private messages, no way to tell users if x post has unread replies (I mean, really!? how is a user supposed to use it regularly!?)

    sorry about your experience so far, there is alot of unread posts plugins that do unread posts quite differently in each one.

    search google for these.

    bbPress – Pencil Unread
    bbPress Unread Posts
    bbPress New Topics
    bbPress Go To First Unread Post
    bbPress – Mark as Read
    bbPress – Thread Catch-Up

    and as for private messages their are a bunch of WordPress plugins that do that also. 1 for sure is BuddyPress which is made by the same developer as bbPress.

    check out this topic for other examples besides BuddyPress’ private messages feature. https://bbpress.org/forums/topic/private-messages-not-with-buddy-press/

    if you have any other issues with bbPress please make a new topic and the support will try to handle it as soon as possible.


    Robkk
    Moderator

    @robkk

    @newdermeo

    hover over bbpress.org in the toolbar there should be a dropdown that says create new topic

    or click the forum you want to create your topic in the forum list in the sidebar and scroll to the bottom of the page and create a new topic from there.


    Robkk
    Moderator

    @robkk

    do this instead since you want it for all of the bbPress login forms.

    .bbp-login-form {
    	max-width: 270px;
    }

    and you could put the CSS in many places

    a custom css plugin
    jetpacks css module
    your child themes stylesheet
    the bbpress.css stylesheet that should be copied to your child theme in a bbpress folder


    Robkk
    Moderator

    @robkk

    you can see it comes back to normal on very small sizes close to 200 maybe settings a max width for the login form would do the job.

    try something close to this , edit if you want.

    .widget.bbp_widget_login .bbp-login-form {
    	max-width: 270px;
    }

    Robkk
    Moderator

    @robkk

    ive found this https://wp-push.com/extension/pushover-notifications-for-bbpress/ its a good 16 bucks in US.

    it says it sends notifications to your phone if you have the pushover app (also paid $5 maybe??)

    if you want to create an app out of your WordPress/bbPress site i think this service would work apppresser.com/

    there might be other ways too , maybe hooking into the official WordPress app but im not sure, this might need some custom development and you would need to hire a developer.


    Robkk
    Moderator

    @robkk

    if you have WordPress all set up and also downloaded and activated bbPress.

    then follow this article and see if it helps.

    https://codex.bbpress.org/getting-started-with-bbpress/

    if you want more explained articles on how to set up your forums

    there is a step by step 5 part guide on how to setup bbPress

    in codex.bbpress.org/

    still have issues then please reply back


    Robkk
    Moderator

    @robkk

    sorry about you getting no responses

    im lately fiddling with importing other forum software to bbPress

    its a learning curve but yeah maybe in the future we wont have to always rely on Stephen for importing forums support tickets when he is busy.

    if you have any other information to post to help out future users who have could come across the same issue please do so.


    Robkk
    Moderator

    @robkk

    if you talking about the white-space on the left and right sides of the page.

    did you create a bbpress.php file??

    https://codex.bbpress.org/theme-compatibility/getting-started-in-modifying-the-main-bbpress-template/

    In reply to: Topics hidden

    Robkk
    Moderator

    @robkk

    i think this topic is resolved.


    @jayavinoth
    if you still have an issue reply back.


    Robkk
    Moderator

    @robkk

    This site has been temporarily disabled, please try again later.

    i guess ill try again later


    Robkk
    Moderator

    @robkk

    if you dont want users to subscribe to forums/topics at all disable subscriptions in settings>forum

    if you dont want users to favorite topics disable subscriptions in settings>forum

    the subscription and favorites sections will disappear if disable both

    you can also copy the file content-single-user.php into a folder called bbpress in your child theme. then delete these lines of code below.

    <?php if ( bbp_is_favorites() ) bbp_get_template_part( 'user', 'favorites'       ); ?>
    <?php if ( bbp_is_subscriptions() ) bbp_get_template_part( 'user', 'subscriptions'   ); ?>
    <?php if ( bbp_is_single_user_topics() ) bbp_get_template_part( 'user', 'topics-created'  ); ?>
    <?php if ( bbp_is_single_user_replies() ) bbp_get_template_part( 'user', 'replies-created' ); ?>

    Robkk
    Moderator

    @robkk

    hmmm i see you hid the notice with some CSS for a quick solution.

    you can check and see if creating a bbpress.php file would solve the issue.

    https://codex.bbpress.org/theme-compatibility/getting-started-in-modifying-the-main-bbpress-template/

    In reply to: WordPress dashboard

    Robkk
    Moderator

    @robkk

    see if this works

    add it to your function.php in your child theme or functionality plugin.

    /**
     * Disable admin bar on the frontend of your website
     * for subscribers.
     */
    function rkk_disable_admin_bar() { 
    	if( ! current_user_can('edit_posts') )
    		add_filter('show_admin_bar', '__return_false');	
    }
    add_action( 'after_setup_theme', 'rkk_disable_admin_bar' );
     
    /**
     * Redirect back to homepage and not allow access to 
     * WP admin for Subscribers.
     */
    function rkk_redirect_admin(){
    	if ( ! current_user_can( 'edit_posts' ) ){
    		wp_redirect( site_url() );
    		exit;		
    	}
    }
    add_action( 'admin_init', 'rkk_redirect_admin' );

    Robkk
    Moderator

    @robkk

    It doesn’t show all the forum categories. It’s showing up like a blog post/page instead.

    this is common , all you have to do is create a bbpress.php file your bbpress installation.

    heres more instructions on how to create one.

    https://codex.bbpress.org/theme-compatibility/getting-started-in-modifying-the-main-bbpress-template/

    Why is it showing /forums/forum? I only want it to be for example /forums

    its suppose to be setup that way.

    you can disable the Prefix all forum content with the Forum Root slug in settings>forum, its recommended though.

    Now, if I try to go to http://www.mydomain.com/blog/forums/forum/ to see the whole list of forums like it should be

    you should go to http://www.mydomain.com/blog/forums/

    /forums/ for all forums

    /forums/forum for specific forum.


    Robkk
    Moderator

    @robkk

    your registration page is made from BuddyPress.

    unless there is another registration made from the bbPress register form shortcode that is causing the problem.

    you can try deactivating your plugins one at a time and try to find if there is a plugin causing the issue.

    other than that i guess go to https://buddypress.org/support/


    Robkk
    Moderator

    @robkk

    @supremor

    if you used Robins CSS , remove that and it will show up in the widget area.

    do what Stephen said just disable search in settings>forums so it wont appear in the forum archive page


    Robkk
    Moderator

    @robkk

    @supremor

    post a link to your site

    a little CSS could fix up the input box awkwardness and also help put labels on top.


    Robkk
    Moderator

    @robkk

    contact the plugins author on their support forum and tell them that it has issues with hotmail.

    they would know more about how to fix the issue.


    Robkk
    Moderator

    @robkk

    @matheus-horst

    did you also check your spam folder??


    Robkk
    Moderator

    @robkk

    i just tested twentyfifteen and the quick tag bar shows up fine as long as you have post formatting in enabled in settings>forums.

    i also tested the tinymce tab plugin and it seems to work well together.

    does clicking any of the tabs not show the toolbar , sometimes in the past it would show nothing until you click the tabs.

    and also make sure to double check just in case you cant see them.

    the buttons and button font color could be white based on the image you posted.

    In reply to: Template

    Robkk
    Moderator

    @robkk

    1. heres a pretty good tutorial in the docs to style your bbPress forums with some CSS

    bbPress Styling Crib

    2. if your talking about maybe downloading some already styled templates there is none, i think bbPress standalone had this but theme compatibility makes giving away already styled templates pretty tough.

    if you actually want to see what users could create with bbPress check out some of the sites listed here

    bbpress.org/about/examples/

    3. as long as you follow this link

    codex.bbpress.org/theme-compatibility/

    you can use the templates to customize bbPress forums to your liking.

    also checking the rest of the docs wouldnt be bad too.

    codex.bbpress.org/


    Robkk
    Moderator

    @robkk

    i found this plugin that does exactly what you say.

    as long as you have allow anyone to register to site activated then it looks like it should work fine.

    https://wordpress.org/plugins/dm-confirm-email/

    there are plenty more plugins that also do this type of thing but they do additional things lik custom login forms. What i used in the past was a plugin called Register Plus Redux.

    if you want something different and with more features go search the WordPress repository.


    Robkk
    Moderator

    @robkk

    hmmm thats weird

    hopefully while your trying to fix it , you didn’t do more harm than good.

    heres a list of things you can do

    contact your hosting providers support

    see if they can find any issues you might have if you installed an SSL certificate or any other issues that might cause it like a CDN setup or such in their environment but im only guessing.

    post a topic here https://wordpress.org/support/forum/installation

    im saying post a topic here because I don’t know much about this kind of issue , and im sure the people at their support team can help. I just know some stuff about bbPress and some stuff in WordPress to get by, like I said it’s highly unlikely that bbPress or BuddyPress could cause the issue im not ruling it out but its highly unlikely.

    if your site is a live site do a scan also at sitecheck.sucuri.net

    do a scan just in case something bad might of happened.

    you can also wait until someone else picks up the topic from here and give you any other additional information.


    Robkk
    Moderator

    @robkk

    I haven’t found a plugin with that kind of functionality

    you can create a sticky topic on your site, with guidelines , rules , and stuff to know about like whats the limit you held for editing a post.

    other than that this kind of functionality seems kind of fancy so maybe some custom development is needed. go to http://jobs.wordpress.net/ and post a job.

Viewing 25 replies - 2,951 through 2,975 (of 3,784 total)