Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 19,926 through 19,950 (of 68,967 total)
  • Author
    Search Results
  • #167946
    shanebp
    Moderator

    Still happening for me here.
    Intermittent and inconsistent – glad it’s not my bug assignment.

    #167945
    sem101
    Participant

    Still waiting on an answer.

    #167941
    modemlooper
    Moderator

    These forums are tied into WP.org forums and there was a server snafu maybe that was issue.

    #167931
    asdevargas
    Participant

    And freshly updated πŸ™‚ Thank you @bphelp!

    #167928

    In reply to: My account menu

    mathieu.urstein
    Participant

    @espellcaste
    do you have some news?
    I have been able to take the notifications like this :

    // notifications
    function my_bp_adminbar_notifications_menu() {
    	global $bp;
    
    	if ( !is_user_logged_in() )
    		return false;
    
    	echo '<li id="menu-item-9991" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9991 parent">';
    //	_e( 'Alerts', 'buddypress' );
    
    	if ( $notifications = bp_core_get_notifications_for_user( $bp->loggedin_user->id ) ) { ?>
    		<a href="#"><span id="notifs_top"><?php echo count( $notifications ) ?></span></a>
    	<?php
    	}
    
    	echo '</a>';
    	echo '<ul class="sub-menu">';
    
    	if ( $notifications ) {
    		$counter = 0;
    		for ( $i = 0; $i < count($notifications); $i++ ) {
    			$alt = ( 0 == $counter % 2 ) ? ' class="alt"' : ''; ?>
    
    			<li<?php echo $alt ?>><?php echo $notifications[$i] ?></li>
    
    			<?php $counter++;
    		}
    	} else { ?>
    
    		<li><a href="<?php echo $bp->loggedin_user->domain ?>"><?php _e( 'You have no new alerts.', 'buddypress' ); ?></a></li>
    
    	<?php
    	}
    
    	echo '</ul>';
    	echo '</li>';
    }
    #167927
    Tecca
    Participant

    This was happening to me for the longest time on here and bbPress.org, but it seems to have fixed itself now. It was always fine on WordPress.org.

    #167926
    bp-help
    Participant

    @asdevargas
    I removed the github version in favor of using the version in the official WP repository which has been improved. You can get it here:
    https://wordpress.org/plugins/private-community-for-bp-lite/

    #167917
    asdevargas
    Participant

    Hi! I tried with the plugin indicated by @chouf1 https://wordpress.org/extend/plugins/network-privacy/ but it doesn’t work properly (it let you see groups and members!) and the link provided by @bphelp doesn’t work πŸ™
    Is there any other plugin option?

    #167916
    waveint
    Participant

    Thanks modemlooper that was a great help…

    However i still get all this loaded into the head?

    <link rel='stylesheet' id='bp-legacy-css-css'  href='http://tempwp/wp-content/plugins/buddypress/bp-templates/bp-legacy/css/buddypress.css?ver=1.7.3' type='text/css' media='screen' />
    
    	<script type="text/javascript">var ajaxurl = 'http://tempwp/wp-admin/admin-ajax.php';</script>
    
    	<link rel="alternate" type="application/rss+xml" title="Template WP | Site Wide Activity RSS Feed" href="http://tempwp/activity/feed/" />
    
    		<script type="text/javascript" charset="utf-8">
    			/* <![CDATA[ */
    			var ajaxurl = 'http://tempwp/wp-admin/admin-ajax.php';
    			/* ]]> */
    		</script>
    
    	<link rel='canonical' href='http://tempwp/members/' />
    
    	<script type="text/javascript">
    		jQuery( document ).ready( function() {
    			jQuery( 'a.confirm').click( function() {
    				if ( confirm( 'Are you sure?' ) )
    					return true; else return false;
    			});
    		});
    	</script>
    #167913
    ericrosete
    Participant

    Wow! Great work. A great example of what BuddyPress can really do!

    I’m curious, what other plugins did you use when building the site? I’m guessing Advanced Custom Fields is one of them. Did you also create custom post types?

    I’m also building a similar recruiting site and I’d like to build member profiles just like you did.

    #167911
    modemlooper
    Moderator

    some weird cache going on.

    #167910
    maikunari
    Participant

    Just posting back with the solution in case it helps anyone else. This function will do it:
    xprofile_get_field_data('Profile',$u_id);

    In my case it’ll be:

    <?php if ( xprofile_get_field_data( 'Profile', $user_ID ) ) : ?>
         <?php echo xprofile_get_field_data( 'Profile', $user_ID ); ?>
    <?php endif; ?>

    Thanks to chifliiiii on WordPress Answers and to @shanebp.

    #167909

    Would you be willing to share it? The plugin with your changes… I’m desperate. Thanks!

    chriswiedmann@yahoo.com

    #167908
    Gazen
    Participant

    The plugin is a simple calendar, but I made ​​several changes

    #167907

    Which plugin? Please help! Ive been looking for weeks to fins a way to give users their own personal calendars.

    #167897
    modemlooper
    Moderator

    do you want to edit css or just get rid of it all together? You can add blank files. Adding these files will override bp’s files. If they are blank nothing gets loaded:

    yourtheme/css/buddypress.css
    yourtheme/js/buddypress.js

    Or try and remove hook action:

    remove_action(‘bp_enqueue_styles’);
    remove_action(‘bp_enqueue_scripts’);

    #167896
    4ella
    Participant

    I am trying something similar with gravity forms, I am trying to pre-populate gravity forms fields with buddypress profile data fields and I can’t get it work too, I am using something like this in functions.php if it helps:

    // Buddypress pre-populate phone
        add_filter("form_field_value_phone", "populate_phone");
        function populate_phone() {
                $current_user = wp_get_current_user();
                $current_user_id = $current_user->ID;
                $phone = bp_profile_field_data( array('user_id'=>$current_user_id,'field'=>'phone' ));
                return $phone;
        }
    #167895
    4ella
    Participant

    yes, You will only need 3 plugins in case that Achievements plugin supports Custom Post Types:
    1.Gravity Forms plugin
    2.Gravity Forms + Custom Post Types plugin
    3.Achievements plugin

    #167887
    modemlooper
    Moderator

    Seems like a job for Gravity Forms plugin.

    #167885
    alexfads
    Participant

    I see. I apologize, I am fairly new to this forum thing. Let’s try this again…Hi everyone, I am currently trying to create a buddypress network, where members can either join for free, or receive more options by joining a paid membership program. The free members are able to post whatever they choose, and receive achievements/badges for doing so. The problem i have is, my wordpress theme is centered around minisites that are all created using custom post types. Also, the custom post types allow me create beautiful reviews, award badges and ratings, but only on my wp-back end. I am relatively new at coding, and this framework is definitely a template (industrial themes-flavor to be exact.) I would like to find a way to basically add the custom post capability (hopefully enough to match at least some of the functionality that i see on the backend) to the front user end of buddypress. That way, members can write reviews and award ratings/badges to the products they like, but not have to log into my backend. I know this might seem far-fetched, and Im sure there is a lot of work to make happen. However, I would at least like to try and start somewhere. So, on that note, if anyone has any idea,solution,experience with buddypress and custom post types, i would love to hear any insight, and would greatly appreciate any help. Without giving away all of the details, my goal is to create a network where users can basically buy/sell/share/create custom post type articles/products and be rewarded for doing tasks/events. Also, I would like to create an affiliate network within the model, where members that would like to have more than just a fun experience, be able to make a profit off of writing/sharing/click throughs, etc. So, finally, if I can’t find the help i need to slowly create this model myself, I am also willing to hear out anyone that might be interested in developing this network. I am sure that last statement was probably supposed to be placed somewhere else and not here, but I figured Id chance it in hopes to find anyone willing to help. Thank you for your time everyone, and may you all have a blessed wordpress/buddypress operating system.

    #167883
    mathieu.urstein
    Participant

    This is directly with buddypress in the components page.
    I’m using the french version so I guess that it’s “extended profile”

    But you can see the <p class="description"></p> In the /register/ page or under the modify profile page.

    #167881
    Hugo Ashmore
    Participant

    @alexfads this is a public forum, if you want help please post an open question, it is not good form to call out individual members for help.

    #167874
    Suhas Naik
    Participant

    I am going to use BuddyPress on my site Kenfolios for community building. I am also planning to use BBpress forum along with BuddyPress. Is this trick going to work for BBpress forum too.

    #167870
    Martin
    Participant

    @bphelp Checked out the buddydev.com thread and gave him 2 other WordPress threads relating to WPSEO and BP so hope he can make his stuff (and BP) even better.
    Back to pondering on my fledgling community ….. πŸ™‚

    #167869
    Martin
    Participant

    @bp-help yeah, I am running WordPress SEO by Yoast as well as one mod but will need to check the one you listed and suss it out.
    The site has social sharing coming out of the kazoo. So I still haven’t found whatever it is that people find attractive in a Community such as the one I’m trying to get going and build up.

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