Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 18,851 through 18,875 (of 69,109 total)
  • Author
    Search Results
  • #172504
    Henry
    Member

    @kingdgm

    BuddyPress with the help of the right plugins from the WordPress plugin repository (https://wordpress.org/plugins/) can do everything you’ve mentioned.

    11. Projects: Members can start projects and invite other members to join (kind of groups)

    This is the one point I’m not sure about off the top of my head. It may need some custom code as I’m not aware of a plugin that does this.

    #172500
    SK
    Participant

    @mercime Using Tortoise SVN.

    Tried importing https://buddypress.svn.wordpress.org/trunk/ but getting

    Error: POST of ‘/!svn/me’: 403 Forbidden (http://buddypress.trac.wordpress.org)


    @idavidson
    I apologize for hijacking your thread.

    coutain
    Participant

    I’m also having the same issue. I even installed a fresh wp 3.6.1 and a fresh version of 1.8.1 with no other plugins.

    Under BuddyPress pages this is no Register or Activate page available.

    #172496
    Henry
    Member

    @hnla apologies should have explained that a bit better – i’m not assuming, I think BP does the assuming. Take a look at the last line of Boone’s post:

    BP Theme Authors: make sure your theme registers 'buddypress' support

    3rdaxis
    Participant

    I think i spoke to soon about that working. In the front end the link looks good, but i had my own twitter account in place and so it looked like Twitter:(with my twitter name) when i would click that and thought it worked because i was already signed in.

    Once i place a new twitter name in the profile, the front end looks right, “Twitter: chevrolet” just pulled one out of a hat, or any other twitter account, it goes right to my own profile or to twitter home page if not signed in.

    So messing about i cam up with this ugly but working solution based on what was posted here.
    it now bring the name in from the xprofile field into the url. Before it was grabbing a field from the wordpress profile.

    <?php 
        if ( $string = xprofile_get_field_data( 'Twitter', get_the_author_meta('ID') ) ) { ?>
           <a href="https://twitter.com/<?php if ($string =xprofile_get_field_data( 'Twitter', get_the_author_meta('ID') ) ) { echo $string;} ?>" target="_blank">Twitter:&nbsp<?php echo $string; ?></a> <?php
        }
    ?> 
    #172489
    Hugo Ashmore
    Participant

    @henrywright-1 Why are you choosing to work that way rather than running with theme compat template files? You do have a choice no way is right or wrong though if running the older style template approach you would need to have declared add_theme_support( 'buddypress' ); to ensure js/ajax unlinked, there is an issue with this though in that BP tries to get this value too early so fails to bail out of the theme compat class, so it needs to be positioned outside of a hook such as ‘after_setup_theme’ to be run early enough for bp.

    Hugo Ashmore
    Participant

    Well for starters kill any plugins that might interfere with a registration process e.g facebook login ones – to test issues it’s always the instruction to disable all plugins working them back in until problem one is found.

    Other than that it’s hard to say there’s too little information. As far as BP 1.8.1 goes on a trunk install I appear to have no issues registering.

    jamesdonegan
    Participant

    Thank you for the response. It didn’t fix my problem, though. Registration still not working, unless the user registers with Facebook.

    http://finisjhung.com/Streaming/create-an-account

    HELP!?

    #172474
    SK
    Participant

    @kakilo

    Iโ€™m using these plugins combined: bbPress, BuddyPress and BuddyPress Media (rtMedia).

    I wish that the maximum image files uploaded in โ€˜albumโ€™ (bp-album, I guess) …

    I think itโ€™s not from rtMedia

    It’s getting a bit confusing. You need to figure out which plugin is creating the album that you want to modify and then you need to ask that plugin’s author for support. BuddyPress does not provide any media capabilities by default, though that has been requested.

    P.S. rtMedia (previously known as BuddyPress Media) does create a Media tab. And it creates various albums under that tab.

    #172470
    kakilo
    Participant

    Hi @sooskriszta,

    I’m using these plugins combined: bbPress, BuddyPress and BuddyPress Media (rtMedia).
    I am also using a plugin to control membership access (PaidMemberShipPro), which give me codes to restrict content to only allowed users groups.

    In that case, I wish that the maximum image files uploaded in ‘album’ (bp-album, I guess) defined to a default value if the user is not from the member group allowed to have a higher number of images uploaded. (I know how to do that, but where can I define the maximum number of pics that a user can upload? (ike the max public images, max private images…)

    Thanks in advance,
    Appreciate any help.

    #172469
    pelasO
    Participant

    It was as simple as turn the restrict access to BuddyPress components to members only off located in the Cbox Theme Options.
    Once I identify the problem, I just add what I want to the maybe_redirect() in class.php function and problem solved.
    OLE MIS WEVOS PELUDOS!!

    bp-help
    Participant

    @3rdaxis
    Glad I could help! Good luck with your BuddyPress site! ๐Ÿ™‚

    3rdaxis
    Participant

    Much thanks to you @bphelp. That bit of code worked like clockwork. Yeah, i see the issue with having the wrong name in the field, but i will have instruction to double check and hopefully the authors will take note.

    #172458
    @mercime
    Participant
    bp-help
    Participant

    @3rdaxis
    The problem is it would require that the username the user entered in the profile field to match their twitter id exactly. If not it may take them to god knows where. Anyway, this is untested but you can give it a whirl!

    
    <?php 
        if ( $string = xprofile_get_field_data( 'BIO', get_the_author_meta('ID') ) ) { ?>
           <a href="https://twitter.com/<?php echo get_the_author_meta('display_name'); ?>" target="_blank">Twitter:&nbsp<?php echo $string; ?></a> <?php
        }
    ?>
    
    3rdaxis
    Participant

    Thanks for your reply @bphelp I tried both codes and the second works to a point at where i need to be.

    The thing im trying to do is call the xprofile field which would be where the author would place their twitter, google+ or facebook id and show it as a link.

    The second code you gave me give the result Twitter:(and the user name i placed in the xprofile field) and as you would know takes me to twitter but not to the profile.

    Is there a way that you know that would replace “username” with that actual username?

    much thanks.

    bp-help
    Participant

    Or:

    
    <?php 
        if ( $string = xprofile_get_field_data( 'BIO', get_the_author_meta('ID') ) ) { ?>
           <a href="https://twitter.com/USERNAME" target="_blank">Twitter:&nbsp<?php echo $string; ?></a> <?php
        }
    ?>
    
    bp-help
    Participant

    @3rdaxis
    Untested but maybe something like this would work, in this example you would need to change “USERNAME” at the end of the URL to the persons twitter name. To get other URL’s to work you should just change the URL etc.

    
    <?php 
        if ( $string = xprofile_get_field_data( 'BIO', get_the_author_meta('ID') ) ) { ?>
           <a href="https://twitter.com/USERNAME" target="_blank" alt="twitter"><?php echo $string; ?></a> <?php
        }
    ?>
    

    As @henrywright-1 already stated “Replace BIO with your field name.”

    3rdaxis
    Participant

    I really appreciate your help. Thats the first bit of code that has worked to display the xprofile fields and iv tried allot.

    Im not sure if you could help me with this one aspect. I would like to also call something like google+, twitter or facebook links that I created in the xprofile fields.

    I can call those fields with the code posted here, but im wondering if @henrywright-1 or anybody stopping by this post could help with the code needed to make the called data as a link with alt text so it looks like Twitter, Google +, Facebook.

    Thanks for any help or pointers

    protechs2
    Participant

    This was all that showed on the Theme Check run:

    Notice: Undefined index: page in /home/xyz/public_html/blog/wp-content/plugins/advanced-category-excluder/advanced-category-excluder.php on line 15

    Notice: register_widget_control [x 7 exact occurrences of this line] & register_sidebar_widget [x 6 exact occurrences of this line] is deprecated since version 2.8! Use wp_register_widget_control() instead. in /home/xyz/public_html/blog/wp-includes/functions.php on line 2900

    Notice: Use of undefined constant ace – assumed ‘ace’ in /home/xyz/public_html/blog/wp-content/plugins/advanced-category-excluder/advanced-category-excluder.php on line 310

    Notice: Use of undefined constant ace – assumed ‘ace’ in /home/xyz/public_html/blog/wp-content/plugins/advanced-category-excluder/advanced-category-excluder.php on line 310

    Deprecated: Assigning the return value of new by reference is deprecated in /home/xyz/public_html/blog/wp-content/plugins/bp-moderation/classes/bpModeration.php on line 118

    Notice: Undefined index: action in /home/xyz/public_html/blog/wp-content/themes/fusion/functions.php on line 120

    Notice: has_cap was called with an argument that is deprecated since version 2.0! Usage of user levels by plugins and themes is deprecated. Use roles and capabilities instead. in /home/xyz/public_html/blog/wp-includes/functions.php on line 2998
    ————–

    I don’t know which one would cause the problem in BuddyPress Users/Friends page.

    #172443
    @mercime
    Participant

    @sooskriszta https://make.wordpress.org/core/handbook/submitting-a-patch/
    instead of downloading https://core.svn.wordpress.org/trunk/ via SVN, you’d need to download via SVN client https://buddypress.svn.wordpress.org/trunk/

    Then after you’ve tested the changes you’ve made in your test installation, log in and create a new ticket in https://buddypress.trac.wordpress.org/ and upload that patch.

    #172442
    SK
    Participant

    What @danbp said. Select “sitewide forums”

    #172440
    tse11
    Participant

    Got it working now, thanks anyway. In case anyone is wondering how, I changed the log in to /wp-admin instead of /wp-login.php in the user email when a user creates a new site and this page will not redirect anyone to a buddypress page.

    #172439
    @mercime
    Participant

    @politiclear Since we don’t have access to this premium theme, pending the response of someone who has used Headway theme with BuddyPress, I recommend that have you check Headway theme forums if the theme is compatible with BuddyPress and/or if you need any modifications in the theme to make it compatible with BuddyPress. I have changed the title of this post to include Headway.

    #172437
    tse11
    Participant

    My site is not yet live, @bphelp I am using a post page as homepage. I don’t know if this will help but as I stated earlier, my site is an MU and I am using sub-domains. So when a user logs in from theirsitename.mysite.com/wp-login.php with any redirect codes I’m using, they too are redirected to a buddypress page which is confusing for the user since they are logging in to edit their site. I basically just need a condition that works properly where I can add if_user_is_admin DON’T redirect or if_user_is on subdomain login page don’t redirect. ๐Ÿ˜‰

Viewing 25 results - 18,851 through 18,875 (of 69,109 total)
Skip to toolbar