Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 19,376 through 19,400 (of 69,104 total)
  • Author
    Search Results
  • #170399
    Ben Hansen
    Participant

    posts 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.

    #170391
    kagurarap
    Participant

    Also tried w3 total cache and received a fatal error so decided not to go that route either…

    #170390
    kagurarap
    Participant

    Update: 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.

    #170386
    Henry
    Member

    You 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.

    #170385
    tayenewm
    Participant

    That 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’,
    ) ) )

    #170382
    stuartjbray
    Participant

    I guess if I am on a windows server then I need to rewrite these htaccess rules in IIS URL Rewriter, as per…

    http://www.iis.net/learn/application-frameworks/install-and-configure-php-applications-on-iis/translate-htaccess-content-to-iis-webconfig

    Alternatively, change to an apache server? Is BuddyPress windows compatible?

    #170380
    Henry
    Member

    This 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/

    #170378

    In reply to: Hide profile field

    rtandoh
    Participant

    Hi

    I can find the above function under the legacy branch of code base, but what is the BuddyPress 1.8 equivalent?

    Thanks.

    Richard

    neo-tronic
    Participant

    Hi @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. 😉

    jstuartwp
    Participant

    That works perfectly!

    Thank you!

    bp-help
    Participant
    jstuartwp
    Participant

    Thanks 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?

    Rajilesh Panoli
    Participant

    It was an error with my buddypress installation. Solved.

    #170351
    ClaireBearBunch
    Participant

    hey.

    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

    #170339
    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?

    Hugo Ashmore
    Participant

    That 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.

    #170335
    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.

    #170331
    Famous
    Participant

    Okay 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

    CTS_AE
    Participant

    I 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.

    #170313
    Ben Hansen
    Participant

    it’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.

    #170312
    Henry
    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 🙂

    #170311
    Tecca
    Participant

    I 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.

    #170307
    testamann
    Participant

    It happens as well on default theme

    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.

    #170305
    Hugo Ashmore
    Participant

    Ask him on his site!

    Why do so many people want BP to be a farcebook clone 🙁

    #170304
    Hugo Ashmore
    Participant

    Yep 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 🙂

Viewing 25 results - 19,376 through 19,400 (of 69,104 total)
Skip to toolbar