Search Results for 'buddypress'
-
AuthorSearch Results
-
July 11, 2013 at 8:53 pm #167946
In reply to: buddypress.org login broken
shanebp
ModeratorStill happening for me here.
Intermittent and inconsistent – glad it’s not my bug assignment.July 11, 2013 at 8:19 pm #167945In reply to: Admin toolbar different than Buddypress
sem101
ParticipantStill waiting on an answer.
July 11, 2013 at 6:14 pm #167941In reply to: buddypress.org login broken
modemlooper
ModeratorThese forums are tied into WP.org forums and there was a server snafu maybe that was issue.
July 11, 2013 at 3:08 pm #167931asdevargas
ParticipantAnd freshly updated π Thank you @bphelp!
July 11, 2013 at 1:39 pm #167928In 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>'; }July 11, 2013 at 1:25 pm #167927In reply to: buddypress.org login broken
Tecca
ParticipantThis 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.
July 11, 2013 at 1:08 pm #167926bp-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/July 11, 2013 at 8:55 am #167917asdevargas
ParticipantHi! 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?July 11, 2013 at 7:50 am #167916In reply to: Removing buddypress from wp_head
waveint
ParticipantThanks 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>July 11, 2013 at 1:28 am #167913In reply to: Have a look at HumanEKO.com and give your feedback
ericrosete
ParticipantWow! 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.
July 11, 2013 at 12:29 am #167911In reply to: buddypress.org login broken
modemlooper
Moderatorsome weird cache going on.
July 10, 2013 at 11:40 pm #167910In reply to: [Resolved] Add profile fields to Group Members loop
maikunari
ParticipantJust 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.
July 10, 2013 at 10:27 pm #167909In reply to: [Resolved] Buddypress personal user calendar
chriswiedmann@yahoo.com
ParticipantWould you be willing to share it? The plugin with your changes… I’m desperate. Thanks!
July 10, 2013 at 9:54 pm #167908In reply to: [Resolved] Buddypress personal user calendar
Gazen
ParticipantThe plugin is a simple calendar, but I made ββseveral changes
July 10, 2013 at 9:44 pm #167907In reply to: [Resolved] Buddypress personal user calendar
chriswiedmann@yahoo.com
ParticipantWhich plugin? Please help! Ive been looking for weeks to fins a way to give users their own personal calendars.
July 10, 2013 at 5:46 pm #167897In reply to: Removing buddypress from wp_head
modemlooper
Moderatordo 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.jsOr try and remove hook action:
remove_action(‘bp_enqueue_styles’);
remove_action(‘bp_enqueue_scripts’);July 10, 2013 at 5:34 pm #167896In reply to: Use BP data to populate per-user forms
4ella
ParticipantI 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; }July 10, 2013 at 5:28 pm #167895In reply to: Custom Post Types and Buddypress Activiy/posting
4ella
Participantyes, 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 pluginJuly 10, 2013 at 4:26 pm #167887In reply to: Custom Post Types and Buddypress Activiy/posting
modemlooper
ModeratorSeems like a job for Gravity Forms plugin.
July 10, 2013 at 3:30 pm #167885In reply to: Custom Post Types and Buddypress Activiy/posting
alexfads
ParticipantI 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.
July 10, 2013 at 2:58 pm #167883In reply to: remove empy description
mathieu.urstein
ParticipantThis 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.July 10, 2013 at 2:37 pm #167881In reply to: Custom Post Types and Buddypress Activiy/posting
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.
July 10, 2013 at 1:33 pm #167874In reply to: [Tutorial] Allow more HTML tags in BP forum topics
Suhas Naik
ParticipantI 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.
July 10, 2013 at 11:34 am #167870In reply to: Any successful Buddypress site?
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 ….. πJuly 10, 2013 at 10:47 am #167869In reply to: Any successful Buddypress site?
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. -
AuthorSearch Results