Search Results for 'buddypress'
-
AuthorSearch Results
-
November 5, 2015 at 5:54 pm #246394
In reply to: Changing page title for single member
danbp
ParticipantHi,
if you’re comfortable with php, see here:
Here, an example:
https://buddypress.org/support/topic/how-to-change-tags-order/
Another use case here:
https://buddypress.org/support/topic/how-to-get-notification-count-code/Hope this help !
November 5, 2015 at 12:09 pm #246381In reply to: Deafult Group page
Venutius
ModeratorI found this tat might help:
November 5, 2015 at 11:28 am #246377In reply to: Deafult Group page
Venutius
ModeratorYou might want to look at BuddyPress Group Extras. This allows you to create and extra page and set it as the landing page.
November 4, 2015 at 8:04 pm #246365r-a-y
KeymasterPuffyjoe’s example should work in BuddyPress 2.4.0.
BP 2.4.0 will pass all activity update form data, so you can save custom activity data a little bit easier.
If you want to test, v2.4.0 is currently in release candidate status. Read the announcement post here:
November 4, 2015 at 7:57 pm #246364r-a-y
KeymasterIt’s a little bit of both.
Please post a ticket on Trac as I experienced a similar issue just this week. (Not emoji-related, but still!)Update – There is already a ticket:
https://buddypress.trac.wordpress.org/ticket/6346#comment:16November 4, 2015 at 9:42 am #246354In reply to: change the registration page text
danbp
ParticipantHi,
this can be done by template overload and a child-theme.
November 4, 2015 at 9:24 am #246351In reply to: Limit Signups to Age (18)
danbp
ParticipantBuddyPress doesn’t handle the register process, it only show it and add some custom field via xprofile component.
Search on WP’s Plugin Repository or “wordpress age verification” with google. 😉November 4, 2015 at 9:14 am #246349In reply to: Uploaded translations not working
danbp
ParticipantAre you sure that the translation exist ? Have you a buddypress-xx_XX.mo file ? Where xx_XX is the iso of your language (eg en_US).
mois a compiled format and the only file that php need to translate your strings.To get such file, you need to use a language compilator like poEdit. Changing strings in only buddypress-xx_XX.po has no effect on the translation. This format is a simple text format intended to be used by the translator.
And the buddypress.pot (note the final T) is also a text format file which contains the list of all strings you can translate.
Where do you add your copy and which language do you use ?
November 4, 2015 at 9:07 am #246348In reply to: A lot of forums for a group
danbp
ParticipantHave you correctly set up group forums ? Please read here(if you read french), ensure anything is correct and apply what i explained above.
Main reference is here
November 4, 2015 at 9:03 am #246347In reply to: Karmas and Credits
danbp
ParticipantYes i understand what you want to do, but you’re on a BuddyPress help forum. Your questions are not related to BuddyPress but to myCred. For such custom usage, please user the myCred help support.
November 4, 2015 at 6:48 am #246342In reply to: A lot of forums for a group
Lacod
ParticipantThanks
But for me, on the “parent forum” choice, there’s only forums, there is any buddypress group ?
November 3, 2015 at 10:24 pm #246335In reply to: Feature Request – Group invites – invite all
Henry Wright
ModeratorKeep an eye on this ticket:
November 3, 2015 at 7:08 pm #246323karlosdpm
ParticipantDo you know a wordpress o buddy press function i can use to grab all current wp user avatars and assign them to the corresponding buddypress profile? After that, I am planning to have the users change the avatar only from buddypress profile not from front end registration form.
Please help,
thank you!November 3, 2015 at 6:26 pm #246321shanebp
ModeratorThat info is out-dated.
Look in the BP files for examples of writing a class that extends BP_Component.
For example:class BP_Notifications_Component extends BP_Component {inbuddypress\bp-notifications\classes\class-bp-notifications-notification.phpNovember 3, 2015 at 6:03 pm #246319Ryan Bickett
ParticipantNovember 3, 2015 at 5:59 pm #246317Ryan Bickett
Participant@shanebp – Thanks for the suggestion!
Rewrite it as a BuddyPress component. Make it part of the member profile.
By this do you mean to write my Custom Post Type as a plugin for Buddypress?
Or can you point me to any available documentation that I could follow to create a “Buddypress component”?
November 3, 2015 at 5:36 pm #246316shanebp
ModeratorNo need to use multisite. It will create more problems than it solves.
I have already built the CPT as a plugin.
Rewrite it as a BuddyPress component. Make it part of the member profile.
November 3, 2015 at 2:47 pm #246305In reply to: Custom Hook Help
shanebp
ModeratorAfter you register a user, do you see a message that starts with You have successfully created your account! ?
If you do, your function should work.
You could try putting it in the theme/functions.php
Putting code directly into a template is okay if you create a template overload.
November 3, 2015 at 4:01 am #246289In reply to: Displaying cover image BuddyPress 2.4
Andrew
ParticipantI can set the size and default image from that article, but I’m still not sure how to display it in an img tag.
With the WordPress header image, you can display the admin header image in an img tag:
<img src="<?php header_image(); ?>" />Is there a Buddypress equivalent for the WordPress function
header_image()?
https://codex.wordpress.org/Function_Reference/header_imageNovember 2, 2015 at 9:09 pm #246271In reply to: groups_get_group in blog 1 from group 2
Henry Wright
ModeratorThere are a number of ways to install BuddyPress in your network. Can you describe your set up?
See the Installation in WordPress Multisite article for more info.
November 2, 2015 at 6:54 pm #246268In reply to: Filtering Activity Loop
nicolemb
ParticipantThanks @shanebp. We tried this and a few other hooks and still have not been able to get the appropriate activity on the stream.
It does seem like the issue with this mu-plugin solution is that not every bit of activity is getting assigned the site id in the meta data. So the filter ends up filtering out most of the activity we should see. Ultimately we are seeking a way to limit activity stream data to the site you are visiting without using multi-network plugins.
We have a wordpress multisite network with buddypress NOT network activated but only activated on specific subsites.
Do you or anyone have any suggestions on how to achieve our goals?
November 2, 2015 at 5:29 pm #246262shanebp
ModeratorThe right way is to use a template overload.
November 2, 2015 at 5:10 pm #246261In reply to: Private Messaging Limit with Membership plans
shanebp
ModeratorI’m not aware of any.
And any such plugin would need to be specific to the code used for membership plans.
Writing such a plugin should be straightforward.
You can post Jobs here.November 2, 2015 at 4:28 pm #246259In reply to: Unable to log in
Engine44
ParticipantI guess I mean all of the forums at this url: https://wordpress.org/support/bb-login.php. But the password works fine on BuddyPress. Thanks for responding.
modemlooper
Moderatorother versions section https://wordpress.org/plugins/buddypress/developers/
-
AuthorSearch Results