Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 19,026 through 19,050 (of 69,109 total)
  • Author
    Search Results
  • #171886
    bp-help
    Participant

    @philmay
    If you had checked the link @carlh1 had provided you would see when you click on community that the issue is unresolved. An experienced developer may be able to help but if the theme is over-bloated and doesn’t follow standard WordPress template structures then I am afraid you are in for a hefty price-tag even if you hire one. If you have not already checked it out review:
    https://codex.buddypress.org/theme-development/theme-compatibility-1-7/a-quick-look-at-1-7-theme-compatibility/
    See if that helps. Based on your previous topics when you mentioned Non Disclosure Agreements your probably going to have a rough time finding anyone that would be willing to sign that. After all BP, Themes, and all plugins that require WordPress to work fall under GNU/GPL because they are derivative works that uses WordPress’s hooks, actions, filters etc. in order to work with WordPress it has to be. Realistically I doubt your site will be any more groundbreaking than anyone else who has created a WP/BP powered community site so it is right silly to require a NDA! I have seen some very amazing sites created with WP & BP but most of them come from top notch experienced web developers and web designers. Please don’t take this as discouraging or negative just set a realistic goal. Either way good luck!

    #171882
    @mercime
    Participant

    @alanniemies I would report this issue with the premium theme developer or check the premium theme’s forums. Surely you’re not the only one who has experienced this issue with BuddyPress activated.

    #171880
    @mercime
    Participant

    @davidollerton Where are you hosted? Does your hosting have GD library installed and/or imagemagick? Can you upload media in a regular WP Post or Page and choose the small/media thumbnail?

    What plugins do you have installed? Have you checked whether deactivating all plugins except BuddyPress and changing to Twenty Twelve or Bp Default theme resolve the issue?

    #171878
    @mercime
    Participant

    @craftersuniversity At this moment, I see that you’re using a Twenty Eleven as parent theme and not Twenty Twelve.

    Twenty Eleven has a one-column layout for its default page.php. Check out this tutorial for getting a sidebar into the BP pages: http://bpsocialnetwork.wordpress.com/2013/06/02/twenty-eleven-theme-compatibility/

    #171877
    Ben Hansen
    Participant
    #171875

    In reply to: Missing sidebar

    @mercime
    Participant
    #171865
    Hugo Ashmore
    Participant

    BP is fully compatible with WP default themes it’s what we’ll test against amongst others.

    If you’re running in theme compatibility mode then BP uses page.php initially to render it’s screens, although you can overide that by creating new versions of that file, so you should see whatever sidebar page.php is showing.

    If you are doing anything contrary to basic theme compatibility you’ll need to detail that.

    There are a couple of guides on theme compatibility in the Codex which will help you understand your options.

    #171864

    In reply to: Database Schema map

    xKroniK13x
    Participant

    Link is broken, hosting on my site for temporary access.

    http://coreymccown.com/images/buddypress_data_model_1_3.png

    xKroniK13x
    Participant

    @estopero Could you post a link to your site so we can see exactly what’s going on?

    #171857
    Davidollerton
    Participant

    Have upadated to latest buddypress, same issue, “There was a problem cropping your avatar”. Cant seem to edit my posts here, sorry for the multiple posts. Thanks

    #171855
    Davidollerton
    Participant

    Update: It isn’t a theme or plugin issue, as I switched to Twenty Thirteen and found the same problem. After that I switched off plugins 1 by 1 and still nothing.

    Im running WordPress 3.6.1 Buddypress 1.7 and am hosted by zippykid

    Thanks

    #171850

    In reply to: Missing sidebar

    craftersuniversity
    Participant

    After alot of research and error searching, i have found abit more information about my problem, so ive decided to start a new thread about this, and abandon this one. The new thread will be called “Buddypress and Twenty Twelve compatibility”

    #171836
    Paul Wong-Gibbs
    Keymaster

    If you’re not already using one, set up an object cache. It’s relatively simple and will be a big improvement for all WordPress things, not just BuddyPress.

    #171831
    Arial Burnz
    Participant

    I’m having a problem that I’m hoping the above situation will fix, but I need more information on how to utilize what’s above.

    Problem: WordPress toolbar is NOT showing up in MSIE, Firefox or Safari browsers. It IS showing in the Google Chrome browser. I’ve tried logging in with different accounts to see if it’s related to the login, but it’s the same – admin or member account – no toolbar. ALSO it’s the same with my other WordPress site – both are on two different servers. However, if I go to a WordPress.com site (versus a WordPress installation on a server/private site), the WordPress toolbar IS available.

    Since the WordPress toolbar is not available, I was hoping I could create menu tabs/options to get members easily to their BuddyPress inbox. The above information about building links from the sample structure is Greek to me. Where do I put that code? I’m using the Mantra Theme, so would I put it in the Custom CSS area? In the Appearance > Menu > Enter URL option? I’m thoroughly confused and I’m such a newb. Sorry!

    Here’s the website I’m building: http://ilovevampirenovels.com/ravenousbooktours

    Thank you!
    Arial Burnz
    Tour Host Coordinator

    #171830
    johnzhel
    Participant

    Great great app! Thank you. I have a question: how to post to my group(s)? It seems every time when I submit something, it goes to the all members update wall, nothing shows up in my group. Any idea what could go wrong?

    Thanks!

    #171829
    hkcharlie
    Participant

    thanks @xkronik13x

    it’s the second one that does what I want, I just thought I’d take the opportunity to request features of Buddypress while it’s in a high state of development.

    I keep getting told, the less plugins there are, the better the performance.

    #171828
    cpagan2000
    Participant

    Here you go

    <?php
    // hacks and mods will go here
    /**
     * Disables BuddyPress' registration process and fallsback to WordPress' one.
     */
    function my_disable_bp_registration() {
      remove_action( 'bp_init',    'bp_core_wpsignup_redirect' );
      remove_action( 'bp_screens', 'bp_core_screen_signup' );
    }
    add_action( 'bp_loaded', 'my_disable_bp_registration' );
    
    add_filter( 'bp_get_signup_page', "firmasite_redirect_bp_signup_page");
        function firmasite_redirect_bp_signup_page($page ){
            return bp_get_root_domain() . '/wp-signup.php'; 
        }
    ?>
    #171827
    cpagan2000
    Participant

    This has worked for me

    <?php
    // hacks and mods will go here
    /**
     * Disables BuddyPress' registration process and fallsback to WordPress' one.
     */
    function my_disable_bp_registration() {
      remove_action( 'bp_init',    'bp_core_wpsignup_redirect' );
      remove_action( 'bp_screens', 'bp_core_screen_signup' );
    }
    add_action( 'bp_loaded', 'my_disable_bp_registration' );
    
    add_filter( 'bp_get_signup_page', "firmasite_redirect_bp_signup_page");
        function firmasite_redirect_bp_signup_page($page ){
            return bp_get_root_domain() . '/wp-signup.php'; 
        }
    ?>
    #171826
    cpagan2000
    Participant

    Well this worked lets hope no issues.

    <?php
    // hacks and mods will go here
    /**
     * Disables BuddyPress' registration process and fallsback to WordPress' one.
     */
    function my_disable_bp_registration() {
      remove_action( 'bp_init',    'bp_core_wpsignup_redirect' );
      remove_action( 'bp_screens', 'bp_core_screen_signup' );
    }
    add_action( 'bp_loaded', 'my_disable_bp_registration' );
    
    add_filter( 'bp_get_signup_page', "firmasite_redirect_bp_signup_page");
        function firmasite_redirect_bp_signup_page($page ){
            return bp_get_root_domain() . '/wp-signup.php'; 
        }
    ?>
    #171824
    bp-help
    Participant

    @cpagan2000
    Please do some self help and refer to the codex. That is what it is there for!
    https://codex.buddypress.org/developer/customizing/bp-custom-php/

    #171823
    cpagan2000
    Participant

    It makes no sense do I have to create this file and then paste the code. Because there is no such file. Below is what it says on the link

    Disable BuddyPress’ registration and use WP’s instead. Paste this in /wp-content/plugins/bp-custom.php

    #171822
    xKroniK13x
    Participant

    This does it. I have it running on my site, but I modified the code to use a select box instead of check boxes. But this is what you’re looking for, I think.

    https://wordpress.org/plugins/buddypress-registration-groups-1/

    Or this one if you don’t want them to have a choice.

    https://wordpress.org/plugins/buddypress-auto-group-join/

    bp-help
    Participant

    @cpagan2000
    Please do not reply on topics almost 3 years old. I replied here:
    https://buddypress.org/support/topic/wordpress-login-and-registration-page/

    #171816
    Ben Hansen
    Participant

    bbbpress is forum software, buddypress gives you more in depth user profiles groups and activity streams (amongst other social netowrky type things) the two can be used separately or together.

    #171813
    wickedmellow
    Participant

    I have the same question, about to install wordpress and buddypress, but saw this and also only want one login and user account for people to sign up with. I’m right in that it sounds like new users would have to create one account for each right now or not? TY 🙂

Viewing 25 results - 19,026 through 19,050 (of 69,109 total)
Skip to toolbar