Search Results for 'buddypress'
-
AuthorSearch Results
-
November 6, 2017 at 5:57 pm #268855
Caprilli
ParticipantI 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.
November 6, 2017 at 4:30 pm #268851In reply to: Moving time-since span
David Cavins
KeymasterThe simplest answer is probably to style that span as
display: blockthen 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.November 6, 2017 at 4:25 pm #268849In reply to: Login Issues
David Cavins
KeymasterThere 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.
November 5, 2017 at 7:44 pm #268837In reply to: Call to undefined function bp_is_member()
Brajesh Singh
Participanthi,
bp_is_member() is not available in BuddyPress.For your task, You should use
bp_is_user()Hope that helps.
Regards
BrajeshNovember 4, 2017 at 11:07 pm #268826In reply to: Wiki within Each Group
thinkinginxyz
ParticipantHello 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
TingNovember 3, 2017 at 5:14 pm #268808In reply to: Goodbye Buddypress?
David Cavins
KeymasterHi @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#L98I’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_dircould be useful, but there’s a filter on the final result atbp_core_fetch_avatarfor the “html” output version andbp_core_fetch_avatar_urlfor 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.
November 3, 2017 at 4:56 pm #268806In reply to: Wiki within Each Group
David Cavins
KeymasterI’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
November 3, 2017 at 4:53 pm #268805In reply to: set a default tab for non friends
David Cavins
KeymasterWhat about using a custom member front page? Then you’d have total flexibility:
Custom Front Pages for your users profilesOtherwise, I think you could conditionally filter
bp_displayed_user_get_front_templateto specifymembers/single/activity.phpfor self and friends andmembers/single/profile.phpfor non-friends. See this function:
https://buddypress.trac.wordpress.org/browser/tags/2.9.2/src/bp-members/bp-members-template.php#L1397November 3, 2017 at 4:45 pm #268803In reply to: Profile Fields Date format-> Range not working.
Boone Gorges
KeymasterSure, 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_Typeclass 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.phpThere are a few changes you’ll need to make in order for this to show two datepickers instead of one.
– The
set_formatvalidation 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 theedit_field_htmlmethod 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 theedit_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.
November 3, 2017 at 4:38 pm #268802In reply to: Bullet Points on the Buddypress Menu
David Cavins
KeymasterRegarding 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.
November 3, 2017 at 2:58 pm #268795In reply to: Custom tab and content on BP profile
Boone Gorges
KeymasterAs @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-encompassingBP_Componentclass. 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/
November 3, 2017 at 2:53 pm #268794In reply to: User Follow Blog Categories and Tags
Boone Gorges
KeymasterHi @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.
November 3, 2017 at 2:50 pm #268793Boone Gorges
KeymasterCan 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?
November 3, 2017 at 2:44 pm #268791Boone Gorges
KeymasterHi @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#L18The 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' ) ); } );November 3, 2017 at 2:24 pm #268788Boone Gorges
KeymasterHi @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.phpand 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#L72Some 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/4278Good luck with your project!
November 3, 2017 at 12:54 pm #268786852cmd
ParticipantHi 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!
November 3, 2017 at 6:01 am #268782Topic: iOS Image Rotation Issue
in forum How-to & Troubleshootingbcanr2d2
ParticipantI 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)
November 3, 2017 at 5:49 am #268781In reply to: Can´t upload avatars and proflie covers on ios
bcanr2d2
ParticipantWhat 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/
November 3, 2017 at 12:13 am #268779In reply to: Goodbye Buddypress?
VentureCore
ParticipantThe 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…
November 2, 2017 at 9:25 pm #268776In reply to: get age from date
valuser
ParticipantTry this Old link from Brajesh
November 2, 2017 at 4:48 pm #268774In reply to: Online users widget – get user description.
shanebp
ModeratorYou’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.phpNovember 2, 2017 at 11:38 am #268766In reply to: Goodbye Buddypress?
thinkinginxyz
ParticipantI 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.
November 1, 2017 at 10:44 pm #268762In reply to: get age from date
psnation
ParticipantBuddyPress 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.
November 1, 2017 at 12:15 pm #268754amitrwt
ParticipantI 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.October 31, 2017 at 9:35 pm #268747shanebp
ModeratorDid you look in the
singletemplate files?
buddypress\bp-templates\bp-legacy\buddypress\members\single\ -
AuthorSearch Results