Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 15,526 through 15,550 (of 69,016 total)
  • Author
    Search Results
  • #198966

    In reply to: Home Activity Screen

    danbp
    Participant

    @willandmae

    You named the culprit: I am using wp 4.0 and bp 2.1 with buddypress default theme.

    bp-default is somehow retired since BP 1.9 and is in for backwards compatibility only.

    Give a try to 2014 theme and see if this solve your issue.

    #198965
    danbp
    Participant

    @1a-spielwiese

    Maybe nice, but it’s a commonly admited bad idea to let users style your site.
    If you want italics for some field title, you can do that by CSS.

    As stated by Boone for BP 2.1
    Extra CSS classes have been added to Profile Field visibility field elements, allowing greater CSS customization.

    For more indeep customization, consider this plugin (thought needs a good coding level)

    #198960
    danbp
    Participant

    BP version and theme name please.
    Are you able to create a new field in another group as “Base” ?
    Also, have you saved your change ?

    https://codex.buddypress.org/buddypress-components-and-features/extended-profiles/

    #198958
    danbp
    Participant

    BP’s xProfile component is not intended to be used as text editor, like the one you use to publish posts.

    So far i know, ACF plugin doesn’t handle xprofile fields. But you can use it on Group component.

    More about ACF

    #198950

    In reply to: Styling BuddyPress

    jessicana
    Participant

    I tried the above code and inserted it in my custom CSS and it didn’t work. I also changed the buddypress.js following codes to 50px and it didn’t work!

    jq('form#whats-new-form textarea').animate({
    					height:'20px'
    
    jq('#whats-new-form textarea').animate({
    				height:'20px'
    			});

    This is the only thing I am unable to customize in buddypress!

    Thanks

    #198949
    Lars Henriksen
    Participant

    Buddypress Activity Privacy might work . I will give it a go.

    #198948

    In reply to: A True Activity Like

    Henry Wright
    Moderator
    #198943
    Henry Wright
    Moderator

    Hi @adjunkten

    Your path seems slightly off. It should be wp-content/themes/your-theme/buddypress/members/single/

    And I think the file you need to edit is member-header.php

    #198939
    1a-spielwiese
    Participant

    Yes:

    • Settings/BuddyPress/Compenents: Activate ‘Exteneded Profiles’

    then:

    • user/profile fields/add field – select the ‘field type’ you like
    #198937
    Keno
    Participant

    I have too much plugins… i switched back to old version of buddypress, v.2.0.3, everything is just fine with all the plugins i have..

    is there anyone who’s having same problem that i had , when upgrading to 2.1?

    #198932
    1a-spielwiese
    Participant

    Yes, I have

    • a folder wp-content/themes/reddle-child

    and inside that folder:

    • a style.css. It’s content is:
    /*
     Theme Name:   Reddle Child
     Template:     reddle
    */
    
    @import url("../reddle/style.css");
    
    /* =Theme customization starts here
    -------------------------------------------------------------- */
    
    .buddypress #main #primary {
        margin: 0;
    }
    
    .buddypress #main #content {
        margin: 0 9.46429%;
    }
    • a functions.php. It’s content is:
    <?php
    
    /**
     * Enqueue stylesheet
     */
    function reddle_child_theme_stylesheet() {
    	wp_enqueue_style( 'reddle-child-themestyle', get_stylesheet_uri() );
    }
    add_action( 'wp_enqueue_scripts', 'reddle_child_theme_stylesheet' );
    • and a buddypress.php. It’s content is:
    <?php
    /**
     * BuddyPress: Full-width template
     *
     * A custom page template without sidebar.
     *
     * @ since Reddlle 1.3.1 and BuddyPress 2.1
     */
    
    get_header(); ?>
     
    	<div id="primary">
    		<div id="content" role="main">
    			<?php while ( have_posts() ) : the_post(); ?>
    				<?php get_template_part( 'content', 'page' ); ?>
    			<?php endwhile; // end of the loop. ?>
    		</div><!-- #content -->
    	</div><!-- #primary -->
     
    <?php get_footer(); ?>
    #198752
    @mercime
    Participant

    @1a-spielwiese Sorry it’s not working out for you. I just installed a reddle child theme with all the code provided in above link in my server and it’s working fine without the simple css plugin. Let’s double-check that you have all the necessary materials:

    – theme folder e.g. reddle-child
    style.css file in reddle-child theme folder
    functions.phpfile in reddle-child theme folder
    buddypress.php file in reddle-child theme folder

    #198743
    Nathan Pinno
    Participant

    @hnla:

    I’m completely reinstalling BuddyPress (I had installed and working before, but I deleted it cause I thought it wasn’t working smoothly with another plugin I installed after it.) – like I said I want to avoid reinstalling WordPress if I can because of the number of users (about 50, but they are all fellow fan fiction writers and.or readers like myself).

    When I tried it myself, I made sure I correctly created and associated the various pages with the BuddyPress components that needed them. I then went to check out my profile and got a 404, after getting a few more of those, I went and removed it again.

    Stephen Edgar
    Moderator

    This isn’t a bbPress issue, bbPress doesn’t currently import subscriptions from phpBB so bbPress has no way of knowing what topic or forum a user is subscribed to to be able to send them an email.

    I’m pretty sure you’ll find this is BuddyPress sending them if you have it activated, per @halo-diehard same issue here, https://buddypress.org/support/topic/mass-notifications-of-old-mentions/

    One of these days I’ll get to reading BuddyPress’ source code in it’s entirety but I haven’t as yet!

    I think this should do the trick to stop things though:

    remove_action( ‘bp_activity_sent_mention_email’, ‘bp_activity_at_message_notification’, 10, 5 );

    #198732
    daveodea
    Participant

    I thrawled the internet for the past two days looking for a solution to this – and i looked really hard!
    Eventually after reading up on a server-side caching system know as Varnish which is enabled by default on my VPS host(Bluehost), i discovered that it some buddypress functionality as mentioned above.

    #198726

    In reply to: How to @ mention

    danbp
    Participant

    @imath published a little snippet who let you use BP 2.1 new @mention from within the bbpress editor.
    https://gist.github.com/imath/5a3c4ac645ec765863f2

    bp-default is more or less outdated since BP 1.9 and you better have to activate a more recent theme.

    If you prefer to play “old school”, verify that your bp-default is correctly setup.
    Read also here about minifying css, as things can be broken around js in some case.

    #198724
    daveodea
    Participant

    what should i change in that file?

    i have change to default theme- same problem

    deleted and reinstalled buddypress – same problem

    im puzzled


    @mercime
    can you help. please?

    #198721
    shanebp
    Moderator

    The template for that page is:
    buddypress\bp-templates\bp-legacy\buddypress\groups\create.php

    #198654
    daveodea
    Participant

    Hi,

    Yes creation is enabled for all users.

    > Same problem for when logged in as subscriber role.

    > i don’t see a plugins/bp-custom.php ?

    > i viewed the source and can see the form:

     [edited for length]
        <div class=”entry-content”>
        <div id=”buddypress”>
        <form action=”http://csuni.org/home/groups/create/step/group-settings/” method=”post” id=”create-group-form” class=”standard-form” enctype=”multipart/form-data”>
        <div class=”item-list-tabs no-ajax” id=”group-create-tabs” role=”navigation”>
    
            1. Details
    
            <li class=”current”><span>2. Settings</span>
            <span>3. Forum</span>
            <span>4. Avatar</span>
            <span>5. Invites</span>
    
        </div>
        <div class=”item-body” id=”group-create-body”>
        <div class=”submit” id=”previous-next”>
        <input type=”button” value=”Back to Previous Step” id=”group-creation-previous” name=”previous” onclick=”location.href=’http://csuni.org/home/groups/create/step/group-details'”/>
        <input type=”submit” value=”Next Step” id=”group-creation-next” name=”save”/>
        </div>
        <input type=”hidden” name=”group_id” id=”group_id” value=”0″/>
        </div>
        </form>
    #198067
    shanebp
    Moderator

    [ @henrywright Mermaid Man and Barnacle Boy – Unite! ]


    @vicente-vial

    I’m not aware of such a WP / BP site.

    The plugins you mention re integration should provide a structure for you to get most of the way [ maybe all the way ] tp your goal.
    It will be a lot of work.

    I suggest you set up a dev site and start experimenting.
    Get a basic payments flow working first.
    If you’re not a developer, you’ll need one at some point.

    BP Jobs Board

    #198059

    In reply to: Members List

    shanebp
    Moderator

    BP uses a timestamp called last_activity to track members.
    If they have not logged in since you installed BP [ or since they registered or were added by a site admin ], they won’t show up in the members list because they do not have a last_activity timestamp.

    Did you show up in the BP members list?
    If not, then there are other problems.

    If so, you can use this function to add a timestamp to each member.
    Put it in bp-custom.php, load the site once and then delete the function.

    function add_activity_ts() {
      global $wpdb;
      foreach ( $wpdb->get_col( "SELECT ID FROM $wpdb->users" ) as $user_id ) {
        bp_update_user_last_activity( $user_id );
      }
    }
    add_action('bp_init', 'add_activity_ts', 11);
    danbp
    Participant

    In addition to the above answers, here a reasonable tech limitation
    http://dev.mysql.com/doc/refman/5.6/en/table-size-limit.html

    Host spec example:
    Adding Storage Space

    Once you reached 50k users you can probably hire a full time server engineer anyway… 😉

    Here an example of a very big community (+80k users) using BuddyPress.

    Glad to bring some help to the future competitor of Google, Amazon, E-Bay and Facebook thinking about NoSql in the early stage of his project.

    That said i doubt a little that WordPress is tailored for a such ambition. Give news when you have 5k users. 😉

    #198044
    1a-spielwiese
    Participant
    #198037

    In reply to: Styling BuddyPress

    danbp
    Participant

    Perhaps a typo error ?

    #buddypress #whats-new-options {
    overflow: fixed;
    height: 50;
    }
    

    Try height: 50px;

    #198033
    WisdmLabs
    Participant

    @monicajay:
    You can easily add one more profile field as “confirm email” from dashboard->users->Profile Fields.
    You don’t need to mess with bp files.
    For validation, you just need to add few lines of code to match email ID using javascript(for client side validation). It doesn’t need high level of coding skill.


    @dhyana
    :
    Don’t add fields directly in the core file, Buddypress provides you option page to add fields here. dashboard->users->Profile Fields
    FYI registration file is located at –
    /wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/register.php

Viewing 25 results - 15,526 through 15,550 (of 69,016 total)
Skip to toolbar