Search Results for 'buddypress'
-
AuthorSearch Results
-
August 25, 2013 at 7:37 pm #170399
In reply to: Need to Reinstall Buddypress
Ben Hansen
Participantposts will only get recorded as activity if buddypress is active the behavior you are seeing is normal. there maybe a plugin out there that can re-construct activity entries from post dates or something but i’m not personally aware of anything that does that.
August 25, 2013 at 4:52 pm #170391In reply to: Buddypress locking a member out of his own group
kagurarap
ParticipantAlso tried w3 total cache and received a fatal error so decided not to go that route either…
August 25, 2013 at 4:51 pm #170390In reply to: Buddypress locking a member out of his own group
kagurarap
ParticipantUpdate: So I decided in the end to stick with Hyper Cache, which is pretty okay, enable caching to true in the wp-config file and since I’m not expecting hundreds of visitors to interact with the social aspect of the site, it’s a small group, the images seemed to be the issue with the site’s speed and the other caching plugins were breaking buddypress features.
So I’m using Imsanity and Ewww Image Optimize plugins to control the maximum size of the images being uploaded (they get re-sized by the plugin) and to optimize the existing images I had in the library. This has helped my site’s speed a whole lot especially with the Site Activity Feed widget on the front-page.
I’m still looking into caching, looking into mem-caching but not sure if it’s necessary at this point in time for a site that if we’re lucky, has a maximum of 100 members. Hope this topic helps someone.
August 25, 2013 at 4:20 pm #170386In reply to: Private Message Button Label Change
Henry
MemberYou could do it like that but each time you update BuddyPress you’ll lose the changes you’ve made to bp-messages-template.php. I’d try to avoid making changes to the plugin core.
August 25, 2013 at 4:18 pm #170385In reply to: Private Message Button Label Change
tayenewm
ParticipantThat process seems beyond me and very long (and I cannot find the /plugins/buddypress/bp-languages folder) I just want to change the “Private Message” button label. Can I access/change it quickly like this:
1. access buddypress/bp-messages/bp-messages-template.php
2. change the ‘link text’ to the new label name in this block of code?function bp_get_send_message_button() {
// Note: ‘bp_get_send_message_button’ is a legacy filter. Use
// ‘bp_get_send_message_button_args’ instead. See #4536
return apply_filters( ‘bp_get_send_message_button’,
bp_get_button( apply_filters( ‘bp_get_send_message_button_args’, array(
‘id’ => ‘private_message’,
‘component’ => ‘messages’,
‘must_be_logged_in’ => true,
‘block_self’ => true,
‘wrapper_id’ => ‘send-private-message’,
‘link_href’ => bp_get_send_private_message_link(),
‘link_title’ => __( ‘Send a private message to this user.’, ‘buddypress’ ),
‘link_text’ => __( ‘Private Message’, ‘buddypress’ ),
‘link_class’ => ‘send-message’,
) ) )August 25, 2013 at 2:42 pm #170382In reply to: Permalinks not working with Buddypress
stuartjbray
ParticipantI guess if I am on a windows server then I need to rewrite these htaccess rules in IIS URL Rewriter, as per…
Alternatively, change to an apache server? Is BuddyPress windows compatible?
August 25, 2013 at 1:58 pm #170380In reply to: Private Message Button Label Change
Henry
MemberThis will help you. It shows you how to change most of the text labels and messages outputted by BuddyPress:
https://codex.buddypress.org/developer/customizing/customizing-labels-messages-and-urls/
August 25, 2013 at 1:31 pm #170378In reply to: Hide profile field
rtandoh
ParticipantHi
I can find the above function under the legacy branch of code base, but what is the BuddyPress 1.8 equivalent?
Thanks.
Richard
August 25, 2013 at 7:58 am #170371neo-tronic
ParticipantHi @prometheus-fire ,
Thanks for your reply. But i don’t get this to work with my site. My php-skills are btw not very good…
But: i find a Solution. For blog-posts i use this:
function bbg_record_my_custom_post_type_posts( $post_types ) { $post_types = array ('it_movies', 'it_video_games', 'it_preisalarm', 'post'); // Hier die Slugs der Custom Post Types eintragen, bei denen Erwähnungen im Beitrag selbst berücksichtigt werden return $post_types; } add_filter( 'bp_blogs_record_post_post_types', 'bbg_record_my_custom_post_type_posts' );And for comments i use this:
function bbg_record_my_custom_post_type_comments( $post_types ) { $post_types = array ('it_movies', 'it_video_games', 'it_preisalarm', 'post'); // Hier die Slugs der Custom Post Types eintragen, bei denen Erwähnungen in den Kommentaren berücksichtigt werden return $post_types; } add_filter( 'bp_blogs_record_comment_post_types', 'bbg_record_my_custom_post_type_comments' );And it works, but without custom messages. Anyway – now it works and for the Future, i wait for the buddypress-update. 😉
August 24, 2013 at 7:01 pm #170361jstuartwp
ParticipantThat works perfectly!
Thank you!
August 24, 2013 at 6:35 pm #170359bp-help
ParticipantAugust 24, 2013 at 6:21 pm #170356jstuartwp
ParticipantThanks for response!
I did some research and found that s2member syncs profiles with buddypress, so that part is solved. The only thing I’m still really looking for is a notifications bar or widget, other than the wordpress one. Hopefully there is a plugin for that?
August 24, 2013 at 3:21 pm #170353Rajilesh Panoli
ParticipantIt was an error with my buddypress installation. Solved.
August 24, 2013 at 2:57 pm #170351In reply to: Activity Stream Questions – adding tags and comments
ClaireBearBunch
Participanthey.
yeah i suspected as much sadly.
i know on simplepress forums they get round it by creating a ‘fake’ account for whatever username is typed in as the guest username, i was just hoping somebody had tried to modify it to work on buddypress at some point.
i dont have anything like the skills to try it lol.
ill have a coffee and look at the adding hidden text to the status update field again
August 24, 2013 at 11:30 am #170339In reply to: Activity Stream Questions – adding tags and comments
ClaireBearBunch
Participant<?php
/**
* BuddyPress – Activity Post Form
*
* @package Status
* @since 1.0
*/
?><div id=”whats-new-declare” class=”clearfix”>
<form action=”<?php bp_activity_post_form_action(); ?>” method=”post” id=”whats-new-form” name=”whats-new-form” role=”complementary”>
<?php do_action( ‘bp_before_activity_post_form’ ); ?>
<section id=”whats-new-about”>
<div id=”whats-new-avatar”>
“>
<?php bp_loggedin_user_avatar( ‘width=’ . bp_core_avatar_thumb_width() . ‘&height=’ . bp_core_avatar_thumb_height() ); ?>
</div>
<div id=”whats-new-wrapper”>
<div id=”whats-new-tail”></div>
<div id=”whats-new-textarea”>
<textarea name=”whats-new” id=”whats-new” cols=”50″ rows=”10″>topic<?php if ( isset( $_GET[‘r’] ) ) : ?><?php echo esc_attr( $_GET[‘r’] ); ?>topic<?php endif; ?>topic</textarea>
</div>
</div>
</section><section id=”whats-new-content”>
<div id=”whats-new-options”><div id=”whats-new-submit”>
<input type=”submit” name=”aw-whats-new-submit” id=”aw-whats-new-submit” value=”<?php _e( ‘Post Update’, ‘status’ ); ?>” class=”submitbutton”/>
</div>
<?php if ( bp_is_active( ‘groups’ ) && !bp_is_my_profile() && !bp_is_group() ) : ?>
<div id=”whats-new-post-in-box”>
<?php _e( ‘Post in’, ‘status’ ) ?>:
<select id=”whats-new-post-in” name=”whats-new-post-in”>
<option selected=”selected” value=”0″><?php _e( ‘My Profile’, ‘status’ ); ?></option>
<?php if ( bp_has_groups( ‘user_id=’ . bp_loggedin_user_id() . ‘&type=alphabetical&max=100&per_page=100&populate_extras=0’ ) ) :
while ( bp_groups() ) : bp_the_group(); ?>
<option value=”<?php bp_group_id(); ?>”><?php bp_group_name(); ?></option>
<?php endwhile;
endif; ?>
</select>
</div>
<input type=”hidden” id=”whats-new-post-object” name=”whats-new-post-object” value=”groups” />
<?php elseif ( bp_is_group_home() ) : ?>
<input type=”hidden” id=”whats-new-post-object” name=”whats-new-post-object” value=”groups” />
<input type=”hidden” id=”whats-new-post-in” name=”whats-new-post-in” value=”<?php bp_group_id(); ?>” />
<?php endif; ?>
<?php do_action( ‘bp_activity_post_form_options’ ); ?>
</div><!– #whats-new-options –>
</section><!– #whats-new-content –>
<?php wp_nonce_field( ‘post_update’, ‘_wpnonce_post_update’ ); ?>
<?php do_action( ‘bp_after_activity_post_form’ ); ?></form><!– #whats-new-form –>
</div>thats the right php i think, post-form.php, how could i modify a line or two here for posting my own tags?
August 24, 2013 at 9:08 am #170336Hugo Ashmore
ParticipantThat sort of reads like a spec sheet.
What have you attempted thus far, too what stage have you got your site to?
Many of those requirements are to a degree configuration pf plugins so shouldn’t present too many difficulties.
A few of those requirements might be a little trickier and require the services of a developer.
August 24, 2013 at 8:02 am #170335In reply to: customize the login page
Hugo Ashmore
Participant@famous There isn’t really such a thing as the ‘login page’ so you’ll need to explain what page you mean exactly.
If wanting to modify and customize BP then in respect of the BP template files it’s important to understand how theme compatibility works, how the template hierarchy is configured and what paths/folders templates must be placed under.
These two guides will help you understand what can & can’t be done, read those then some aspects will be clearer for you.
https://codex.buddypress.org/developer/theme-development/a-quick-look-at-1-7-theme-compatibility/
https://codex.buddypress.org/developer/theme-development/template-hierarchy/We’ll be able to help more effectively when you have read those.
August 24, 2013 at 3:57 am #170331In reply to: customize the login page
Famous
ParticipantOkay let me re-phrase that, can you point me in the direction of templating virtual pages (such as the login page) on buddypress?
Thank you
August 24, 2013 at 1:14 am #170329CTS_AE
ParticipantI have Version 1.8.1
Isn’t that patch only for the admin panel stuff it sounds like?
My times were incorrect on the activity widget, so I went deep to fix the activity problem I was having.August 23, 2013 at 7:21 pm #170313In reply to: Better descriptions, and management of relationships
Ben Hansen
Participantit’s interesting you should say that was thinking of building a custom theme for families using buddypress and would also be interested to know if that’s possible.
August 23, 2013 at 7:09 pm #170312Henry
Member@hnla I was planning something infinitely more simple 🙂
Just working on a little project and wanted to filter the body text and subject line of a few of the emails that are sent out.
Besides you don’t need a legend, I’m sure you could make it happen 🙂
August 23, 2013 at 6:35 pm #170311In reply to: "Create a Page" functionality in BuddyPress?
Tecca
ParticipantI suppose it’s because Facebook, in many ways, does things right. I’m not on board with having a FB copy by any means, but some of their features are nice. Though I think many of those features should be left to plugins rather than being in core.
August 23, 2013 at 5:00 pm #170307In reply to: There are Pictures in BuddyPress UI
testamann
Participant
This is really wierd but it only happens on buddy press. I just did a clean install on buddy press but all of my settings were still saved i think it might have something to do with that.
August 23, 2013 at 4:52 pm #170305In reply to: "Create a Page" functionality in BuddyPress?
Hugo Ashmore
ParticipantAsk him on his site!
Why do so many people want BP to be a farcebook clone 🙁
August 23, 2013 at 4:50 pm #170304Hugo Ashmore
ParticipantYep Paul’s plugin should be the full list, and if you can get his plugin updated or build a plugin that grabs all emails present them for editing and returns them as correct text/html ones you would be everyone’s best friend and a legend 🙂
-
AuthorSearch Results
