Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 44,926 through 44,950 (of 68,972 total)
  • Author
    Search Results
  • #97598
    paulhastings0
    Participant

    Sorry, but no plugin like that has ever been created.

    #97596
    SOSasker
    Member
    #97595
    SOSasker
    Member

    how can let mobile can visit buddyPress site?..

    And hava a app on mobile to do sth on my BP web site. Thank you…..

    #97589
    LPH2005
    Participant

    Sorry to read you are having trouble. A couple of items will help us help.

    First, would you please edit your original topic title and provide a title actually dealing with your topic. Something like, “Guests cannot see forums”

    Second, here is a link of details we’ll need to be able to help you.

    https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/when-asking-for-support/

    Finally, a link to your site would be most helpful.

    Please let us know.

    #97587
    Raymond
    Participant

    @foralien: I have to say … HA HA HA :) The first time I tried this my site went way way south !! But it was just me being in a hurry and not adding
    <?php tags to the file… A php file without php tags ? Hmm…

    Your code works on WP 3.0.1 with BuddyPress 1.2.6
    EDIT: Code works on WP 3.0.2 as well. :)

    Many many thanks !!

    djinni
    Member

    I just registered to say this: @creay one million THX!!

    #97572
    tubruk
    Participant

    @r-a-y can you please help

    #97570
    teebes
    Participant

    @travel-junkie very interested! Regarding routes support; what are your thoughts about enabling GPX support (import/export). I have a ton of idea’s… :)

    #97562
    pcgs51
    Member

    Most my community are used to this because we are migrating to a new CMS. We have to shut down a paid CMS solution and I will ask them to re-register at the new BuddyPress one. But yes, I will try to remember to make things very clear. I hope to only let people who are logged in see the names of my community members. But I would really rather have email addresses (non visible) used for login purposes. I want real names visible to the community. Most are used to the Classmates.com model of doing things which is exactly what I hope to simulate. I have been researching this in open source communities since 2004 and amazed that nobody has come up with a CMS/plugin that meets this need. I can pretty much find a plugin for everything else under the sun.

    #97555
    paulhastings0
    Participant
    #97553
    7320395
    Inactive

    http://www.cheapuggbootsline.com sell variety models of cheap ugg boots and sheepskin ugg boots,also discount ugg boots and latest ugg boots,wholesale
    ugg boots are also available from us.we delivery with dhl,ems,fedex,tnt,ups to all the countries with free shipping and
    very competitive price.high quality ugg boots are all in our store.registered now will be save 45% at once.variety
    fashionable models and colors are your best choice.size ragne is from 5~14.all the best service are at here
    http://www.cheapuggbootsline.com

    store: http://www.cheapuggbootsline.com
    msn: andy.liusongtao @hotmail.com

    #97551

    We’re running buddypress as the engine behind our social network. Some of the users we want to reach don’t even own computers. Instead they use mobile devices exclusively. They can login to the network via a browser, but its really not that smooth and easy for them. Getting people to actually use our social network is hard enough, I don’t want to make it any harder for them.

    Some sort of app that they could download to their phone is not only something we’re interested in, but something that will be critical to our survival.

    #97549
    Bowe
    Participant

    S2Member is not the problem.. Unless you do not use the regular BuddyPress signup option and only allow people to signup through a S2Member registration form.

    The avatar upload step should always appear. You might have a jQuery conflict but even then you should SEE the upload process, you just would not be able to crop your avatar after upload.

    #97548
    thelandman
    Participant

    @Annoyed, What theme are you using? Do you have a link I could take a look at. Often the problem is that a theme or plugin includes a different version of jquery to the that comes with WordPress. You could load jquery from google. Put this code at the top of your functions.php (in your theme folder)

    `function my_init_method() {
    wp_deregister_script( ‘jquery’ );
    wp_register_script( ‘jquery’, ‘http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js&#8217;);
    }

    add_action(‘init’, ‘my_init_method’);`

    #97542
    ABStorm
    Member

    Thanks @kunalb as always your awesome !

    #97532

    In reply to: CSS for member page

    thelandman
    Participant

    You can use xprofile fields to specify certain CSS values in the users profile. Then you can retrieve the field value in the profile and modify the profile CSS with jquery. Its a bit of a work around but it works for me. Here’s an example:

    1. Create an xprofile field and name it ‘Profile Background’
    2. Edit your profile in buddypress and insert ‘#000000’
    3. Go to wp-content/themes/yourtheme/members/single/member-header.php
    4. On the 2nd line, just after “ paste the following code:
    `
    $(“#wrapper”).css(“background-color”, “”);
    `

    This will modify the profile background color according to what ever value you put in ‘Profile Background’

    This is just off the top of my head, I’ll check how I’ve done it once I’m home this evening. I will be writing a plugin for this. The only drawback is the user needs javascript enabled other wise its pointless.

    #97526
    pcgs51
    Member

    Thanks ehegwer I’ll look for the Private Community plugin. Thats what I needed to know. But still need the username thing. Looks like according to you Boone I’ll need more skills than I currently have. I hope there is a volunteer out there. I won’t mind the usernames so much IF they aren’t visible to the community. My audience will be confused by usernames. Remember these are people who actually already know each other already by real live names. I’m still tinkering with BuddyPress to see if it will work for my community. If I continue to be happy with my customizations I will be interested to know what your fees would be to create such a plug-in Boone.

    #97525

    In reply to: CSS for member page

    @mercime
    Participant

    @johnwinch42 those are definitely cool options but no plugin has been released for those functions yet.
    Check out https://codex.buddypress.org/extending-buddypress/creating-a-custom-buddypress-component/ – Unfortunately the BP Skeleton Component has not been upgraded since Feb 2010 – ping! @djpaul ping! @boonebgorges

    #97521
    Boone Gorges
    Keymaster

    Check out the template file `register.php`, located in `buddypress/bp-themes/bp-default/registration/register.php`. You have a couple possible strategies:

    1) Copy register.php to your child theme and add hidden inputs directly in the markup
    2) Hook to one of the many do_actions littered through the code to add your fields. Eg
    `function bbg_add_reg_field() {
    echo ”;
    }
    add_action( ‘bp_before_registration_submit_buttons’, ‘bbg_add_reg_field’ );`

    Then you’ll have to catch the data being sent. I recommend doing something like this
    `function bbg_grab_reg_data() {
    if ( isset( $_POST ) ) {
    // do something with the custom data
    }
    }
    add_action( ‘bp_complete_signup’, ‘bbg_grab_reg_data’ );`

    #97519
    Boone Gorges
    Keymaster

    I’m not aware of any documentation outside of the software itself. The functions that do the sync are pretty short and easy to understand. Check out `xprofile_sync_wp_profile()` and `xprofile_sync_bp_profile()` in buddypress/bp-xprofile.php to get a sense of just what’s being synced.

    #97513
    paulhastings0
    Participant

    And I assume you’re using the BuddyPress Default theme?

    Paul Wong-Gibbs
    Keymaster

    Those control the size of the avatars (used in and for cropping, and in theory throughout the site): https://codex.buddypress.org/buddypress-site-administration/changing-internal-configuration-settings/

    #97511
    clicfr
    Member

    Hi Paul, I am using WordPress 3.0 and BuddyPress 1.2.6

    I have not changed any settings – Buddypress comes right out of the box using member’s login info in the urls.
    My URL for instance is /members/admin and stays that way even though my full name is “FirstName LastName”.

    I need BuddyPress to use the full name field, not the username field.

    Can you help with this ?

    Sebastien

    #97508
    Paul Wong-Gibbs
    Keymaster

    @modemlooper, if I create a custom link item to “example.com/activity”, and then click on that link, it loads the correct page and applies the ‘current-menu-item’ class to the li element. I’m testing this on BP trunk and WP 3.0.1.

    If I put a Page into my menu, it gives it the class ‘current_page_item’ as it recognises it is part of the WordPress object hierarchy.

    #97507
    Paul Wong-Gibbs
    Keymaster

    @modemlooper Components in BP 1.3 will exists as Pages in WordPress. The Pages will be created as part of a new Setup procedure.

Viewing 25 results - 44,926 through 44,950 (of 68,972 total)
Skip to toolbar