Search Results for 'buddypress'
-
AuthorSearch Results
-
March 25, 2011 at 2:30 am #108676
In reply to: [Resolved] How to edit items in bp_activity_action
embergermedia
MemberThank you, both!
@Chouf1: Thanks, but I don’t think that is what I am looking for. Here is an example of what I have already done across most of the site:
`<a href="profile/”>
<a href="profile/”>`
I want to do this to the avatars and displayed user names for every status update and comment post.
@Boone: As I alluded to, I haven’t had much sleep lately. So I’ll see if I can wrap my head around this with out asking any more questions. But I may be back!
I do have one more for now though: I also realized that to fully implement this feature I will need to affect: acomment-meta and acomment avatar as well.
Edit: I just re read what you wrote. It looks like you, Boone, are already referring to this part. If I understand you correctly, then I also need to affect the activity header for status updates.
Thanks again!
March 25, 2011 at 1:09 am #108675In reply to: Hidden group posts visible to all
kenrichman
Participant@hnla – re: your suggestion – displaying favourite only to logged in user if also displayed user – I agree this would be a good fix, as I don’t really want favourites to be visible to all.
If you can help with the code to achieve this I’d be grateful as the site is about to go live.March 24, 2011 at 11:53 pm #108674In reply to: How do you do this ?
danbpfr
Participant@Boone Gorges That is what i done first ! But helas, it doesn’t work: i had a blank page.
And that is why i asked here…. but if you can give me the command syntax for that function_exists for bp_dtheme_blog_comments (i didn’t find it in WP or BP), i would appreciate !
March 24, 2011 at 11:40 pm #108673danbpfr
ParticipantDon’t hardcode the BP files, use child theme to make changes
The POT file is the catalogue. You have nothing to change in it.
The PO file is the work file
The MO file contains the PO compilated datas who will be read by WPIf you want to modify BP messages or different text, you have to edit a PO (without T) file. Use poEdit (or equivalent)
When you save the file, poEdit creates automaticaly a compilated mo file Your modification will be in this file, and this file had to be in the right folder on your site !Also, if you use BP 1.2.8, your buddypress-xx_XX.mo should be in wp-content/languages folder, no more in buddypress/bp-languages
March 24, 2011 at 11:35 pm #108672rossagrant
ParticipantWow, thanks for the heads up guys. Won’t be going down that route.
@pisanojm will check out provps.com now.
Would love to hear from other’s who already host in the UK on a decent, reliable cloud.
March 24, 2011 at 11:21 pm #108671In reply to: BuddyPress Competition is heating up
nanchante
ParticipantNup. Joomla has so many SEO holes in it, it’s not funny. Even with so called SEO plugins, it is still a horible nightmare.
Bad code, horrible backend…. the user experience is just not a good one.
Anyone comes to me with a Joomla site, I simply turn them away… or sugest they rebuild.
March 24, 2011 at 11:03 pm #108670tfirma2000
ParticipantI have tried changing the text in the .pot file as you suggested but I still get this original message:
Sign Up Complete!
You have successfully created your account! To begin using this site you will need to activate your account via the email we have just sent to your address.
QUESTION: Any suggestion on where I can change this message? I also tried to change it in wp-content/plugins/buddypress/bp-themes/bp-default/registration/register.php, line 225 BUT also that did not work to change the message.
March 24, 2011 at 10:56 pm #108666In reply to: How do you do this ?
danbpfr
Participant@Boone Gorges : great, thank you !
This should be documented somewhere in the BP doci only found this:
bp_dtheme_blog_comments( $comment, $args, $depth ) X-Ref
Template for comments and pingbacks.
To override this walker in a child theme without modifying the comments template
simply create your own bp_dtheme_blog_comments(), and that function will be used instead.
Used as a callback by wp_list_comments() for displaying the comments.param: mixed $comment Comment record from database
param: array $args Arguments from wp_list_comments() call
param: int $depth Comment nesting levelThis tells we can do something not how we can do that. You give the right answer
March 24, 2011 at 10:30 pm #108662In reply to: How to limit activity items for per page?
Pisanojm
ParticipantThis is something that has been bothering me… Why does this:
“
Cause the drop down search filters not to work? Is it wrong?March 24, 2011 at 10:03 pm #108661In reply to: Date selector bug?
Luciano Passuello
ParticipantI am experiencing the same problem on BP 1.2.8 and WP 3.1.
Opened a ticket for it: https://trac.buddypress.org/ticket/3125March 24, 2011 at 9:40 pm #108659Boone Gorges
KeymasterAwesome, so glad it worked!
March 24, 2011 at 9:29 pm #108657Donald McIntyre
ParticipantYou saved my life!! I have to launch today and this problem I had it 3 days!!!
Thank You man!!
March 24, 2011 at 9:21 pm #108656Donald McIntyre
ParticipantThx man!! will try and then I come back to you…
March 24, 2011 at 7:50 pm #108647In reply to: [Resolved] How to edit items in bp_activity_action
danbpfr
ParticipantHere are all the related to bp_activity_action in BP 1.2.8
the function is defined in bp-activity-templatetags.php line 515
Not sure you’researching in the right direction…
wp-contentpluginsbuddypress 1.2.8bp-activity.php]
Line 305 : function bp_activity_action_permalink_router() {
Line 340 : add_action( ‘wp’, ‘bp_activity_action_permalink_router’, 3 );
Line 342 : function bp_activity_action_delete_activity() {
Line 362 : do_action( ‘bp_activity_action_delete_activity’, $activity_id, $activity->user_id );
Line 372 : add_action( ‘wp’, ‘bp_activity_action_delete_activity’, 3 );
Line 374 : function bp_activity_action_post_update() {
Line 409 : add_action( ‘wp’, ‘bp_activity_action_post_update’, 3 );
Line 411 : function bp_activity_action_post_comment() {
Line 441 : add_action( ‘wp’, ‘bp_activity_action_post_comment’, 3 );
Line 443 : function bp_activity_action_mark_favorite() {
Line 459 : add_action( ‘wp’, ‘bp_activity_action_mark_favorite’, 3 );
Line 461 : function bp_activity_action_remove_favorite() {
Line 477 : add_action( ‘wp’, ‘bp_activity_action_remove_favorite’, 3 );
Line 479 : function bp_activity_action_sitewide_feed() {
Line 491 : add_action( ‘wp’, ‘bp_activity_action_sitewide_feed’, 3 );
Line 493 : function bp_activity_action_personal_feed() {
Line 505 : add_action( ‘wp’, ‘bp_activity_action_personal_feed’, 3 );
Line 507 : function bp_activity_action_friends_feed() {
Line 519 : add_action( ‘wp’, ‘bp_activity_action_friends_feed’, 3 );
Line 521 : function bp_activity_action_my_groups_feed() {
Line 533 : add_action( ‘wp’, ‘bp_activity_action_my_groups_feed’, 3 );
Line 535 : function bp_activity_action_mentions_feed() {
Line 547 : add_action( ‘wp’, ‘bp_activity_action_mentions_feed’, 3 );
Line 549 : function bp_activity_action_favorites_feed() {
Line 561 : add_action( ‘wp’, ‘bp_activity_action_favorites_feed’, 3 );
wp-contentpluginsbuddypress 1.2.8bp-themesbp-default_incajax.php]
Line 226 : do_action( ‘bp_activity_action_delete_activity’, $_POST, $activity->user_id );
Line 259 : do_action( ‘bp_activity_action_delete_activity’, $_POST, $comment->user_id );
wp-contentpluginsbuddypress 1.2.8bp-themesbp-defaultactivityentry.php]
Line 15 :
wp-contentpluginsbuddypress 1.2.8bp-blogsbp-blogs-widgets.php]
Line 42 :
wp-contentpluginsbuddypress 1.2.8bp-activitybp-activity-classes.php]
Line 58 : $this->action = apply_filters( ‘bp_activity_action_before_save’, $this->action, &$this );
wp-contentpluginsbuddypress 1.2.8bp-activitybp-activity-filters.php]
Line 12 : add_filter( ‘bp_activity_action_before_save’, ‘bp_activity_filter_kses’, 1 );
Line 21 : add_filter( ‘bp_activity_action_before_save’, ‘force_balance_tags’ );
wp-contentpluginsbuddypress 1.2.8bp-activitybp-activity-templatetags.php]
Line 377 : function bp_activity_action_name() { echo bp_activity_type(); }
Line 515 : function bp_activity_action() {March 24, 2011 at 7:34 pm #108646In reply to: Groups Control
@mercime
ParticipantThis could be helpful too https://wordpress.org/extend/plugins/buddypress-restrict-group-creation/
March 24, 2011 at 7:31 pm #108645@mercime
Participant== I am looking for a plugin/snippet that will allow the attachment/upload of images to activity feed updates. … I’d be interested in hiring a plugin developer for this task. ==
There’s a plugin by @sbrajesh, BP Gallery ($30 membership), that allows you to do this for images, audio and video for single users and/or groups with multiple uploading as well.
March 24, 2011 at 7:25 pm #108644In reply to: use buddypress as a template for a page
@mercime
ParticipantYou mean iThemes Builder can’t load the BuddyPress template files transferred during the BP Template pack process? While iThemes hasn’t created a bridge to adapt BP to their themes, strange that they have not promoted using BP template pack instead.
As for additional styling, there’s a panel during the integration process where you have option to include the CSS provided in BP Template Pack to start you off. Then you just add/adjust styling to taste.
March 24, 2011 at 6:32 pm #108642Boone Gorges
KeymasterHi Donald,
It sounds like the plugin hasn’t been updated for WP 3.1, which introduced the new Network Admin (where the BuddyPress dropdown is now found).
Follow the instructions in this post https://buddypress.org/community/groups/buddypress-group-email-subscription/forum/topic/change-admin_menu-to-network_admin_menu-for-wp-3-1-and-bp-1-2-8/ except do it on the file buddypress-auto-group-join/php/bp-auto-group-join-init.php. That should do the trick.
March 24, 2011 at 5:02 pm #108641In reply to: Add the time stamp to comments
danbpfr
ParticipantWhich comments are you talking about ?
Blog comments ?
See here: https://codex.wordpress.org/Function_Reference/comment_timeTo do this, If you use BP 1.2.8, go to bp-themes/bp-default/functions.php or better to the functions.php of your child theme
In file there is a function bp_dtheme_blog_comments
Near line 78 change
`to this
<a href="” rel=”nofollow”>
<a href="#comment-” title=””>`
how to embed this function into your theme’s function ? read here:
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/how-do-you-do-this/March 24, 2011 at 3:09 pm #108632In reply to: [Resolved] Locating comments.php for editting
Sparkey
ParticipantThank you guys so much for getting back to me. I really want to straighten out this page, our visitors are commenting all over the place or not at all.
@Chouf1 Yes, that is line is what I am changing, but the output doesn’t change.
@Virtuali Yes, that is the location that I have been working on, there was no comments.php in my child theme folder so I was editing the one in bp-default, when editing that didn’t change the output, I added a comments.php file to my child theme, still no change to the output. I tested the backend theme editor, when I added the comments.php to the child theme that is the one that it started editing, where before it had been edting the comments.php in the bp-default folder.Maybe there is some kind of cache system I can’t find, I know in Joomla when I get this frustrated, I remember the built in cache, I have cntl-f5ed it a couple times.?????
March 24, 2011 at 2:35 pm #108629danbpfr
ParticipantCheck your install with the help of “forum settings”
https://codex.buddypress.org/getting-started/configure-buddypress-components/March 24, 2011 at 2:32 pm #108628In reply to: “Donate” fature in Groups
March 24, 2011 at 2:27 pm #108627In reply to: Change Menu Names
danbpfr
ParticipantMarch 24, 2011 at 2:04 pm #108624In reply to: BuddyPress Competition is heating up
danbpfr
ParticipantMarch 24, 2011 at 1:02 pm #108622Andrea Rennick
ParticipantAnd you know that even network activated, all users have their BP profile on the main site?
BuddyPress is network-wide, not blog specific.
“One way you can prevent BP in main site or secondary site from importing data from all sites is by marking e.g. My Blog in Settings > Permalnks – “I would like to block search engines, but allow normal visitors” or even choose additional options with https://wordpress.org/extend/plugins/more-privacy-options/”
Which blocks search engines as well.
Better off to mark the blog as mature instead. -
AuthorSearch Results
<a href="#comment-” title=””>