Search Results for 'buddypress'
-
AuthorSearch Results
-
April 1, 2010 at 6:18 am #71221
In reply to: Extra Fields for Groups aka BPDEV Groups Extra
Paul Wong-Gibbs
KeymasterThis post is one year old! I’m locking this thread as, if Nicola says his plugins should work on BP 1.2, you can make a new one.
Nicola has not been around BuddyPress forums for several releases, so I suspect most of his plugins will not work with current BP versions. I do not know if he still works with BuddyPress, try sending him a message through this site.
April 1, 2010 at 6:14 am #71218In reply to: Theme template files not being loaded
@mercime
Participantbp-default child themes usually render something like below in Appearance > Themes
The template files are located in /themes/MyChildTheme. The stylesheet files are located in /themes/MyChildTheme. MyChildTheme uses templates from BuddyPress Default. Changes made to the templates will affect both themes.
Tags: buddypress, multiple columns, fixed width, group blog
Creating BuddyPress Child Themes – https://codex.buddypress.org/how-to-guides/building-a-buddypress-child-theme/
and remember to add “buddypress” to Tags in style.css of custom child theme
April 1, 2010 at 6:08 am #71217In reply to: Buddypress breadcrumbs
murrayac
ParticipantCan I get an example of the below statment wrapped in php thanks
bp_breadcrumbs_add( $name, $url, $desc, $parms, $img )April 1, 2010 at 5:07 am #71214In reply to: Where is the login/logout widget code??
@mercime
ParticipantYou mean the sidebar.php of bp-default theme
https://trac.buddypress.org/browser/tags/1.2.3/bp-themes/bp-default/sidebar.php
April 1, 2010 at 4:26 am #71212raynerlim36
ParticipantThanks David Lewis!
April 1, 2010 at 4:19 am #71211In reply to: E-mail domains blacklist doesn't work
djsteve
ParticipantI added captcha – and I still get multiple signups from the same dozen or so email-domains, even though they are already in my blacklist..
I am checking on another hunch today… I think there is a possibility that maybe having the same entry twice in the blocked domains could be causing an issue with it not working – that seemed to make it fail once before… I just pasted the domains I had banned into a spreadsheet and then sorted it alpha – and I had the same domain listed several times in several instances… now to clean it up and try it again.. I now have 437 banned domains in my list.. maybe there is an issue there?
Maybe these qualifiers should be added to the trac for fixing? on buddypress and maybe mu?
I will read the spam spam spam thread and see if there is anything else I can do as well.
April 1, 2010 at 1:58 am #71207In reply to: [New Plugin] BuddyPress Group Forum Extras
rich! @ etiviti
ParticipantIs it possible to make this just one plugin with a series of options/components (a la Buddypress it self) instead of 10 plugins?
I didn’t realize this would grow into a bunch of small plugins – i’ll look into changing it up
do you have a demo-page in order to see your plugin in action ?
I’ll set one up this weekend
April 1, 2010 at 1:31 am #71206In reply to: bp-blog theme as default
r-a-y
KeymasterHere are the steps to create a user blog theme off of the BP default theme:
1) Create a new child theme.
https://codex.buddypress.org/how-to-guides/building-a-buddypress-child-theme/
2) Copy over /plugins/buddypress/bp-themes/bp-default/header.php to your child theme’s directory.
3) In your child theme’s header.php, strip out all the [li] items in the [ul id=”nav”] block as well as the do_action line. Leave the wp_list_pages() line intact.
4) That’s it! Your new theme is ready to be used on user blogs
April 1, 2010 at 1:30 am #71205In reply to: [New Plugin] BuddyPress Group Forum Extras
abcde666
ParticipantHey etiviti,
do you have a demo-page in order to see your plugin in action ?
Many thanks,
April 1, 2010 at 1:03 am #71199In reply to: [New Plugin] BuddyPress Group Forum Extras
Mike Pratt
ParticipantI’m sorry if I missed this (searched thru this forum a bit and couldn’t find it)
Is it possible to make this just one plugin with a series of options/components (a la Buddypress it self) instead of 10 plugins? I love the plugin but there are some I don’t use and you can’t delete them without deleting all. A smaller point is that 10 plugins take up quite a bit of real estate in the plugin frame just for one plugin.
Many Thanks
April 1, 2010 at 1:02 am #71198In reply to: [New Plugin] BuddyPress Group Forum Extras
rich! @ etiviti
Participantjust change the values in the bb_forums.forum_order col
April 1, 2010 at 12:44 am #71192In reply to: Register from subdomain
Creative Modules
MemberWhat i mean is if my root MU install does not have Buddypress (mydomain.com). and I want to be able to create private company social network “subdomains” like xyz.mydomain.com and abc.mydomain.com…..both these sites will be totally isolated as far as their user registration, user interaction/communication , group setup etc…..because xyz doesnt trust or want to be involved with in any way abc?
April 1, 2010 at 12:43 am #71191In reply to: How to get rid of autolinking on profile fields
r-a-y
KeymasterPlease refrain from bumping similar threads.
You also posted in:
https://buddypress.org/forums/topic/words-in-user-profile-some-are-linked-some-are-not
All replies should be made in the above thread.
April 1, 2010 at 12:20 am #71188In reply to: [New Plugin] BuddyPress Group Forum Extras
3sixty
ParticipantYou are correct, it does display in the order created. Would still like the ability to reorder someday if it’s possible.
I managed to choose my own forum order with this adaptation of “foreach ( (array)$forumlisting as $listing)”
(though rich will cringe when he sees how I mangled/reverse engineered his great code)
<?php $forum_entries = array(9, 10, 7, 6, 3, 2, 1); /*this is the order I want my forums to appear in the forum index*/ ?>
<?php foreach ($forum_entries as $forum_entry) {
foreach ( (array)$forumlisting as $listing) {
if ($listing->id == $forum_entry) {
if (!is_user_logged_in() && $listing->status == ‘private’) {
$forumlink = $bp->root_domain . ‘/’ . $bp->groups->slug . ‘/’ . $listing->slug . ‘/’;
} else {
$forumlink = $bp->root_domain . ‘/’ . $bp->groups->slug . ‘/’ . $listing->slug . ‘/forum/’;
} ?>
<tr>
<td class=”num td-title”><?php if ($groupavatar) bp_forum_extras_the_forum_avatar( ‘item_id=’. $listing->id ) ?>
<h5>“><?php echo $listing->forum_name; ?></h5>
<small> – <?php echo $key . ‘ ‘ . $listing->forum_desc; ?></small></td>
<td class=”num td-topiccount alt”><?php echo $listing->topics; ?></td>
<td class=”num td-postcount”><?php echo $listing->posts; ?></td>
<td class=”num td-members alt”><?php echo $listing->total_member_count; ?></td>
</tr>
<?php } ?>
<?php } ?>
<?php } ?>
</table>
<?php }
April 1, 2010 at 12:18 am #71186In reply to: [New Plugin] BuddyPress Group Forum Extras
3sixty
ParticipantLOL. Had no idea. Will check out the admin panel!
April 1, 2010 at 12:03 am #71184In reply to: where are my forum favorites?
April 1, 2010 at 12:02 am #71183In reply to: How to: Make drop down menu from nav?
mcrustk2
ParticipantDid you ever solve this?
I have just come across BuddyPress and got it up and running, Im not a dev, I have exactly the same problem I want two other items to drop down under the ‘About’ page icon ‘Club Details, Our Team’, is there snippits or guides you could point me towards?
March 31, 2010 at 11:46 pm #71181In reply to: [New Plugin] BuddyPress Group Forum Extras
rich! @ etiviti
Participantdid you enable the option “Display Group Avatar next to forum name”?
March 31, 2010 at 11:28 pm #71180In reply to: How to uninstall buddypress
nagoonline
MemberI uninstalled and reinstalled WordPress. Problem solved but not happy.
March 31, 2010 at 11:25 pm #71179In reply to: Create a Site Forum
Craig Sunney
ParticipantIt thought for a bit longer….then gave same “page not found”….
Question: should I try removing Buddypress inlcluding all tables…and installing BBpress first?
Edit: r-a-y – thanks for your tireless help! Suport ticket submitted on BBPress too: as you suggested
March 31, 2010 at 11:24 pm #71178In reply to: [New Plugin] BuddyPress Group Forum Extras
3sixty
ParticipantAdd Avatar to BP Forum Extras – Forum Index
Hmm… I’m not seeing it in the Forum Index. Let me check my theme and see if that’s the problem.
update: I changed to the default theme and still not seeing it.
March 31, 2010 at 10:57 pm #71171In reply to: Blogs-Tab disappeared at www.testbp.org
mcrustk2
ParticipantJust found this, sorry for not digging further first. Apologies.
https://buddypress.org/forums/topic/how-to-totally-disable-user-blogs#post-26277
March 31, 2010 at 10:45 pm #71168In reply to: [New Plugin] BuddyPress Group Forum Extras
Anointed
ParticipantYou are correct, it does display in the order created. Would still like the ability to reorder someday if it’s possible.
March 31, 2010 at 10:09 pm #71159In reply to: [New Plugin] BuddyPress Group Forum Extras
rich! @ etiviti
ParticipantMore details please
Are you logged in? See a button view the activity posts?
Confirm the activity for that post has comments?
Check the html source for:
<ul id="activity-stream-postwhich is written in for each activity itemMarch 31, 2010 at 10:08 pm #71157In reply to: Plugin: PmWiki in Buddypress.
bpisimone
ParticipantIch glaube das wird nichts mehr, wenn Du Dir nur die letzten Postdaten anschaust.
You might wanna have a look at this here though: https://buddypress.org/forums/topic/plugin-release-buddypress-group-wikis
-
AuthorSearch Results