Robkk (@robkk)

Forum Replies Created

Viewing 25 replies - 501 through 525 (of 3,784 total)
  • @robkk

    Moderator

    Is the forum you created for this group in Forums> All Forums, or in the trash??

    In reply to: Buddypress Profile

    @robkk

    Moderator

    @chigoziekyrian

    Well your BuddyPress profile on your site looks messed up because the new profile image feature BuddyPress added kind of messed up the layout.

    If you have bought this theme that you are using and it is messed up, try to contact the theme author to try to fix this in an update.

    I am not that knowledgeable in templating BuddyPress, but maybe contacting the BuddyPress support team for this kind of thing might be helpful.

    https://buddypress.org/support/

    @robkk

    Moderator

    @omj-1

    Your subforums are for some strange reason not wrapped in a list structure like this.

    <ul class="bbp-forums-list">
        <li class="bbp-forum">
            <a href="http://link" class="bbp-forum-link">Forum 1</a>
        </li>
        <li class="bbp-forum">
            <a href="http://link" class="bbp-forum-link">Forum 2</a>
        </li>
    </ul>

    But instead it is just links.

    Try this CSS instead to have the same layout.

    .bbp-forum-info a.bbp-forum-link {
        display: block;
    }

    @robkk

    Moderator

    Are you using the bbPress v1 forums in BuddyPress and not the separate version 2 forums??

    @robkk

    Moderator

    @mentions are apart of BuddyPress contact their support forum and see if they can help you on this.

    https://buddypress.org/support/

    @robkk

    Moderator

    @reedy

    copy loop-forums.php or any other templates you want to edit to a child theme into a folder called bbpress and you should be fine.

    Theme Compatibility

    @robkk

    Moderator

    Since I am sure your theme is using custom templates to have the edit/or replace the back to disscussions code with <?php bbp_breadcrumb(); ?>. It would be preferred if you copied the file you would need to edit to your child theme in a folder called bbpress.

    @robkk

    Moderator

    @ijamespine

    I could barely find anything before on this weird bug, and I thought JJJ was going to take this topic over. I will try to find whats going on again, but I still think JJJ would be more knowledgeable since he is the lead dev.

    I was able to create a reply in your forums from the backend fine. So at least we know it is something happening on the frontend like scripts, the reply form itself, etc.

    https://jamiepine.com/forums/topic/website-bugs/#post-16142

    @robkk

    Moderator

    @kallard

    Checking your site again, the padding for the bbPress forum header that shows the labels looks a little cozy to the left, you may need to edit the padding-left: 0 !important;, by default I think the padding is set to about 8px, maybe setting 0 to 8px or removing the !important might help with that.

    @robkk

    Moderator

    I see you on here all the time and I’m so glad I got you specifically. If anyone can solve this-it is you.

    Well….not all the time.

    I used this plugin as it seemed to be the closest fit, but it only seems to scroll “Posts” not “Recent Forum Topics”

    Right, I found the plugin and see it does only posts. I did search for an alternative just to see the developer created a ton of similar plugins with similar functionality.

    I found one called Vertically scroll rss feed, that could do what you want.

    Just configure the settings to display how many you want and just make sure the feed url is something like yoursite.com/topics/feed, this is the feed url of the topics archive which will show the most recent created topics on your site.

    @robkk

    Moderator

    @casiepa

    That code will make it where if you visit your profile the title tag will display Your, instead of, Your Profile, Your Topics, or Your Favorites, etc.


    @deall

    Use something like this for only the single topic, and single forum pages.

    Add this php code snippet into your child themes functions.php file, or in a plugin like functionality.

     function rkk_custom_titles( $new_title ){
       if ( bbp_is_single_forum() ) {
      		$new_title['format'] = esc_attr__( '%s', 'bbpress' );
    
      	// Topic page
        } elseif ( bbp_is_single_topic() ) {
      		$new_title['format'] = esc_attr__( '%s', 'bbpress' );
    
      	}
         return $new_title;
     }
    
     add_filter( 'bbp_before_title_parse_args', 'rkk_custom_titles' );
    In reply to: From BBPress to PHPBB

    @robkk

    Moderator

    @boscagoo

    Since this is exporting from bbPress/WordPress to phpBB, I say contact the phpBB community in their support forums.

    @robkk

    Moderator

    @talion7

    Force Password Change is only 12 months old, it should still work fine. If you are being cautious, just make sure you have a backup before you install it on your production site.

    @robkk

    Moderator

    No it is not really about content, what I think your experiencing is a bug. I have seen it before on these forums.

    It has to do with using lists <li> and not surrounding it in an unordered <ul> or ordered list <ol>.

    This issue might be happening, because bbPress uses lists for its forum layout.

    To fix it, you can edit your post and make sure that the lists <li></li> have a surrounding unordered or ordered list around it like so.

    <ul>
        <li>Some List</li>
    </ul>

    @robkk

    Moderator

    How do I add the number of posts under the name and the symbolic images of the user?

    Post count is coming to a future release of bbPress. You can use a plugin like this to add the counts for now.

    https://wordpress.org/plugins/bbp-topic-count/

    What exactly do you mean by symbolic images??

    How do I change the title to any user of an optional title?
    Ex: the title of the current user in the Forum (supervisor) want to have the title of supervisor (supervisor pictures)

    You can rename the current forum roles to whatever you want with this php code snippet in this guide. Add the function to your child themes functions.php or in a plugin that can hold custom code snippets like functionality.

    Layout and functionality – Examples you can use

    You can also create custom user roles with custom capabilities and add the custom names there.

    Custom Capabilities

    How to determine the powers of the supervisors so far have not I transfer Lists Musharraf to it have all the powers modification and deletion of all sections I wanted to be the powers of the supervisor on only a particular section

    Assigning a user to a forum is not possible in the default functionality of the latest stable version of bbPress.

    @robkk

    Moderator

    I am not sure where to put the above or which ones to use.

    Place the php code snippet into your child themes functions.php file or place the snippet in a plugin like functionality.

    @robkk

    Moderator

    I deactivated, that seemed to fix the problem.

    Reactivated, problem still seems fixed.

    Odd.

    That is weird, glad you found the solution to the issue you were facing though.

    @robkk

    Moderator

    Everyone claims to have a widget that does this,

    Where did you get that from information from?

    however all that I have tried ONLY scroll the “Posts” not “Recent Forum Topics.

    How did you get posts?? Explain how you did it, and I will try to see if you can do the same thing for recent topics.

    @robkk

    Moderator

    Check out this topic where the original file came from. A user talks about about the same issue in this post.

    Forums index in the same layout as other bb software

    @robkk

    Moderator

    @kallard There is some layout issues still, hopefully my edited css will fix the rest.

    bullets in front of everything

    @robkk

    Moderator

    @kallard

    Just edited the CSS above copy it and replace it over the one you copied in either your child themes stylesheet or in the custom css plugin. If this does not work, might want to add !important.


    @casiepa
    the forum in the forum list widget is visible.

    @robkk

    Moderator

    Looks Nice!!

    @robkk

    Moderator

    My function is just using a hook and some custom code to add an image. Put the code in your child themes functions.php file instead.

    @robkk

    Moderator

    @robkk

    Moderator

    glad you resolved your own issue 🙂

Viewing 25 replies - 501 through 525 (of 3,784 total)