Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 7,601 through 7,625 (of 69,044 total)
  • Author
    Search Results
  • Caprilli
    Participant

    I wholly agree with the sentiments of the guy who posted this.

    I think bbPress and BuddyPress are, frankly, appalling offerings to ordinary WordPress users.

    They may well be excellent tools for developers, but they are the most user-unfriendly bits of software I have encountered in WordPress. Indeed, they make me wonder whether WordPress is for users anymore, rather than professional developers.

    It simply should not be this complex, and dismally supported, to have a forum on WordPress.

    I agree wholly with the view that there should be a premium paid-for service with a solution aimed at WordPress users – that is people who create editorial and run a site. Not the professional developers, who can look after themselves.

    It does not surprise me that outfits like Wix are growing given this direction of WordPress. If it is for developers only – who hone their marketable skills doing this stuff – then fine.

    For an ordinary user, who is not totally useless on WordPress, I have found this BBPress / BuddyPress combination utterly toxic and a waste of time.

    #268851

    In reply to: Moving time-since span

    David Cavins
    Keymaster

    The simplest answer is probably to style that span as display: block then you have a number of options for forcing it below other elements. It’s going to depend a lot on your theme.

    If you choose to modify the template, the template to modify would go in child-theme/buddypress/members/member-header.php.

    #268849

    In reply to: Login Issues

    David Cavins
    Keymaster

    There are a few non-BuddyPress reasons I can think of for this:

    • The page is cached by WP Super Cache or a similar plugin
    • Your shared server has some sort of caching built-in (like object caching or expires headers)
    • Your browser is using the cached version from your last visit to that page (try a different browser to test)

    The setup you describe works ok for me on my local test (no caching enabled) installation. You might contact your hosting company to see what is enabled on your shared server.

    #268837
    Brajesh Singh
    Participant

    hi,
    bp_is_member() is not available in BuddyPress.

    For your task, You should use
    bp_is_user()

    Hope that helps.

    Regards
    Brajesh

    #268826

    In reply to: Wiki within Each Group

    thinkinginxyz
    Participant

    Hello David,

    Thanks for you reply.

    Actually I am using already BuddyPress Docs, but for other purpose. I am using it to share files withing the groups. Also I am using the bbPress to have a forum inside the group for users ask for help and keep a conversations about some topic, however, I was looking how to create a wiki within the each group. I want to create the wiki because i want to create like a knowledge-base or central library with all the knowledge organized in a well manner. And I want that this is populated and maintain by the users. Do you know how can i do this? any paid plugin?

    Thanks in advance

    Kind Regards
    Ting

    #268808

    In reply to: Goodbye Buddypress?

    David Cavins
    Keymaster

    Hi @VentureCore-

    It seems like you can make avatars work remotely. Check bp_core_fetch_avatar() for some filter opportunities. https://buddypress.trac.wordpress.org/browser/tags/2.9.2/src/bp-core/bp-core-avatars.php#L98

    I’ve not done what you’re trying to do, but it seems that the filter points bp_core_avatar_folder_url, bp_core_avatar_folder_dir could be useful, but there’s a filter on the final result at bp_core_fetch_avatar for the “html” output version and bp_core_fetch_avatar_url for just the url.

    Cover images should actually be easier to manage. Take a look in https://buddypress.trac.wordpress.org/browser/tags/2.9.2/src/bp-core/bp-core-attachments.php#L28

    Alternatively, you could filter the other plugin to ignore avatar and cover image requests. Lots of ways to solve this, I’d bet.

    #268806

    In reply to: Wiki within Each Group

    David Cavins
    Keymaster

    I’d use BuddyPress Docs for this purpose, but I’m a fan of and contributor to that plugin. It’s great for creating organized shared libraries with tags and search ability.

    If you’d rather it be more forum-like, use bbPress.

    -David

    #268805
    David Cavins
    Keymaster

    What about using a custom member front page? Then you’d have total flexibility:
    Custom Front Pages for your users profiles

    Otherwise, I think you could conditionally filter bp_displayed_user_get_front_template to specify members/single/activity.php for self and friends and members/single/profile.php for non-friends. See this function:
    https://buddypress.trac.wordpress.org/browser/tags/2.9.2/src/bp-members/bp-members-template.php#L1397

    #268803
    Boone Gorges
    Keymaster

    Sure, I’m happy to point you in the right direction.

    The BuddyPress Custom XProfile Field Type plugin is probably a good one to start with. It uses the BP_XProfile_Field_Type class to register its fields. It even has an existing Datepicker field that you can use as a starting place: https://github.com/donmik/buddypress-xprofile-custom-fields-type/blob/master/classes/Bxcft_Field_Type_Datepicker.php

    There are a few changes you’ll need to make in order for this to show two datepickers instead of one.

    – The set_format validation regex expects a single date. This will need to be modified for your new format. https://github.com/donmik/buddypress-xprofile-custom-fields-type/blob/1126cf093bd2b6e9f917b5c15f52e203f17cbb9e/classes/Bxcft_Field_Type_Datepicker.php#L14
    – You’ll need to modify the edit_field_html method so that it loads two separate input fields, and then write some JavaScript that assigns a jquery-datepicker to each one of them. Then you’ll need to write a little bit of extra JS that combines the two datepicker inputs into a single (probably hidden) field, which is the one that BP will actually save to the database. https://github.com/donmik/buddypress-xprofile-custom-fields-type/blob/1126cf093bd2b6e9f917b5c15f52e203f17cbb9e/classes/Bxcft_Field_Type_Datepicker.php#L29
    – If you decide to store the start and end date in a single row in the profile field, you’ll also need some logic that splits it into start and end when you load the edit_field_html. Another option is to store the concatenated display text – say, April 2017 - May 2017 – in BP’s native xprofile field, and to store the start and end date separately, as xprofilemeta. You’d need a custom save routine for this, but it may be a bit cleaner.

    Good luck! Sounds like a fun project.

    #268802
    David Cavins
    Keymaster

    Regarding your first question, it appears that your theme is adding marks to your navigation menu. You’ll need to inspect the element to see what rule is causing it, then override it. (Or choose a different theme.)

    Regarding your second question, if your theme has a full-width page template, select it for your BuddyPress pages. If it doesn’t you’ll have to create one, or choose a different theme.

    #268795
    Boone Gorges
    Keymaster

    As @shanebp notes, adding the tabs themselves is pretty straightforward. In addition to bp_core_new_nav_item() etc, you might also look into the more all-encompassing BP_Component class. See https://codex.buddypress.org/developer/bp_component/, https://codex.buddypress.org/developer/function-examples/core/bp_core_new_nav_item/.

    It’s the content of these tabs that is likely to be more complex. If all you want is a series of links, it’s easy. But if you want a way for users to create content, you’ll need to build forms, storage methods, etc. For this, you might want to look into adopting an existing solution. The BuddyForms plugin is a pretty powerful starting place for this kind of thing: https://themekraft.com/buddyforms/

    #268794
    Boone Gorges
    Keymaster

    Hi @kevinc4m – The BuddyPress Followers plugin allows users on a multisite installation to follow specific sites: https://github.com/r-a-y/buddypress-followers

    It sounds like this is not quite what you’re looking for – you want the ability to follow tags/categories, and it doesn’t sound like multisite is part of the equation – but this plugin may serve as a sort of inspiration for how the tag/category feature might work, at least in the UI. I also think that the plugin could probably be a basis for building the feature you’re looking for, as it does much of the work: storing user follow status, integrating items into user activity streams, and so on.

    Unfortunately, I’m not aware of an existing tool that will do this without some customization.

    Boone Gorges
    Keymaster

    Can you share the format of the “view content” links in the digest emails? (I’m assuming you’re using buddypress-group-email-subscription – let me know if that’s correct.) They should have a redirect_to parameter, but it sounds like it’s not being respected or is being lost somehow.

    Are you using any plugins that interfere with the way that WP logins work? Perhaps Auth0 or another SSO plugin?

    #268791
    Boone Gorges
    Keymaster

    Hi @mycraze – It sounds as something is failing to load the jquery-cookie script. BP attempts to do it in the function bp_core_register_common_scripts(): https://buddypress.trac.wordpress.org/browser/tags/2.9.2/src/bp-core/bp-core-cssjs.php?marks=54#L18

    The first thing to check is to see whether the page is attempting to load the script in the first place. View the source of the page, and look for a tag that looks something like this, in the document head:

    <script type='text/javascript' src='http://example.com/plugins/buddypress/src/bp-core/js/vendor/jquery-cookie.js?ver=2.9.2'></script>

    If you *do* see this, but are still having the problem, try the following:

    * Load the script URL directly in a new tab. Does it load?
    * Open the Network tab of your browser’s developer tools. Is the browser unable to access the file for some reason? Perhaps a 404 or some other error?

    If you do *not* see the script tag, then it’s a server-side issue. My guess, in this case, is that you are using a third-party theme that loads the bp-legacy JS file without also properly declaring the dependencies. To verify, switch to a default WP theme (like Twenty Sixteen) to see if the problem clears itself up. If this is the problem, you may want to talk to your theme author, or share the relevant code from the theme (probably looks like wp_enqueue_script...) and we may be able to help you correct it. In the meantime, you may be able to work around this problem by manually enqueing the cookie script in your functions.php file. Something like:

    
    add_action( 'wp_enqueue_scripts', function() {
        wp_enqueue_script( 'bp-jquery-cookie', buddypress()->plugin_url . 'bp-core/js/vendor/jquery-cookie.min.js', array( 'jquery' ) );
    } );
    
    #268788
    Boone Gorges
    Keymaster

    Hi @redcompolitica – I’ve built multi-page registration processes for clients in the past, but unfortunately, it’s not very easy to do – BP’s registration system is not built in such a way as to make it easy.

    If your main goal is to make registration less overwhelming, you might consider moving some or most of your registration fields out of the “Base” group. This will mean that they don’t show up during the registration process, and users will have to fill them in by editing their profile after signing in.

    If your goal is to have *conditional* registration steps – where, for example, step 2 depends on a specific value provided in step 1 – then I’m afraid it’d have to be custom-built. Much of the work could be done with a custom theme template members/register.php and by modifying the way that registration data is saved and validated https://buddypress.trac.wordpress.org/browser/tags/2.9.2/src/bp-members/bp-members-screens.php?marks=113#L72

    Some Trac tickets that are somewhat related that you might want to follow:
    https://buddypress.trac.wordpress.org/ticket/1842
    https://buddypress.trac.wordpress.org/ticket/4278

    Good luck with your project!

    852cmd
    Participant

    Hi David,

    Thanks for getting back to us.

    Yes, we had to turn off the “Allow registered members to upload avatars” under BuddyPress Settings – Options in the hope of letting people fill out the form in the meantime, but the form still doesn’t work with or without the avatar upload. Now, we tried to turn avatar back on and it won’t show up on the form.

    No, it’s not a separate plugin. The form is part of BuddyPress.

    Thanks!

    #268782
    bcanr2d2
    Participant

    I am still afflicted on my site by having the dreaded iOS image EXIF issue. Where uploaded pictures are incorrectly rotated when loaded into the Avatar upload screen.

    All of the fixes/plugins are for iOS are for the dashboard area, and not for the BuddyPress uploads. (Image Rotation Fixer and iOS Image Fixer)

    I have an iPhone 7 with ios V 11.1 and the problem still exists.

    I am currently running BuddyPress 2.7.4. (If this problem is fixed in newer versions, please let me know)

    #268781
    bcanr2d2
    Participant

    What version of BuddyPress are you using? It seems to be an issue with the CSS that safari tries to load.

    refer to this thread https://buddypress.org/support/topic/cant-upload-profile-pic-with-ipad-or-iphone/

    #268779

    In reply to: Goodbye Buddypress?

    VentureCore
    Participant

    The main issue I’m (still) trying to solve is that when users upload avatars or backgrounds they are saved into directories under the uploads folder. That’s all fine and dandy until LargeFS, an awesome product by wpengine.com, pushes those images up to your AWS S3 bucket (and removes them from the server to allow for better unlimited storage). The only plugin that seems to have an issue with this is Buddypress. LargeFS intercepts the request for an image and if it’s not present in the folder on your server it retrieves and caches it from your S3 bucket and/or CDN.

    Buddypress just sees an empty folder and reverts everything to default.

    If I could find a way to store the background profile images outside of the uploads folder like you can with avatars; (see script in initial post) then all would be heavenly again. No searching or tweaking has delivered a solution yet.

    I’ve tried tweaking core files and writing a redirect a dozen different ways and ‘no joy’.

    So if you’re more brilliant than I am and I know most of you are, a solution would bring tears of joy to my eyes and I would bring her (buddypress) flowers and chocolates and stuff…

    #268776

    In reply to: get age from date

    valuser
    Participant
    #268774
    shanebp
    Moderator

    You’ll need to write a custom widget.
    There is lots of docs online about writing a WP widget.
    You’ll find BP specifics in this file:
    buddypress\bp-members\classes\class-bp-core-members-widget.php

    #268766

    In reply to: Goodbye Buddypress?

    thinkinginxyz
    Participant

    I feel the same, they sell BuddyPress and BBpress like super nice tools but actually, it is a waste of time. For me I feel like amateur tool. You always need help to do anything very basic, and the support is not there. Very frustrated!

    At the end, with all my regret, i have been forced to move to joomla. I found what i need there. So sad.

    #268762

    In reply to: get age from date

    psnation
    Participant

    BuddyPress Xprofile Custom Fields Type plugin is what I use to do this.

    It shows up on the profile as age. If you want it on the members page that takes some code editing. I saw a tutorial on BPDev site.

    amitrwt
    Participant

    I want to set a profile field where a user will list his experience in a particular organization. From and To.. I tried Date -> Range but it just renders single dropdown. The best possible scenario would be having a datepicker with range.?
    I’ve installed BuddyPress Xprofile Custom Fields Type but even this doesn’t have a range date picker.
    Anyone has any suggestion/solution would be appreciated.

    shanebp
    Moderator

    Did you look in the single template files?
    buddypress\bp-templates\bp-legacy\buddypress\members\single\

Viewing 25 results - 7,601 through 7,625 (of 69,044 total)
Skip to toolbar