Search Results for 'buddypress'
-
AuthorSearch Results
-
February 25, 2012 at 7:57 am #130430
@mercime
ParticipantMissed it previously.,I see it now. BP components must be parent page levels in “Page Attributes” at this time. If you want to “show” that Members and Group Pages are under Forums, the use custom menu and position the Members and Group Pages under Forums
February 25, 2012 at 7:48 am #130429@mercime
ParticipantThis is a known issue and is fixed in trunk, ready for BP 1.6. If you’d like to fix this in your current installation, check this out https://buddypress.trac.wordpress.org/changeset/5628
February 25, 2012 at 6:29 am #130428In reply to: Import Twitter Feed (not buddystream)
CJ Kruger
Participant@modemlooper, will it be saving it and posting as a ‘activity type’ and not simply fetching the feed? Could you please explain how you plan on doing it as I have a similar idea for members?
Whilst I have you attention – can I use your share it plugin and incoperate it into a upcoming social plugin I will be releasing?
February 25, 2012 at 4:55 am #130427neodoxa
ParticipantI checked my permalinks, and they were set on Post Name, rather than default. So I don’t know why none of the buddypress pages are working…
February 25, 2012 at 3:47 am #130426@mercime
Participant== A bunch of the buddypress pages are “Page Not Found”… ==
Re-run Settings > Permalinks and choose permalink other than default.
You add the style modifications at the bottom of your boulevard theme’s stylesheet
February 25, 2012 at 3:15 am #130424neodoxa
ParticipantAlso, which php file do I add the tweaks to? (https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/)
February 25, 2012 at 3:07 am #130423neodoxa
ParticipantThanks. It works fine now.
A bunch of the buddypress pages are “Page Not Found”… I don’t know how that would have happened. I’ve tried uninstalling the buddypress plugin and reinstalling it, but it does the same thing. How do I completely uninstall buddypress and its files so that I can start over and have all of the buddypress-associated pages work?
Thanks!
February 25, 2012 at 1:30 am #130421In reply to: Publish a activity at that member’s profile
Anonymous User 8418620
Inactive@chrisclayton Can you help me with this: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/caps-look-in-the-username-field/ ??
February 25, 2012 at 12:44 am #130419In reply to: Disable HTML in activity updates
abysshorror
Member@boonebgorges thank you very much ! I’ll try this
February 25, 2012 at 12:38 am #130418In reply to: Don’t load comment box until it’s clicked
abysshorror
Member@boonebgorges thanks for replying
February 25, 2012 at 12:38 am #130417In reply to: Don’t load comment box until it’s clicked
abysshorror
MemberActivity update’s comment boxes.
I’m using Huddle (http://themeforest.net/item/huddle-wordpress-buddypress-community-theme/835549) but I’ve asked on the forums and the answer was:
“This was the default functionality from BuddyPress original theme, and we kept this.
We don’t plan to do this soon, but if this functionality will be added we will announce this on forum”February 25, 2012 at 12:24 am #130416In reply to: “My Favorites” Plugin
shoshanna
MemberI think I have this working now, based on the discussion on this post:
http://www.dnxpert.com/2010/06/11/mark-blog-post-as-favorite-in-buddypress/Here’s my code:
http://pastie.org/3451239February 24, 2012 at 11:17 pm #130415In reply to: [Resolved] Weaver theme and BuddyPress alignment
dsg257
MemberThanks you are brilliant
February 24, 2012 at 10:34 pm #130414frostdawn
MemberNote- if you run into the above issue, you have to systematically deactivate the different components, then just reactivate the core BuddyPress. You will then have access to the components view where you can toggle these settings back, and then reactivate the components.
February 24, 2012 at 6:37 pm #130410In reply to: Posting issue (Error)
@mercime
ParticipantWP/BP versions? What theme are you using and what plugins have you installed?
Have you tried basic troubleshooting by changing to bp-default theme and deactivating all plugins except BuddyPress?
February 24, 2012 at 6:32 pm #130409In reply to: Avatar Upload Failure
Paul Wong-Gibbs
KeymasterBuddyPress.org doesn’t support avatar uploads. We ought to really remove that option.
Use testbp.org to see an out-of-the-box BuddyPress site.
February 24, 2012 at 5:46 pm #130405In reply to: How do you create groups?!?!
@mercime
ParticipantWhat theme are you using? Have you done basic troubleshooting by changing to bp-default theme and deactivating all plugins except BuddyPress?
February 24, 2012 at 5:43 pm #130404@mercime
ParticipantNo need to insert block/folder inside the duotive3 theme. That’s what the BP Template Pack is for.
What I see in your second screenshot is that the UL list styles are showing and the layout is not being contained within the div. The style modifications I linked to should be placed at the bottom of other styles in your stylesheet.
For example, the UL list styles should be preceded by UL no list styles because of the following BP Twenty Ten style modifications I linked to above:
`div#item-header ul {
list-style-type: none;
}ul.item-list {
list-style-type: none;
margin-left: 0;
}ul#members-list,
ul#groups-list {
list-style-type: none;
margin-left: 0;
}`Since your site is not live, I can’t troubleshoot what’s going on directly. Use Firebug, a Firefox add-on, to see what’s overriding the modifications you’ve made or us Google Chrome and right click to Inspect Element.
February 24, 2012 at 5:11 pm #130402In reply to: HobokenMommies.com
RonVaradero
Participantdont look lke a buddypress driven site! specialy he profile fields!
February 24, 2012 at 4:15 pm #130398Boone Gorges
KeymasterTo elaborate on what @DJPaul said – BP uses WP’s logout, which is handled by wp-login.php. In particular, a request is sent to wp-login.php?action=logout, with a redirect_to argument of the current BP page.
February 24, 2012 at 4:12 pm #130396In reply to: Disable HTML in activity updates
Boone Gorges
KeymasterIf you want to remove all HTML, this should work:
`function bbg_remove_activity_html( $content ) {
return strip_tags( $content );
}
add_filter( ‘bp_get_activity_content_body’, ‘bbg_remove_activity_html’, 1 );
add_filter( ‘bp_get_activity_content’, ‘bbg_remove_activity_html’, 1 );
add_filter( ‘bp_activity_content_before_save’, ‘bbg_remove_activity_html’, 1 );`If you want to remove HTML tags more selectively, check out the filter at the end of this function, which will allow you to modify which tags are allowed: https://buddypress.trac.wordpress.org/browser/tags/1.5.4/bp-activity/bp-activity-filters.php#L90
February 24, 2012 at 4:08 pm #130395fashionbleeker
MemberHello,
understood that is impossible to customize the layout of boddypress without integrate a theme compatible we have decided to keep active our theme duotive 3 because we do not to change the look that is very important for us.
Please let me know if my following idea could be a good option.
We want to insert a block/folder inside our duotive3 and inside this new block will be installed a buddypress theme working in a parallel way.
I look forward to your reply.
ThanksFebruary 24, 2012 at 3:59 pm #130392In reply to: Sitewide Forum Help
frostdawn
MemberI’m anxious to hear a response on this as well. I used bbpress for forums initially, but using that with BuddyPress it’s ugly as sin and there isn’t a forums directory page to display all the active forums (otherwise it did work). The interface for the forums inside BuddyPress looks very nice, but from sitewide forums, I couldn’t actually create any forums.
Options currently are:
a forum that works but is awful looking (bbpress)
a forum that looks nice but isn’t really working; at least ‘out of the box’ (BuddyPress)February 24, 2012 at 1:57 pm #130382In reply to: calling messages_get_unread_count() in new php file
Boone Gorges
KeymasterFinally, this code probably won’t work all by itself, because `messages_get_unread_count()` assumes a logged-in user – but on an AJAX request, you’re not guaranteed to have that. So you may want to amend your ajax call and callback like so, to manually provide a user_id:
` jQuery.ajax({
….
user_id: ”,
….`Check out the way that bp-default does AJAX (buddypress/bp-themes/bp-default/_inc – the files ajax.php (for the PHP callbacks) and global.js (for the scripts). Good luck!
February 24, 2012 at 1:55 pm #130381In reply to: calling messages_get_unread_count() in new php file
Boone Gorges
KeymasterThe problem is that when you load message.php via AJAX, you’re not loading all of WordPress and BuddyPress, which means that the messages_get_unread_count() function is not defined.
Instead of using ‘message.php’ as your AJAX url, use the one that BP provides for you, and be sure to provide an ‘action’ parameter:
` jQuery.ajax({
url: ajaxurl,
action: ‘get_message_count’,
dataType….`That’ll ensure that WP/BP is loaded on your AJAX call.
Then, you’ll need to make sure that you have a listener function in your functions.php, using the `wp_ajax_` syntax. (Read more here: http://w4dev.com/wp/wp_ajax/) Use `wp_ajax_` plus your chosen action name to define the hook:
`function bbg_messages_ajax_callback() {
echo messages_get_unread_count();
die();
}
add_action( ‘wp_ajax_get_message_count’, ‘bbg_messages_ajax_callback’ );` -
AuthorSearch Results