Search Results for 'buddypress'
-
AuthorSearch Results
-
March 25, 2010 at 2:29 pm #70105
In reply to: Buddypress/buddymatic issue
Andrea Rennick
Participant“This is the same for Sense and Sensibility, btw. white screen o’ death “
Did you have BuddyPress activated before you switched to S&S? If not, that’s why.
March 25, 2010 at 2:26 pm #70103In reply to: New users are not getting verification email
Pascal Dreissen
ParticipantAndy,
I don’t think that’s the issue. However i am also not sure it is buddypress related, i did some more testing and found that creating a user from the backend does not send confirmation mails either. Private messaging within buddypress is working great however. So it is in my case NOT buddypress related.
March 25, 2010 at 2:22 pm #70100In reply to: Wrong Avatar and Gravatar after BP update
joshmac
ParticipantHas anyone else found a fix for this yet or a way to reset? This fix does not work for me: https://buddypress.org/forums/topic/wrong-avatar-and-gravatar-after-bp-update#post-40465 I am only having this issue with the theme that was activated during the upgrade. All other themes seem to work.
March 25, 2010 at 2:17 pm #70098In reply to: Update to 1.2.3
Andy Peatling
KeymasterWho is the author of the “simple_buddypress_profile_privacy” plugin? They need to update their plugin so it doesn’t die if BuddyPress is disabled:
https://codex.buddypress.org/how-to-guides/checking-buddypress-is-active/
March 25, 2010 at 2:04 pm #70095In reply to: Buddypress iPhone theme update
José M. Villar
ParticipantNice, makes me want to get an Iphone
March 25, 2010 at 1:49 pm #70093In reply to: Buddypress iPhone theme update
idotter
Participanti’d like to use it later on .. and if you’re looking for betatesters or translaters (german) i’ll be there …
March 25, 2010 at 1:25 pm #70088In reply to: REQUEST: Buddypress Profile Badges
dre1080
Memberwould very much like to have something like that on my site, similar to facebook profile badge
March 25, 2010 at 1:19 pm #70087In reply to: Buddypress/buddymatic issue
Andrea Rennick
ParticipantUgh.
okay, I shall test again.
March 25, 2010 at 1:16 pm #70086In reply to: REQUEST: Buddypress Profile Badges
Sny
Participanti needed that plugin too but failed to find so i created one, it is not very well written and i am still testing you can see screenshots from the link given below
March 25, 2010 at 1:07 pm #70084omaru
ParticipantHi RAY,
I must use WPMU and must use it on an existing blog.
March 25, 2010 at 12:08 pm #70078roadblock
ParticipantI went a different route to do the same thing.
Installed a plugin called ‘Page Links To’
Then I just pointed the page links to section of the page editor to the /member/, /groups/, /forums/ urls. no coding, took a few min.. just be sure to setup the pages with proper parent/child and your good to go…
March 25, 2010 at 12:02 pm #70077In reply to: [New Plugin] BuddyPress Group Forum Extras
rich! @ etiviti
Participanti’ll tag up a stable version later today – just adding in a few extra functions
March 25, 2010 at 11:54 am #70076Bowe
ParticipantHere’s the code for a sub menu on the right side of the header with subnavigation:
Header.php
<div class="navwrap">
<ul id="dropmenu">
<li<?php if ( bp_is_front_page() ) : ?> class="home_active"<?php endif; ?> class="home">
<a href="<?php echo site_url() ?>" title="<?php _e( 'Home', 'buddypress' ) ?>"><?php _e( 'Home', 'buddypress' ) ?></a>
</li>
<?php if ( 'activity' != bp_dtheme_page_on_front() && bp_is_active( 'activity' ) ) : ?>
<li<?php if ( bp_is_page( BP_ACTIVITY_SLUG ) ) : ?> class="activity_active"<?php endif; ?> class="activity">
<a href="<?php echo site_url() ?>/<?php echo BP_ACTIVITY_SLUG ?>/" title="<?php _e( 'Activity', 'buddypress' ) ?>"><?php _e( 'Activity', 'buddypress' ) ?></a>
</li>
<?php endif; ?>
<li<?php if ( bp_is_page( BP_MEMBERS_SLUG ) || bp_is_member() ) : ?> class="members_active"<?php endif; ?> class="members">
<a href="<?php echo site_url() ?>/<?php echo BP_MEMBERS_SLUG ?>/" title="<?php _e( 'Members', 'buddypress' ) ?>"><?php _e( 'Members', 'buddypress' ) ?></a>
</li>
<?php if ( bp_is_active( 'groups' ) ) : ?>
<li<?php if ( bp_is_page( BP_GROUPS_SLUG ) || bp_is_group() ) : ?> class="groups_active"<?php endif; ?> class="groups">
<a href="<?php echo site_url() ?>/<?php echo BP_GROUPS_SLUG ?>/" title="<?php _e( 'Groups', 'buddypress' ) ?>"><?php _e( 'Groups', 'buddypress' ) ?></a>
</li>
<?php endif; ?>
<?php wp_list_pages('sort_column=menu_order&title_li&
'); ?>
<li class="tricks"><?php echo preg_replace('@\<li([^>]*)>\<a([^>]*)>(.*?)\<\/a>@i', '<li$1><a$2><span>$3</span></a>', wp_list_categories('echo=0&orderby=name&exlude=181&title_li=&depth=2')); ?></li>
</ul>
</div>CSS that goes with it:
/* Navigation */
.navwrap {
-moz-border-radius:8px;
-webkit-border-radius:8px;
background:url(_inc/images/top_bg.png) repeat scroll left top;
float:right;
margin:43px 0 0;
padding:10px 10px 3px;
}
#dropmenu,#dropmenu ul {
font-size:15px;
line-height:1.5em;
list-style-position:outside;
list-style-type:none;
position:relative;
width:100%;
z-index:300;
}
#dropmenu a {
color:#FFFFFF;
display:block;
font-family:nevisBold,"Trebuchet MS",Arial,Helvetica,sans-serif;
font-size:13px;
margin-left:2px;
padding:0 10px 0 17px;
text-decoration:none;
text-transform:uppercase;
}
#dropmenu a:hover {
border-bottom:4px solid #EFEFEF;
color:#555 !important;
text-shadow:0 1pt 1pt #FFF;
}
ul#dropmenu li.selected a,ul#dropmenu li.current_page_item a {
list-style-image: url(_inc/images/home.png);
}
#dropmenu li {
float:left;
padding-right:4px;
position:relative;
}
#dropmenu ul {
display:none;
position:absolute;
}
#dropmenu li ul a {
-moz-border-radius:8px;
-webkit-border-radius:8px;
background:#FFF;
border:1px solid #333;
float:left;
height:auto;
margin-bottom:1px;
margin-top:5px;
padding:3px;
width:150px;
}
#dropmenu ul ul {
top:auto;
}
#dropmenu li ul ul {
left:12em;
margin:0 0 0 10px;
}
#dropmenu li:hover ul,#dropmenu li li:hover ul,#dropmenu li li li:hover ul,#dropmenu li li li li:hover ul {
display:block;
}Finally some javascript that you can put in your footer for some nice effects:
<script type='text/javascript'>
jQuery(document).ready(function() {
jQuery("#dropmenu ul").css({display: "none"}); // Opera Fix
jQuery("#dropmenu li").hover(function(){
jQuery(this).find('ul:first').css({visibility: "visible",display: "none"}).show(268);
},function(){
jQuery(this).find('ul:first').css({visibility: "hidden"});
});
});
</script>You should tweak the .css and remove some unneeded images/padding/margin etc. Good luck dude!
March 25, 2010 at 11:46 am #70075Boone Gorges
KeymasterYou’ve more or less got the structure correct.
– I don’t believe “title” is a valid attribute for li and ul tags. If your goal is to display the word “Community”, you’ll have to put it outside the tag like so:
<li>Community...– I assume that your purpose is to make the Community submenu (Activity, Members, etc) a dropdown menu that is invisible except when you hover over the header Community. That’s a CSS issue. I recommend you find a WordPress theme (or any website, really) that has such a feature, look at the source code and especially the CSS, and emulate the necessary rules. You could also check out a tutorial, like the “horizontal” menu bar described here: http://www.seoconsultants.com/css/menus/tutorial/.
Good luck!
March 25, 2010 at 8:42 am #70072In reply to: Buddypress/buddymatic issue
thirdnote
MemberAndrea , I don’t think so, have latest versions of wpmu/bp and downloaded latest version I can find, for instance buddymatic is https://wordpress.org/extend/themes/buddymatic and the auto install on wmpu. This is the same for Sense and Sensibility, btw. white screen o’ death
March 25, 2010 at 7:17 am #70068In reply to: Supporting Devs & wishlist
gasparking
ParticipantAs buddypress grows with new “objects”, there is an opportunity for designers to work on graphical grammars and ways of representing those objects.
Why not add a “designers” menu.
where we could find groups for themes of course
but also : icon sets, avatar generators, …
March 25, 2010 at 5:21 am #70064In reply to: move a post to main blog?
gasparking
Participanttry this plugin
http://dev.benoitgreant.be/blog/2009/11/buddypress-sitewide-featured-posts/
It shows in a widget all the site wide selected posts
March 25, 2010 at 5:16 am #700633sixty
ParticipantIt’s on the radar for the next release:
March 25, 2010 at 4:02 am #70061r-a-y
KeymasterYou don’t need WPMU to use BuddyPress.
If you are testing this on a new install, I’d advise you to start from scratch.
Get WP, then get BP and everything should work.
Read this:
https://codex.buddypress.org/getting-started/setting-up-a-new-installation/
March 25, 2010 at 2:59 am #70060In reply to: [New Plugin] BuddyPress Group Forum Extras
3sixty
ParticipantThis is great – I was just about to add a “freshness” link to the last column on my install (just like they have on this forum). Thanks!
March 25, 2010 at 1:41 am #70058In reply to: [New Plugin] BuddyPress Group Forum Extras
rich! @ etiviti
Participanti have updated the development version again to 1.6b3 which now includes RSS Feed for public group forum topics and topic posts.
also included a few extra functions which require theme edits but give a little more bbpress feel
Link the freshness time_since to the last post
edit theme
/bp-default/forums/forums-loop.phpChange:
<td>
<?php bp_the_topic_time_since_last_post() ?>
</td>To:
<td>
<a href="<?php echo bp_forum_extras_topic_last_post_link( 15 ); ?>"><?php bp_the_topic_time_since_last_post() ?></a>
</td>Note: 15 per_page is default for bp_has_forum_topic_posts – you may need to change this if you use a different per_page in the loop.
Add pagination next to topic title
theme edit
/bp-default/forums/forums-loop.phpAfter the topic title, Add:
<?php bp_forum_extras_topic_page_links( 15 ) ?>You may pass additional args – refer to paginate_links codex
if you would like to test it out… grab the download from ‘development version’ at:
https://wordpress.org/extend/plugins/buddypress-group-forum-extras/download/
March 25, 2010 at 1:28 am #70056r-a-y
KeymasterPlease either PM Dave or post on Dave’s support site for his plugin:
http://getpaidfrom.us/groups/buddypress-ajax-chat-support
Dave doesn’t frequent these forums often.
March 25, 2010 at 1:23 am #70054heathology
ParticipantI’m having the same problem and I have version 1.2.6. Is this a settings error or a bug?
March 24, 2010 at 11:33 pm #70047In reply to: Question about Budypress and my WordPress Theme
r-a-y
KeymasterBuddyPress doesn’t create any pages (at least not in the current version).
It should be safe to use the BP Template Pack plugin.
But, as always, make a backup of your filesystem and your database just for safety measures.
Also, before making any changes on your live site, you should have some type of development site so you can test things like BuddyPress on it without worrying.
March 24, 2010 at 10:55 pm #70041In reply to: Group Hierarchy & Sub Groups
inthewoods
ParticipantSo far the best option I’ve found are group tags: https://wordpress.org/extend/plugins/buddypress-group-tags/
-
AuthorSearch Results