Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 7,751 through 7,775 (of 69,109 total)
  • Author
    Search Results
  • #268182

    In reply to: BuddyPress conditions

    shanebp
    Moderator

    Your questions are about WP and WooCommerce, not BuddyPress.
    All three are free, so set up a test site and start using other plugins or custom code to handle your desired user roles.

    #268167
    marymezzo
    Participant

    I’m having exactly the same problem: when viewing reg form on iPhone, no way to add info to fields; buttons don’t work.

    Running WP 4.8.2 and Buddypress 2.9.1.

    I would love to see some feedback on this topic.

    Given the number of people who use the web on their phones, a registration form that doesn’t work for mobile users is a registration form that doesn’t work.

    #268164
    Henry Wright
    Moderator

    You can’t do this by default on the front end in BuddyPress. You can of course do this in the WordPress admin area as an administrator.

    Nathan Pinno
    Participant

    Hey,

    I run a site where everyone who registers can have their own blog, and the entries all show up on the homepage. Right now those posts on the front page link to their author profiles, but I would like them to link to their BuddyPress profiles instead.

    I’ve tried searching Google for a way to do so but any code I find results in a white screen on my site. The only plugin to do this is over two years old and will likely not work.

    How do I do this so that I will not get a white screen?

    Thanks!

    #268147

    In reply to: Contact user

    xmginc
    Participant

    @flashvilla, hope this helps:

    I’m using Gravity Forms to display a contact form on each member profile page and dynamically populating a hidden field with the member’s email address.

    Here’s info on dynamically populating a field in GF

    Their example:

    add_filter( 'gform_field_value_your_parameter', 'my_custom_population_function' );
    function my_custom_population_function( $value ) {
        return 'boom!';
    }

    I have changed this to:

    add_filter('gform_field_value_bp_member_email', 'bp_member_email');
    function bp_member_email($value){
      return bp_get_displayed_user_email();
    }

    In Gravityforms, I have then created a hidden field and in the advanced tab of that field, checked “Allow field to be populated dynamically” and entered the “Parameter Name:” as “bp_member_email”

    Then, in the notifications, the “Send to Email” should be changed from a standard email to a Gravityform tag. You can get that by clicking the little arrow key beside many fields such as “From Name” box. Find the name of your hidden field and click that. It should give you something like this: {BP Member Email:7} where “BP Member Email” is the name I gave the hidden field – yours will be whatever you named it.

    You’ll also need to embed the form to your child theme: /themes/yourchildtheme/buddypress/members/single/home.php

    Details on how to embed into your theme can be found here. Example: (where 1 is the ID of your form and 12 is the starting tabindex)

    <?php gravity_form(1, false, false, false, '', true, 12); ?>

    If this worked, you can view the source code of the member page and you’ll see the member’s email as an input value in the hidden field.

    Hope this helps!

    Please note: if you can’t have the person’s email displayed publicly in the source code for privacy (even though it’s not visible on the site), you will need an alternative method. Members on my site all have their emails visible so it’s not an issue for me.

    #268127
    shanebp
    Moderator

    Use bp_group_has_members and specific the id of the group.
    For example: <php if ( bp_group_has_members( 'group_id=15' ) ) : ?> etc.

    Group Members Loop

    #268124
    amitgupta3
    Participant

    Can anyone please suggest me? Let me explain my problem again.
    I have a contact form that user can use to contact the Admin or any Member by emailID.
    Admin/member can reply to him on his email.
    All this happening flowless on email but this whole thread is out of BuddyPress context. There is no tracking of this conversation.

    Can someone suggest how can I keep track of this conversation and show it in “Messages” section when user login? Can we track by email address of this user and show in Messages.
    OR is it mandatory to login First. Even then how contact form details can be captured and shown in Messages section.

    #268106
    janbrinkmann
    Participant

    Seems like bbPress and Buddypress cause that conflict.

    #268100
    Henry Wright
    Moderator

    Check out the Template Hierarchy article. You can override the default templates by creating custom templates in your theme.

    #268082
    stunomatic
    Participant

    I use the function “my_custom_ids” Loop

    #268081
    stunomatic
    Participant

    Thanks @shanebp for response. OK I played around and here is my code. Its working fine but with one issue i.e

    If there is no value it echo’s all the members.

    
    <?php 		
    $contrytoggle = get_field( "country_toggle" );
    $contrypri = get_field( "select_country" ); ?>
    
         <?php echo $contrytoggle; ?>
    
    	<?php if ( bp_has_members( my_custom_ids( $contrytoggle, $contrypri ) ) ) : ?>
    	
    	<ul>
      <?php while ( bp_members() ) : bp_the_member(); ?>
     
        <li>
          <div class="item-avatar">
             <a href="<?php bp_member_permalink(); ?>"><?php bp_member_avatar(); ?></a>
          </div>
     
          <div class="item">
            <div class="item-title">
               <a href="<?php bp_member_permalink(); ?>"><?php bp_member_name(); ?></a>
          </div>
    	</li>
    	  
    	   <?php endwhile; ?>
    
    	</ul>
    	
    <?php else: ?>
     
       <div id="message" class="info">
          <p><?php _e( "Sorry, no members were found.", 'buddypress' ); ?></p>
       </div>
       
       
    	
    <?php endif; ?>
    #268073
    shanebp
    Moderator

    You’ll need to write some custom code.

    Add a buddypress members loop on the template you use to show your posts.

    Filter the members loop by their address.

    If you write some code and run into issues, you may get some feedback on these forums.

    Or you could post to the Jobs Board and hire a developer.

    #268071
    Aslan Guseinov
    Participant

    Hey, do a shortcode for registration form!
    We will insert it in a full width page, and this would be it!
    As I understand the page hierarchy, it can be all pages with sidebar or without.
    Where is the third option?

    Will this help?

    .registration #buddypress {
    width: 100% !important;
    }
    
    .page-id-64 div#right-sidebar {
    display: none;
    }
    #268067
    Coach Afrane
    Participant

    I found a simple solution.

    After activating multisite I installed and network activated BuddyPress.
    I also added this line to wp-config.php: define ( ‘BP_ROOT_BLOG’, 2 )

    It works perfect, just the way i wanted it.

    Thanks, you all.

    #268063

    In reply to: Force Profile Picture

    Brajesh Singh
    Participant

    Hi,
    Do you have the BuddyPress Force Profile Photo plugin active? If yes, Please disable it.

    If no, you will need to consult your theme developer, as they might have added it.

    Hope that helps.

    #268061
    littleplum
    Participant

    Hi! I have a website with buddypress activated on it, and have just started setting up the forum.
    I’d like to know how to hide the sub groups from showing on the main forum page, so that they are only visable once someone goes into each forum (state based mostly).

    Forum

    I’m a VERY new wordpress user, so be gentle haha!

    Thanks for any help with this,
    Kathy x

    #268059
    Bradley Stevens
    Participant

    @xmginc yep, so close. I just want users to get notifications and messages, and the same avatars and profile pictures network wide. That would expand the ability of buddypress tenfold.

    Thanks for the info on WPMU. I hadn’t really heard of them, but this has my interest

    #268058
    xmginc
    Participant

    So close isn’t it? This and scheduling could be an answer to a multi BuddyPress network on separate servers… WPMU offers 30 day free membership to check it out. They require a credit card to signup, but well worth it for all their other tools.

    #268055
    xmginc
    Participant

    I believe you could add the terms and a checkbox as a requirement as part of the BuddyPress Extended Profile. Instead of the text box you added for “terms of use”, you can remove that and add a single checkbox with the words “by registering…”. Hope this helps!

    #268053

    In reply to: Multisite issue

    xmginc
    Participant

    @rjt1985, wondering if you are still having any issues or if you have found the specific reason it worked itself out.

    We were experiencing a similar issue but could not find the reason. Our solution was to use GravityForms (developer version) instead by creating a custom registration form which also works directly with BuddyPress extended profiles.

    #268047
    shanebp
    Moderator

    WP, BuddyPress and WooCommerce could be used to create your site.
    And they are all free, so set up a dev site and start experimenting.
    You’ll need to write some custom code to handle the email restrictions.

    #268039
    bulld_digital
    Participant

    I had the same issue, but there’s an easy fix. please see: https://buddypress.org/support/topic/avatar-across-multisite/

    #268036

    In reply to: Blank BuddyPress Pages

    Fahmi Barnes
    Participant

    Finally, someone reply!.
    Peepso is too long has gone from my site before I decided use BuddyPress so it leave the shortcode on the page. And yes, I’m using Ultimate Member too but I just recently installed that plugin after BuddyPress has gone crazy over a month. And, “The best approach would be to wipe your install and start over from scratch.” you mean, starting my site from beginning? or disable Ultimate Member and reinstall BuddyPress?.
    Thank you

    #268035
    xmginc
    Participant

    Update: I have tried as many methods found in this Support Forum including bp-custom.php, functions.php, different wp-config.php options.

    The one that worked for us is via a wp-config.php modification with code from @boonebgorges here: buddypress.trac.wordpress.org/ticket/4252

    // This assumes that the blog in question is #1. If it's not, the path will 
    // have blogs.dir in it
    define( 'BP_AVATAR_UPLOAD_PATH', '/var/www/html/example/wp-content/uploads' );
    
    // Again, assuming you're coming from #1. To pull from a different blog, 
    // it'll be example.com/secondaryblog/files or something like that
    define( 'BP_AVATAR_URL', 'http://example.com/wp-content/uploads' );
    

    Also wanted to share that if we add bp-custom.php and add various fixes suggested by others it results in a fatal error with a call to undefined bp_core… perhaps there is a different issue causing other fixes to not work for us… Open to try other suggestions but so far so good with fix above.

    #268034
    xmginc
    Participant

    (apologies for the double post – pls delete if possible thx)

Viewing 25 results - 7,751 through 7,775 (of 69,109 total)
Skip to toolbar