Search Results for 'buddypress'
-
AuthorSearch Results
-
December 22, 2013 at 5:07 pm #175933
In reply to: I am confused….(notifications, bp-default, etc)
modemlooper
ModeratorCurrent BuddyPress works with any theme. All uou need to do is activate a different theme that is not a bp-default child theme
December 22, 2013 at 3:40 pm #175927In reply to: I am confused….(notifications, bp-default, etc)
colabsadmin
ParticipantSee if this helps to fix part of the problem: https://buddypress.org/support/topic/notifications-tab-appeared-in-profile/
December 22, 2013 at 3:39 pm #175926colabsadmin
ParticipantSee if this helps: https://buddypress.org/support/topic/notifications-tab-appeared-in-profile/
December 22, 2013 at 11:51 am #175919In reply to: 'Notifications' Tab appeared in profile?
koreancandy
ParticipantI just realised that the other admin had actually updated to the new Buddypress version which includes this tab.
How can I remove this tab still? It has broken my theme.
Thanks!
December 21, 2013 at 10:12 pm #175906shanebp
Moderator>they can see the list of members in either alphabetical order or by date of last visit.
You’re referring to the Members page?
And you want to show a profile field ( country ) for each member?You may be interested in this premium plugin:
http://www.philopress.com/products/buddyprofiledata/>Is it possible for the members to add several pictures, up to 5 for instance?
You need to add a gallery plugin, like https://wordpress.org/plugins/buddypress-media/December 21, 2013 at 9:31 pm #175905In reply to: Since BP 1.9 plugins don't use plugins.php file
mdpane
ParticipantThis is the same exact problem I was facing a couple days ago. I temporarily fixed it by adding some conditional tags, but I’d rather not muck up index.php for things like this.
Here’s an example of some of the code I added:
<div class="<? if ( is_rtmedia_gallery() OR is_rtmedia_single() OR is_rtmedia_album_gallery() OR is_rtmedia_album() ) : ?>MediaGallery<? else : ?>page<? endif; ?>" id="blog-latest" role="main">This changes the div class from ‘page’ to ‘MediaGallery’ for rtMedia pages.
<?php if ( have_posts() && !is_rtmedia_gallery() && !is_rtmedia_single() && !is_rtmedia_album_gallery() && !is_rtmedia_album() ) : ?>This says if isn’t rtMedia related, continue loading index.php as usual.
<?php elseif ( is_rtmedia_gallery() OR is_rtmedia_single() OR is_rtmedia_album_gallery() OR is_rtmedia_album() ) : ?> <?php bp_dtheme_content_nav( 'nav-above' ); ?> <?php the_content( __( '', 'buddypress' ) ); ?> <?php bp_dtheme_content_nav( 'nav-below' ); ?> <?php else : ?> <h2 class="center"><?php _e( 'Not Found', 'buddypress' ); ?></h2> <p class="center"><?php _e( 'Sorry, but you are looking for something that isn\'t here.', 'buddypress' ); ?></p> <?php get_search_form(); ?> <?php endif; ?>This says if it is rtMedia related, load that instead.
Hopefully a fix comes out soon.
December 21, 2013 at 5:01 pm #175895In reply to: Dynamic Menu Links
modemlooper
ModeratorAt top on menu admin page click screen options and make sure ‘BuddyPress’ is checked
December 21, 2013 at 4:48 pm #175894In reply to: group activity not showing – nothing showing up
michellecc
ParticipantWordpress 3.8
Buddypress 1.9.
Headway 3.5.5 used for blog design
s2member proDecember 21, 2013 at 4:13 pm #175892Jake
ParticipantThanks, will do – sorry if I came off curt; I’m the sole developer for a massive community endeavor (tying together bigbluebutton, buddypress, simple:press, woocommerce, sensei, software licensing, groups, subscriptions, informational video portal, document library, and of course a blog) and a bit burnt out to say the least. Just did a quick google search for the BP forum and looked for the suggestion thread cause I felt this was worth a discussion
December 21, 2013 at 3:54 pm #175889shanebp
Moderator> I have a million other things to code at the moment
Thanks for taking the time to post your code.
If you’d like to suggest an enhancement, please use trac to submit a ticket.
December 21, 2013 at 2:49 pm #175885In reply to: 2.0 top features – ideas
Shmoo
ParticipantBetter customisation options of the activity stream: ie to be able to define a set of “or” filters for content type, and who. So (with plugin support) I can define a feed to include things from “me or friends or followers” showing “topics and topic replies and posts and new users” (and ideally be able to have a permalink to this with no other fluff on display). The current activity feed selectors are a mess and don’t provide what most people want to see.
Should be nummer 1.
And I don’t even want lots of new features to the activity stream but first just an easy way to customize the default lay-out would be so much pleasant!
All BP pages are very easy to customize, move code around to give the page an unique feeling but when it comes to the activity stream the code is very fixed.
There are about 50-75 Premium BuddyPress themes online for sale and 99% of them have the same activity stream page-layout. While all those premium theme developers can do lots of customization to all other pages the activity stream is like Twitter’s Bootstrap to BuddyPress it always tells you it’s a BuddyPress website without looking at the code.
December 21, 2013 at 2:38 am #175873In reply to: group activity not showing – nothing showing up
@mercime
ParticipantBut all of a sudden nothing works.
WP/BP versions? Theme used, plugins installed? https://buddypress.org/support/topic/when-asking-for-support-2/
December 20, 2013 at 8:20 pm #175853airsid
ParticipantOk I will follow your advice, thanks.
I’ve seen i can disable the notifications function in buddypress settings so no hurry anymore 😉December 20, 2013 at 6:26 pm #175849In reply to: Orphan notifications if item was deleted.
Henry
MemberEDIT: You might want to raise this issue on Trac:
https://buddypress.trac.wordpress.org/December 20, 2013 at 1:57 pm #175841In reply to: Restrict subscribers from showing in member list
shanebp
ModeratorYou need to look at the s2member documentation to figure out how to gather all the ids for level1 members.
Then you can use the ‘include’ parameter in this approach:
https://codex.buddypress.org/developer/bp_user_query/#code-examplesDecember 20, 2013 at 12:36 pm #175838In reply to: Error: Missing argument 2 for wpdb::prepare
Henry
MemberTake a look at this page to see the parameters accepted:
Perhaps try using
profile_group_id:By default all groups and all fields will be displayed. If you provide the ID of a profile field group, then only the fields in this group will be displayed
So it would be:
if ( bp_has_profile( 'profile_group_id=2' ) ) :Where 2 is the ID(s) of the group you’d like to include. I think it should take a comma separated list but I haven’t tested.
December 20, 2013 at 9:11 am #175836airsid
ParticipantThanks @mercime for your quick answer.
But i’m a french novice and i’m not understanding very well what to do in the https://buddypress.trac.wordpress.org/ticket/5299 topic.Should I install thos patches:
5299.01.patch and 5299.02.patchor should I follow indications in lastest johnjamesjacoby’s comment:
In 7689:
Notifications:
Add templates and parts for bp-default theme. Also modify home.php to include notifications.php.or should I do the both ?
Sorry for asking but no access to notfications is important for my users 😉
Alos do you have an idea when the next update will be released ?
Thanks.December 20, 2013 at 8:25 am #175835Hugo Ashmore
ParticipantChecking recent forum topics is always a good idea, and/or searching in case similar issues have been raised and answered:
https://buddypress.org/support/topic/buddypress-1-9-update-made-the-default-bp-theme-gone/
December 20, 2013 at 4:59 am #175829In reply to: BP 1.9: empty html pages – error 500 solution
@mercime
Participant@frueck24 Fixed in https://buddypress.trac.wordpress.org/ticket/5299 in upcoming BP 1.9.1.
December 20, 2013 at 3:56 am #175828In reply to: add_theme_support breaks buddypress
modemlooper
Moderatorwp_dequeue_style(‘buddypress’)
December 20, 2013 at 3:47 am #175827In reply to: add_theme_support breaks buddypress
modemlooper
Moderatorjust leave buddypress.css blank if you want to kill all bp styles from being loaded by the plugin. You could also deregister the css file from getting loaded
Template overiding works in same manner as the css file.
December 20, 2013 at 2:27 am #175826In reply to: add_theme_support breaks buddypress
jedifunk
Participant@modemlooper thanks for the help!
yes, the documentation on this site for the theme override is extremely limited and definitely confusing…
the single page on this site talking about the add_theme_support function was very vague, and not worded well… certainly giving the impression that it WAS necessary in order to override.
to use custom pages/loops/etc, do i still need to have the /buddypress/activity/file.php in my theme?
lastly, i don’t like the idea of being required to load another css file to override styles… i’d prefer to just use the styles.css file. it also makes writing the css a pain since everything requires the use of the #buddypress ID… not very elegant IMO.
with 1.8 it was working great, i had the default styles off, and was able to add my bootstrap classes, and style only what i needed.
am i missing something here?
December 20, 2013 at 2:08 am #175820@mercime
Participant@mdpane @airsid Fixed in https://buddypress.trac.wordpress.org/ticket/5299 in upcoming BP 1.9.1.
December 20, 2013 at 2:08 am #175819In reply to: [Resolved] Registration endless loop-cannot register
petdailypress
ParticipantThis plugin: Buddypress Xprofile Custom Fields Type, had a conflicting field that I couldn’t see in my original theme. So I switched over to Twenty Twelve and the extra field popped up. So, I just deleted the (invisible) conflicting field from the profile, which allowed the Registration process to move forward.
December 20, 2013 at 2:04 am #175816In reply to: add_theme_support breaks buddypress
modemlooper
Moderatorremove those, you don’t have to add anything to a theme. Was there a reason you thought to add this?
To override css create a css folder in your theme folder and copy over the buddypress.css file from /bp-templates/bp-legacy
Then edit the buddypress.css file in your theme folder
-
AuthorSearch Results