Search Results for 'buddypress'
-
AuthorSearch Results
-
January 5, 2016 at 11:39 pm #248414
In reply to: Unclosed PHP tag In Template File – messages.php
Hugo Ashmore
ParticipantIt’s by design:
https://buddypress.trac.wordpress.org/browser/trunk/src/bp-templates/bp-legacy/buddypress/members/single/messages.phpClosing php tags shouldn’t be necessary, WP instructs not to close out files in this way. If you’re having issues they must lie with the custom templates?
January 5, 2016 at 10:24 pm #248413In reply to: Can’t login when Buddypress enabled
Zoggite
ParticipantI tried one of the standard themes with no change (not really surprising as the login/logout doesn’t use theme pages as far as I can tell).
I also tried disabling all the other plugins that had changed recently, but the only ones that made a difference were jetpack and buddypress. I’m pretty sure that the only reason disabling jetpack had an effect is that it also seemed to disable buddypress.
Thanks.January 5, 2016 at 10:15 pm #248412In reply to: Private Pages Glitch?
fscbmwcca
ParticipantI know the plugin doesn’t address my issue but keeps BuddyPress for members only and hide it from non-logged in users. Privacy is very important to our members. I will upload the members that are truly members from a csv file from a list that is provided for me and give the Contributor Role. What I meant by subscriber is the “Subscriber” Role (vs Contributor, Author, Editor, Administrator).
I’m sorry I haven’t expressed myself well and now off topic. I was just trying to provide a solution for making pages private.January 5, 2016 at 9:22 pm #248411In reply to: Private Pages Glitch?
burger0815
Participant
I want people to be able to register as Subscribers but Subscribers should not see any of the BuddyPress/bbPress stuff, only the Contributors and above should be part of the BuddyPress/bbPress community.
…
So you want to limit access to BP content based on a user’s role.
That is a different issue from the original poster’s issue.I am not sure I understand what you are talking about. What are subscribers?
I mean if I subscribe to get email notification that shouldn’t make the corresponding postings open to non-members even if they subscribed to the corresponding postings. so what do you mean by subscribers?January 5, 2016 at 7:37 pm #248408In reply to: Members – Masonry
kmw1130
ParticipantHere is my code. It is on the Members Page
if ( function_exists(‘bp_is_active’) ) {
if ( bp_has_members( $params ) ){
ob_start();
echo ‘<div class=”wpb_wrapper”>’;
echo ‘<div id=”members-dir-list” class=”members dir-list”>’;
echo ‘<ul id=”members-list” class=”item-list row kleo-isotope masonry ‘.$class.'”>’;
while( bp_members() ) : bp_the_member();
echo ‘<li class=”kleo-masonry-item”>’
.'<div class=”member-inner-list animated animate-when-almost-visible bottom-to-top”>’
.'<div class=”item-avatar ‘.$rounded.'”>’
.’‘. bp_get_member_avatar() . kleo_get_img_overlay() . ‘‘;
if ($online == ‘show’) {
echo kleo_get_online_status(bp_get_member_user_id());
}
echo ‘</div>’
.'<div class=”item”>
<div class=”item-title”>’
.’‘. bp_get_member_name() . ‘
</div>
<div class=”profile_fields”>’.bp_member_profile_data( ‘field=Organizational Name’ ).'</div>’;
‘<div class=”item-meta”><span class=”activity”>’.bp_get_member_last_active().'</span></div>’;if ( bp_get_member_latest_update() ) {
echo ‘<span class=”update”> ‘. bp_get_member_latest_update().'</span>’;
}do_action( ‘bp_directory_members_item’ ); echo ‘</div>’;
echo ‘<div class=”action”>’;
do_action( ‘bp_directory_members_actions’ );
echo ‘</div>’;
echo ‘</div><!–end member-inner-list–>
‘;
endwhile;
echo ‘‘;
echo ‘</div>’;
echo ‘</div>’;
$output = ob_get_clean();
}`
}
else
{
$output = __(“This shortcode must have Buddypress installed to work.”,”k-elements”);
}January 5, 2016 at 6:57 pm #248404In reply to: Members – Masonry
Hastig
ParticipantIs this to a single members full profile page?
/wp-content/themes/themeName/buddypress/members/single/index.phpOr to the page that lists multiple members?
/wp-content/themes/themeName/buddypress/members/index-directory.phpWither way, I use masonry on both. If you showed your code I may be able to help.
With my page layout I’m able to open the masonry div at the page top and close at at page bottom.
Be sure to have the masonry block divs within that main, masonry div marked with the proper class.
For starters, wrap the members photo (avatar) and Organization field in a div.
Make each div display as block.
Basic example..
<div style=”display: block;”>
<div style=”display: block;”><?php bp_member_avatar(‘type=full’); ?></div>
<div style=”display: block;”><?php bp_member_profile_data(‘field=Organization’); ?></div>
</div>Remember to replace the php with what you’re using on your site. (field name and avatar type, specifically)
January 5, 2016 at 6:22 pm #248399In reply to: Private Pages Glitch?
shanebp
ModeratorWith the WordPress 4.4/BuddyPress 2.4.3/bbPress 2.5.8, if you set any of the BuddyPress pages set to private you get the following error “The following active BuddyPress Components do not have associated WordPress Pages: Activity Streams. Repair”
True – If you set Visibility to Private!
Not true if you set the ‘Public or Private’ checkbox provided by the BP Simple Private.I want people to be able to register as Subscribers but Subscribers should not see any of the BuddyPress/bbPress stuff, only the Contributors and above should be part of the BuddyPress/bbPress community.
So you want to limit access to BP content based on a user’s role.
That is a different issue from the original poster’s issue.
You should create a new topic.
The BP Simple Private plugin discussed above is not applicable to your issue.January 5, 2016 at 5:22 pm #248397In reply to: Private Pages Glitch?
fscbmwcca
ParticipantWith the WordPress 4.4/BuddyPress 2.4.3/bbPress 2.5.8, if you set any of the BuddyPress pages set to private you get the following error “The following active BuddyPress Components do not have associated WordPress Pages: Activity Streams. Repair”
I tried the https://wordpress.org/plugins/buddypress-members-only/ and that didn’t seem to do what I wanted. I want people to be able to register as Subscribers but Subscribers should not see any of the BuddyPress/bbPress stuff, only the Contributors and above should be part of the BuddyPress/bbPress community. So I need to be able to exclude Subscribers from BuddyPress/bbPress. I have looked and there is some code out there that seems pretty old so I don’t know if it would work and I am not so great with php so I am a little hesitant. I am also new to BuddyPress so I’m not sure of all the ins and outs.
I tested the plugin and it’s working, in the settings there are two areas [edited – please do not copy & paste such data ]
I hope I am being clear.January 5, 2016 at 4:26 pm #248394In reply to: Private Pages Glitch?
burger0815
Participantthanks for the comment. If I understand correctly then the option:
allows an admin to select which Post types and BuddyPress Components are private
seems to indicate that things like the activity component or the member community component
could be set private.
Did you test the plugin?The sentence:
provides a Private checkbox in the upper right corner of every page, post, and custom post type selected in Settingsis a bit irritating, finally that feature exists already in a standard BP wordpress version.
That is at least in my BP wordpress version you can already mark
pages as private (i.e. non accessible to non-logged-in members),
i.e. there is already a checkbox. And if there wouldn’t be the bug then
setting the member page and activity to private would have set “the component” to
private, if I understood correctly.
Is the plugin checkbox another checkbox?There is a plugin which, by its description, seems to set everything private:
https://wordpress.org/plugins/buddypress-members-only/
and which lets you specify which subadresses should be open.
But in my case this is not so helpful because
I want the blog to be public and the blog is not behind a /blog/ adress
but behind the year /2015/… etc.
so I would need to set each year adress open, which seems OK but not really
straightforward.January 5, 2016 at 4:21 pm #248392In reply to: Buddypress.org my profile setting and image
Paul Wong-Gibbs
KeymasterHi Steve
It’s not meant to work. We need to update buddypress.org to remove/hide those options. Sorry for the confusion.
January 5, 2016 at 4:19 pm #248391In reply to: bp-activity-oldestpage cookie
Paul Wong-Gibbs
KeymasterIt’s to do with the pagination for the Activity Directory screen.
If you have more than 20 activity items (by default), you get a “load more” bar/button at the bottom of the Activity Directory. BuddyPress uses this cookie to store the current “page” of results that you’re on (so it doesn’t load duplicates).
January 5, 2016 at 1:53 pm #248381In reply to: Modify Activate and Register page code
shanebp
ModeratorBoth files are found here:
buddypress\bp-templates\bp-legacy\buddypress\members\
Make your changes in template overloads of those files.
January 5, 2016 at 7:02 am #248363Topic: how to change pagination in member loop ?
in forum How-to & Troubleshootingnilay89
ParticipantHello,
I want to change pagination format in member loop. I want to numerical pagination in member loop.like a “buddypress support forms”.How can i set it? is it possible?
Wordpress Version : 4.4
BuddyPress Version: 2.4.2
Theme use: Twenty SixteenI am working on my local wamp server
January 4, 2016 at 5:14 pm #248351shanebp
ModeratorCreate a template overload of this file:
buddypress\bp-templates\bp-legacy\buddypress\members\members-loop.php
In the overload, remove this code. It appears twice.
<div class="pag-count" id="member-dir-count-bottom"> <?php bp_members_pagination_count(); ?> </div>
January 4, 2016 at 2:30 pm #248345sharmavishal
ParticipantUse tools-buddypress-members to fix it
January 4, 2016 at 9:40 am #248337In reply to: [Resolved] Fatal error after update to 2.2.2.1
kostasbarkas30
ParticipantHello guys,
One question about bp checkins. this is a fantastic plugin but bpci_activity_address not showing greek characters. any idea how to make the code to use utf-8 so as to play the greek characters?
thanks
i am using buddypress 2.3.5 and wordpress 4.3.1
January 4, 2016 at 2:32 am #248330In reply to: How to create a Like notification?
Henry Wright
ModeratorTo like something are you using a plugin? BuddyPress doesn’t come with like functionality out of the box. I would think the plugin you’re using should supply the notification functionality. Try asking your plugin’s author to see if they can add the feature for you.
January 4, 2016 at 2:24 am #248329In reply to: How to create a Like notification?
ibuddybook
ParticipantThanks for reply Mr,danbp
Already i installed buddypress lke plugin. this plugin not send like notification. i thing buddypress like notification is not available in the internet. but how to manage my visitors. Social networking website main function is Like notifiacation only. visitors more expect this features. but buddypress not updating this function?????
January 4, 2016 at 12:33 am #248326In reply to: Private Pages Glitch?
fscbmwcca
ParticipantI installed BP Simple Private it seems to let you mark pages as private and if not logged in it redirects the page. I am only testing now and seems to be working. What I ultimately want to do is exclude “Subscribers” from BuddyPress and bbPress. Haven’t found how to do that yet.
January 3, 2016 at 5:41 pm #248323In reply to: Private Pages Glitch?
burger0815
ParticipantHello Brajesh Singh and Engine44
I am a newcomer to buddypress and I think I had similar problems as Engine44.
Frankly I could imagine that there are more people who have this
problem but eventually don’t even realize it as a problem.
In particular I can’t imagine that all that bp networks which
are used by schools want to have kids discuss in public. So it might
be a severe problem. But as said I am a newcomer so I might easily be
wrong.The following concerns mostly the member and activity pages (I hope they are called
this way, this is a direct translation from german), which are either set
public -or if set private can’t be found anymore (which seems to kill more or less all major bp functions, like you can’t see profile etc.) I haven’t looked into groups yet.I asked a person for help who is pretty proficient in solving general programming
problems but who is not a programmer and in particular not a PHP programmer. So eat with
utmost caution.He came up with the following hack:
The activity and member pages need to be public in order to assign them
on the bp page. (I think this is the default upon installation)
Then set the pages to private.go to buddypress/bp-core/bp-core-functions.php
and then in function bp_core_get_directory_pages() {…change
$page_names = $wpdb->get_results( „SELECT ID, post_name, post_parent, post_title FROM {$posts_table_name} WHERE ID IN ({$page_ids_sql}) AND post_statues = ‘publish’ ” );
into
// temporary hack
if ( is_user_logged_in() ) {
$page_names = $wpdb->get_results( “SELECT ID, post_name, post_parent, post_title FROM {$posts_table_name} WHERE ID IN ({$page_ids_sql}) ” );
} else {
$page_names = $wpdb->get_results( “SELECT ID, post_name, post_parent, post_title FROM {$posts_table_name} WHERE ID IN ({$page_ids_sql}) AND post_statues = ‘publish’ ” );
}
// was:
// $page_names = $wpdb->get_results( “SELECT ID, post_name, post_parent, post_title FROM {$posts_table_name} WHERE ID IN ({$page_ids_sql}) AND post_statues = ‘publish’ ” );
// /temporary hackJanuary 3, 2016 at 3:12 pm #248321In reply to: Working with BuddPress Login(redirects to wp-admin)
shanebp
ModeratorHave you tried deactivating other plugins to see if there is a conflict?
Have you tried switching to a WP theme like 2013 to see if there is an issue in your current theme?
How can i PM an expert each time i run into something i don’t know?
These forums are run by volunteers.
If you want access to an expert, you can create a listing on the jobs forum.January 3, 2016 at 1:28 pm #248318In reply to: How to create a Like notification?
danbp
ParticipantHi,
consider https://wordpress.org/plugins/buddypress-like/
Notification likes will be implemented in next update (dixit author)
January 3, 2016 at 1:19 pm #248317In reply to: Can i change the color?
danbp
ParticipantHi,
yes of course it is possible.
You have to modify CSS from within your child-theme.Try:
#buddypress div.item-list-tabs ul li.current a span, #buddypress div.item-list-tabs ul li.selected a span { background-color: red!important; }
This example will change the background color into red for the number when you’re on a profile tab.
Ie. when on message tab, background goes red. When not, it stays in original color. When on friends tab, background goes red, and so on.Use Firebug or a similar tool to get the correct tag class or id name.
January 3, 2016 at 2:44 am #248307In reply to: How to create a Like notification?
ibuddybook
ParticipantMr,Henry Wright
I was searching the like notification plugin in the internet. but not available. buddypress live notification plugin only available. this plugin is working in comment section. not working for share activity and like. so please help me to solve my problem????
Thank you
H.Suresh
January 2, 2016 at 5:28 pm #248293In reply to: WordPress User Table
shanebp
ModeratorBuddyPress does not have its own user table.
If BP is activated, all the users in the WP table are BP users. -
AuthorSearch Results