Search Results for 'buddypress'
-
AuthorSearch Results
-
September 7, 2016 at 7:09 pm #258502
In reply to: Error when delete activity stream comment on post
buddywhatshisname
ParticipantThanks for the reply r-a-y, and good to know about the issue tracker. I posted incorrectly today — I’ve tested the problem has resolved itself — yay for you guys!
Here’s my steps, for the record:
Post a BuddyPress comment in the activity stream page /community/activity/ into My Profile You should see your new entry on the activity page like this: Blah Your Name posted an update right now Test post for deletion Comment [0] Favorite Delete On that same page, click that Delete button immediately below your post (url=/community/activity/delete/2001/?_wpnonce=blah) to delete that comment.September 7, 2016 at 6:56 pm #258500In reply to: Post was removed
r-a-y
KeymasterIs this the post?
September 7, 2016 at 6:46 pm #258499In reply to: Error when delete activity stream comment on post
r-a-y
KeymasterHi,
Sorry that no one has responded to your post.
If there are issues with the codebase (as is the case in this instance), you should post a report on our bug tracker, Trac:
https://buddypress.trac.wordpress.org/newticketYou should be able to login with the same credentials you use here on wordpress.org.
Can you go into further detail about how you are deleting the comment? Are you deleting an activity comment that is connected to a post?
Under “Settings > BuddyPress > Options”, is “Allow activity stream commenting on blog and forum posts” checked or unchecked?
—-
For my test:
1. “Allow activity stream commenting on blog and forum posts” is checked.
2. I posted a comment on a WP blog post.
3. I navigate to the BP activity directory page and find the post in the activity stream. The WP comment that I made is listed as an activity comment under the post in the activity stream and not listed as a separate activity stream item.
4. I click on the “Delete” button for my activity comment entry.
5. I do not see the “There was a problem…” error.I haven’t tested when “Allow activity stream commenting on blog and forum posts” is unchecked yet.
September 7, 2016 at 4:03 pm #258490In reply to: Subscribers can’t open messages(!)
Scott Hartley
ParticipantWhat about with plugins? Try disabling all plugins that aren’t BuddyPress then try it? If it works then renable them and disable each one by one until you find the conflict.
September 7, 2016 at 9:39 am #258485In reply to: Buddypress Email tamplate for all the wp email
Paul Wong-Gibbs
KeymasterThat might work, though the BuddyPress email template has configurable colours etc, so you’d need to fill those in inside the HTML.
You can get the HTML template from https://buddypress.trac.wordpress.org/browser/trunk/src/bp-templates/bp-legacy/buddypress/assets/emails/single-bp-email.php
September 7, 2016 at 7:54 am #258481acedesign123
ParticipantHi @danbp
Thank you for the response, however I am new to BuddyPress, but I do know Theme Dev in WP in Gen, my situation is this,
I want to remove all other steps and just fill in the details as you see on the first screen and just click finish, and have the group created. That is all.
I just tried the :: Remove Sub-Nav Tabs from the link you provide and it does not work.
Secondly, should I be putting the code onbp-custom.phpRegards
AceSeptember 7, 2016 at 7:49 am #258480In reply to: identify code
danbp
Participanthi,
September 6, 2016 at 11:10 pm #258474In reply to: Confirmation Email
roller24
ParticipantThose files were in the wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/members
file in question was registration.phpSeptember 6, 2016 at 8:53 pm #258470In reply to: German translation for version 2.6.2
Julian
ParticipantYes,my WordPress is in German. When I use the translation, then my WordPress is in English and Buddypress will not be translated.
September 6, 2016 at 8:45 pm #258468In reply to: German translation for version 2.6.2
danbp
ParticipantStrange ! Is WordPress in german ?
Dashboard > Settings > General > Site LanguageBP translation file goes to wp-content/languages/plugins/buddypress-de_DE.mo
September 6, 2016 at 7:01 pm #258465In reply to: identify code
idichoo
ParticipantI saw this above tried to rename the menu items but it does not work
Can you help?
pre type=”php”
$bp->bp_nav[‘activity’][‘name’] = ‘wall’;
/preSeptember 6, 2016 at 6:21 pm #258463In reply to: German translation for version 2.6.2
danbp
ParticipantHallo!
Dowload it from here:
https://translate.wordpress.org/projects/wp-plugins/buddypress/stable/de/defaultSelect po and mo extension at the bottom of the page where’s written “Export”
September 6, 2016 at 6:18 pm #258462In reply to: Creating Custom Member Types
danbp
ParticipantArrrgggl ! 🙂 You’re loosing your time by trying to do that. BP Default will be definetly built out soon.
Read WP codex about child theme and use this solution in any case. Whatever change you make in a core file will be owerwriten at next update. Theme modification should be made from within a child-theme, so it is safe even when an update is made on the original.And read at least here about BuddyPress theming.
September 6, 2016 at 6:10 pm #258461In reply to: identify code
danbp
ParticipantYour link is 7 years old ! That’s a prehistoric reference 🙂 and outdated!
If you’re talking about the Notification(x) item on BuddyMenu, it is in the language file where you can change it or use the trick indicated on Nav Api codex page (mentionned in the above post).Example:
function bpcodex_change_unread_nav_name() { buddypress()->members->nav->edit_nav( array( 'name' => 'The new name in whatever language', ), 'notifications' ); } add_action( 'bp_setup_nav', 'bpcodex_change_unread_nav_name', 100 );Add the snippet to bp-custom.php
September 6, 2016 at 6:00 pm #258460In reply to: identify code
idichoo
ParticipantCan you explain more on it the link above.
September 6, 2016 at 5:50 pm #258458In reply to: identify code
September 6, 2016 at 5:41 pm #258456In reply to: Creating Custom Member Types
danbp
ParticipantYes !
allmost all member related loops are in bp-templates/bp-legacy/buddypress/members/ and in /members/single/ for the profile templateSeptember 6, 2016 at 5:38 pm #258455danbp
ParticipantHi,
the error is because you’re loosing the current user.
Read codex about Navigation API (since 2.6) and use the new code to remove properly group settings tabs.September 6, 2016 at 5:31 pm #258453In reply to: Creating Custom Member Types
danbp
ParticipantHi !
bp-default is a deprecated theme since 1.7 (2013) and only in for backward compatibility.
If you use latest BP, you can use almost any existing theme and preferably with a child-theme if you customize your site.
Custom code can be added to bp-custom.php or into child-theme’s functions.php
References
bp-custom.php
member_typesSeptember 6, 2016 at 1:27 pm #258446In reply to: 404 error when “suppressing” the Activity tab
September 6, 2016 at 3:44 am #258428In reply to: Buddypress Post Comments on Activity Update
Earl_D
ParticipantIn addition to the two already mentioned Buddypress activity plus is another option it has 10000 active installs. Was the first one I tried though I settled on the afore mentioned Rtmedia
September 5, 2016 at 7:25 pm #258420In reply to: Buddypress not sending activation emails
zpaulypaul
ParticipantIm using Lush by IronTemplates.
Recently upgrade from a lower version to the newest version. Thats when I found this problem.
I also find it weird I dont see Buddypress widgets within Visual Composer. They show up in Page Builder plugin, but I cant use that plugin with this theme, that is why I had to upgrade. And now that I upgraded emails arnt being sent. WEIRD!September 5, 2016 at 7:19 pm #258419In reply to: Unable to create new groups
totalbalance
ParticipantThanks sooo much, that did the trick 🙂 I guess I was being too “elegant” ROFL. I made all pages related to BuddyPress parent and used WP Menu to organize my nav bar. All looks good now.
Thanks again!Cheers,
LarsSeptember 5, 2016 at 6:43 pm #258418In reply to: Unable to create new groups
r-a-y
KeymasterThere is a conflict with nesting BuddyPress pages; you cannot nest BP directory pages.
So, on your BuddyPress install, go to the WP admin dashboard, click on the
Pagesmenu and make theGroupspage a parent page.If you needed to have your BuddyPress pages under one parent page, then you could create a new parent page called
Communityand then nest theMemberspage underCommunityand theGroupspage underCommunity.September 5, 2016 at 6:40 pm #258417r-a-y
KeymasterI would check to see what GF and BF’s BuddyPress integration looks like.
They might be calling
bp_activity_add(). Do a search for that and see what parameters they are passing. In particular, check therecorded_timevalue and do a dump of that parameter and see if it is empty or not. -
AuthorSearch Results