Search Results for 'buddypress'
-
AuthorSearch Results
-
October 24, 2013 at 7:57 pm #173324
In reply to: Responsive BuddyPress Examples?
TJ
ParticipantOctober 24, 2013 at 4:26 pm #173319Robert Trevellyan
ParticipantI don’t know if there’s a way to do it natively in BuddyPress (I’m new here), but s2member can be used to create additional member fields that are only accessible to administrators, and I expect there are other plugins that offer similar functionality.
October 24, 2013 at 3:48 pm #173316willandmae
ParticipantI just installed Buddypress today, the latest version and for some reason when I write on the activity stream it says 6 hours ago.
Looks like this could be the same issue even with the update. Any simple way to fix this issue? Thanks.
William
October 24, 2013 at 1:56 pm #173313In reply to: BP breaks OP2 pages (a CSS issue)
@mercime
Participant@gcbz BuddyPress is commpatible with nearly all WP themes. Other WP themes have their own proprietary templating system (instead of WP’s loop with the_title and the_content in the theme’s page.php file) which trips BP’s theme compatibility process.
One way to address the issue is by creating a new file named buddypress.php which would be a custom template for all BP content in your site. You’d need to copy the content of your theme’s page.php file and paste it into buddypress.php; then change proprietary template tags to the_title and the_content within the WP loop. After you’re done upload buddypress.php file into your theme’s folder in server.
Or you could customize each BP component in detail https://codex.buddypress.org/themes/theme-compatibility-1-7/template-hierarchy/
October 24, 2013 at 1:18 pm #173312In reply to: Adding a particular user type as friend
shanebp
ModeratorThat can be done via filters.
For example, look at function bp_is_friend in buddypress\bp-friends\bp-friends-template.php
For the members loop, you could use that filter to hook into a custom function that determines whether the members is a client or lawyer or already a friend and return true or false or empty depending on whether you want to show the add_friend button.
October 24, 2013 at 12:35 pm #173311In reply to: Updating avatar from another page.
martinbeaulne
ParticipantI tried to find bp_after_profile_avatar_upload_content somewhere in my buddypress files, and can’t find it…
October 24, 2013 at 10:28 am #173307In reply to: javascript precedence
Paul Wong-Gibbs
KeymasterWe saw your bug report and left an initial response on the ticket at https://buddypress.trac.wordpress.org/ticket/5208.
We need a bit more information to work on this issue. Thanks!
October 24, 2013 at 2:51 am #173300In reply to: Making Buddypress Private.
c.ogden
Participantok so it worked on my test site, now it wont work on the main site im working on. I have it installed on anandapdx.anandaportlandsangha.org it gave me the line 8 error so i did as instructed in the faq and now when i log out and goto the bp pages it goes there as if I hadn’t installed the plugin at all. Let me know what info you need to look into it. Thanks!
October 23, 2013 at 8:52 pm #173296modemlooper
Moderatorlook at the original index.php there will be a call to template parts
October 23, 2013 at 8:08 pm #173295L-tic
ParticipantThanks, that helped. But I’m not really good at coding stuff.
Now I understand, Buddypress will use another template if I created one.But here’s the tricky part for me.
I only need the style, a template has. So if I take the template(gallery), and rename it to
/buddypress/groups/single/index.php ,you can see only the name of the member and that’s all.So what needs to be in a template?
October 23, 2013 at 7:31 pm #173293In reply to: Cannot get Buddypress working in Expound
modemlooper
Moderatorhttps://plugins.svn.wordpress.org/buddypress/tags/1.8/bp-themes/bp-default/_inc/css/default.css
Only use the css from below 6.0 BuddyPress. Before using it place #buddypress before each style declaration. This ensures it will only effect BuddyPress specific HTML. You may still need to edit or remove styles because this is based on BP-default and not the new template files.
#activity-stream {
margin-top: -5px;
}becomes
#buddypress #activity-stream {
margin-top: -5px;
}October 23, 2013 at 5:08 pm #173289In reply to: Cannot get Buddypress working in Expound
TheDutchGamers
ParticipantYeah, but I cannot wave a magic stick for it 🙁
Buddypress in standard form looks different, so that would mean getting that css integrated with our site, but if one does not have the skills…what way to go?October 23, 2013 at 5:03 pm #173287In reply to: Cannot get Buddypress working in Expound
modemlooper
ModeratorBuddyPress css is very minimal as to not force design on a users site. You will need to add your own css to make it look more inline with your sites theme.
October 23, 2013 at 4:26 pm #173285modemlooper
ModeratorRead this to learn about template hierarchy https://codex.buddypress.org/themes/theme-compatibility-1-7/template-hierarchy/
October 23, 2013 at 4:02 pm #173284In reply to: Cannot get Buddypress working in Expound
TheDutchGamers
Participant? The images are not showing?
Buddypress profile;
https://www.dropbox.com/s/ymg9o4qd8wb8d9m/Schermafbeelding%202013-10-23%20om%2017.33.06.pngExpound profile:
https://www.dropbox.com/s/q2301i2cij1oqs6/Schermafbeelding%202013-10-23%20om%2017.33.55.pngWhat is running (version Buddypres)
https://www.dropbox.com/s/3gxvho2c2hfbb93/Schermafbeelding%202013-10-23%20om%2017.36.23.pngOctober 23, 2013 at 3:10 pm #173282In reply to: strong passwords
cwjordan
ParticipantYes, however since that is a WordPress page, the existing WordPress plugins for enforcing strong passwords should handle that case. I have checked the “enforce strong passwords” plugin and it does enforce strong passwords for the password reset page. It just doesn’t know about the Buddypress “General Settings” page.
So what I’d like to know is if there are any strong password plugins, or other solutions, that work well with Buddypress.
October 22, 2013 at 10:06 pm #173243In reply to: Adding buddypress support to a normal theme?
uabassguy
ParticipantLooks like my issue is directly related to Chrome, go figure. Thanks for the tips guys
October 22, 2013 at 8:59 pm #173240In reply to: [Resolved] Buddypress Pages Post ID
mizzinc
ParticipantOk. Think the filter route is the way to go. I will post my results.
Thanks Hugo.
October 22, 2013 at 8:52 pm #173239In reply to: [Resolved] Buddypress Pages Post ID
Hugo Ashmore
ParticipantThink you are, but not quite sure what to suggest, but using options table is a possibility? But even then you have to remember that the page doesn’t really exist or at least technically you only have one template file to add logic to, although you can extend that with the additions made to template hierarchy in 1.8.
You possibly need to be targeting filters at the content based on a page check perhaps in combo with a series of option values?
October 22, 2013 at 8:47 pm #173237In reply to: [Resolved] Buddypress Pages Post ID
mizzinc
ParticipantSimple styling options. Show/Hide page title, breadcrumbs, feature image?
Hmm, after reading your extended response, perhaps I am approaching this from the wrong angle.
October 22, 2013 at 8:44 pm #173236In reply to: [Resolved] Buddypress Pages Post ID
Hugo Ashmore
Participantsorry extended my response above.
You may need to explain why you want or need post_meta for a bp page, there wouldn’t be any would there?
October 22, 2013 at 8:41 pm #173235In reply to: [Resolved] Buddypress Pages Post ID
mizzinc
ParticipantWow, fast response.
Hi Hugo, I require the post ID when viewing a page to access post_meta information. This works when accessing a WordPress page. When accessing the default ‘Activity, Groups or Members’ page the post ID returns ‘0’, why?
October 22, 2013 at 8:37 pm #173233In reply to: [Resolved] Buddypress Pages Post ID
Hugo Ashmore
ParticipantWhat’s the problem?
BP pages are not strictly posts they use the_content() to simply pass through BP data, they are a sort of faux post.
Why do you need a class there, there are plenty of class tokens to hook onto.
October 22, 2013 at 12:42 pm #173208In reply to: javascript precedence
Henry
MemberYou can use Trac if you need to report a bug in BP core:
https://buddypress.trac.wordpress.org/With reference to (2), you could always remove the action then enqueue the script you want.
remove_action( 'wp_head', bp_core_confirmation_js', 100 );October 22, 2013 at 3:02 am #173198In reply to: Adding buddypress support to a normal theme?
modemlooper
ModeratorAny plugin that requires bp-default may not work right with BP 1.7 plus. A lot of plugins were bound to the templates of bp-default.
-
AuthorSearch Results