Search Results for 'buddypress'
-
AuthorSearch Results
-
August 15, 2012 at 9:44 pm #139555
In reply to: [Resolved] CSS Not Responding To Edits
Ben
ParticipantAh-ha! I just needed to fiddle with my classes some more.
li.activity-item.mini div.activity-content img.avatar {
display:inline-block !important;
vertical-align:top;
}
li.activity-item.mini div.activity-avatar img.avatar {
display:inline-block !important;
margin-top:10px;
margin-left:42px !important;
margin-right:-5px !important;
}Thanks @frank13!
August 15, 2012 at 9:14 pm #139552In reply to: [Resolved] CSS Not Responding To Edits
Ben
Participant@frank13 thanks for the suggestion, the FireFox inspection tool is similar to one in Firebug but does help, thank you. As a result of using the inspect tool I added/edited the following classes as such:
li.friends.friendship_created.activity-item.mini a img {
display:inline-block !important;
}
li.friends.friendship_created.activity-item.mini div.activity-content div.activity-header p a img {
display:inline-block !important;
}Unfortunately, this does not seem to have solved my problem.
August 15, 2012 at 9:03 pm #139551frank tredici
MemberOk, I got to the bottom of this (sort of).
My need and request ends up being a duplicated need requested 3 years ago (see https://buddypress.trac.wordpress.org/ticket/501)
So it looks like we have to live with the static Mystery Man graphic hard coded into BP.
The work around is to overwrite the BP Mystery Man graphic each and every time you upgrade your BP.
August 15, 2012 at 8:55 pm #139549In reply to: Maintenance Mode
August 15, 2012 at 8:52 pm #139548In reply to: Gif images
frank tredici
MemberHow or where are you cropping @David?
August 15, 2012 at 8:49 pm #139547In reply to: [Resolved] CSS Not Responding To Edits
frank tredici
MemberHey @Ben,
If you have never tried or seen this trick in Firefox — hit CTRL+SHIFT+i
You’ll go into inspect mode and there you can hover over block elements on the page and see the exact ID’s and Classes for your styles.
You can then use your theme’d style sheet to control styles by tagging “!important” (which you seem to be doing). It just might be that you are not capturing the right ID’s and Classes.
August 15, 2012 at 8:47 pm #139546In reply to: How to put javascript at the bottom
charlietech
ParticipantThanks @karmatosed for the direction. Now, with the code below, where would i put the javascript code? Would I only use the ,$ in_footer and put the javascript code somewhere? Could You show me an example?
`wp_enqueue_script(
$handle
,$src
,$deps
,$ver
,$in_footer
);`August 15, 2012 at 8:44 pm #139545@mercime
ParticipantAugust 15, 2012 at 7:57 pm #139543In reply to: [Resolved] How to remove activity since 1 hour ago
frank tredici
MemberNo prob Cal ( @mastermind12). Just remember to store the code below away because you will need to reapply it the next time, and every time, you upgrade BuddyPress. Once you have your own theme, you can put this in a style sheet called `style.css` in your themes directory and you will always hide the “bubble”.
`/* removes the activity bubble from buddypress */
ul#members-list span.activity {
display:none !important;
}`August 15, 2012 at 7:28 pm #139541In reply to: [Resolved] How to remove activity since 1 hour ago
frank tredici
MemberNo @mastermind12 — those 2 style sheet (.css) files are not coming into play on your Member’s Directory page.
Paste it to the bottom of `/wp-content/plugins/buddypress/bp-themes/bp-default/_inc/css/default.css` although you will need to repeat this paste each and every time you upgrade the BuddyPress plugin.
August 15, 2012 at 7:13 pm #139539adminRimma
ParticipantTo clarify my post above, I do not have buddypress showing in the toolbar on the left under settings on the subdomain and when i network activate it, do not see profile fields…
i have declared the root blog as advised…
August 15, 2012 at 7:05 pm #139538shanebp
ModeratorYou’ll want to start here:
https://codex.buddypress.org/developer-docs/group-extension-api/It’s quite powerful and I’ve used it to do the kind of expansion you describe.
August 15, 2012 at 6:02 pm #139535adminRimma
ParticipantI have the same problem! Installed BP 1.6.1 within WordPress 3.4.1 Multisite, subdomain setup; activated on network first, ran setup wizard…then deactived on network and activated on root blog id=3 (subdomain i want it on)…went to subdomain and activated it just there….no settings show up in toolbar and uder settings I get “you do not have sufficient permissions to access this page”.
also, during running the setup wizard, i get no buddypress on left menu — so i cannot access components to set up some custom fields…
please help!!!
am dead in the water like shaneholloman…August 15, 2012 at 5:39 pm #139533In reply to: Problems after updating buddypress.1.6.1
Tim Hyde
ParticipantI had similar issues with a plugin I developed – all fixed now. Your best contacting plugin developers as there do seem to be a few significant changes to core in 1.6.
Blank pages are often due to a plugin/theme throwing an error. The plugin maybe using stuff that’s changed (especially if accessing data structures like the $bp object directly) and is simply throwing an error. Use WordPress in debug mode and check the log file.
August 15, 2012 at 3:10 pm #139530In reply to: How to Hook into the Primary Profile Field [Closed]
9087877
Inactive@frank13 That is correct. I have 2 installs of BP 1.6.1 on my localhost and I have not had any issues but these are also clean installs.
August 15, 2012 at 3:04 pm #139529In reply to: How to Hook into the Primary Profile Field [Closed]
frank tredici
MemberSo @shawn38 if I understand your comment back to me correctly — 1.5.6 does not provide the Field Description text box, but 1.6.* does?
Side note: I read bad, bad things about 1.6 so I am avoiding upgrading at this time.
August 15, 2012 at 3:02 pm #139528In reply to: [Resolved] How to remove activity since 1 hour ago
frank tredici
MemberOk @mastermind12. Then the css I gave you should work.
Can you post back the exact file you added the code too including its path.
Can you also post back a copy of what you added please.
It will help me/us properly troubleshoot.
August 15, 2012 at 2:53 pm #139527In reply to: How to Hook into the Primary Profile Field [Closed]
9087877
InactiveActually that is standard for buddypress 1.5.6. It does have the field description box in the name field in the latest and greatest version though!
August 15, 2012 at 2:45 pm #139525In reply to: [Resolved] How to remove activity since 1 hour ago
frank tredici
MemberIf you are referring too the activity bubble on the Members Directory page, then do this:
add the following line of code to the `style.css` document in your themes directory:
`ul#members-list span.activity {
display:none !important;
}`if you are referring too a different activity bubble, then let us know which one exactly.
August 15, 2012 at 2:19 pm #139522In reply to: How to Optimize and Maximize BuddyPress Performance
frank tredici
Member18 Active Plugins Network Wide in WP 3.4.1
`Akismet
Better Delete Revision
BP Group Documents
BP Profile Search
BuddyPress
BuddyPress Docs
BuddyPress Global Unified search
Buddypress Sitewide activity widget
Email Users
[Homegrown] Authenticated Users
[Homegrown] New User Notification
[Homegrown] Remove Menu Items From Groups & Discussions Pages
[Homegrown] Remove Username Character Limit
Quick Page/Post Redirect DEV
Shortcode Exec PHP
TDLC Birthdays
WP DB Optimizer
WP Smush.it`
have 14 In-active Plugins in WordPress8 Active Plugins in BuddyPress 1.5.6
`All-in-One Event Calendar by Timely
bbPress
Breadcrumbs Everywhere
BuddyPress Group Email Subscription
BuddyPress Template Pack
Dynamic Widgets
Hyper Cache
NextGEN Gallery`
have 6 In-active Plugins in BuddyPressAugust 15, 2012 at 2:19 pm #139521In reply to: How to Optimize and Maximize BuddyPress Performance
frank tredici
MemberWe have slightly over 200 members.
August 15, 2012 at 2:19 pm #139520In reply to: How to Optimize and Maximize BuddyPress Performance
frank tredici
MemberWe have done the following to help our BuddyPress along:
(1) Added this code to wp-config.php
`/**
* source: http://wpdude.com/wordpress-performance-tuning-tips
*/define(‘ENABLE_CACHE’, true);`
(2) Followed Michael Eisenwasser’s suggestions located at http://www.buddyboss.com/buddypress-speed-and-performance/
(3) installed and run “Optimize Database” plugin
(4) installed and run “Hyper Cache” plugin
(5) installed and run “Better Delete Revision” plugin
August 15, 2012 at 2:18 pm #139519aces
ParticipantYou could create an empty text file called /wp-content/plugins/walled-garden.php, paste the following into it, then activate the plugin:
`
<?php
/*
Plugin Name: Buddypress Walled Garden
Plugin URI: http://www.example.com/
Description: A brief description of the Plugin.
Version: 0.1
Author: http://www.example.com/
Author URI: http://www.example.com/
License: A “Slug” license name e.g. GPL2
*/function sh_walled_garden()
{
global $bp;// if( bp_is_register_page() || bp_is_activation_page() || bp_is_page( BP_FORUMS_SLUG ) || bp_is_page( BP_GROUPS_SLUG ) )
if( bp_is_register_page() || bp_is_activation_page() || bp_is_page( BP_FORUMS_SLUG ) )
return;if( ! bp_is_blog_page() && ! is_user_logged_in() )
bp_core_redirect( bp_get_signup_page() );
}add_action( ‘bp_init’, ‘sh_walled_garden’ );
function bp_remove_feeds() {
remove_action( ‘bp_actions’, ‘bp_activity_action_sitewide_feed’, 3 );
remove_action( ‘bp_actions’, ‘bp_activity_action_personal_feed’, 3 );
remove_action( ‘bp_actions’, ‘bp_activity_action_friends_feed’, 3 );
remove_action( ‘bp_actions’, ‘bp_activity_action_my_groups_feed’, 3 );
remove_action( ‘bp_actions’, ‘bp_activity_action_mentions_feed’, 3 );
remove_action( ‘bp_actions’, ‘bp_activity_action_favorites_feed’, 3 );
remove_action( ‘groups_action_group_feed’, ‘groups_action_group_feed’, 3 );
}
add_action(‘init’, ‘bp_remove_feeds’);?>`
Tested in bp 1.6.1The plugin should not have spaces, blank lines, or anything else before “ and use a simple text editor ( like this ) rather than a wordprocessor….
– – –
To have a different menu for logged in users is slightly more complicated.
You need to find the template bit that shows the menu.
In the current bp-default theme header.php file is the following
`
false, ‘menu_id’ => ‘nav’, ‘theme_location’ => ‘primary’, ‘fallback_cb’ => ‘bp_dtheme_main_nav’ ) ); ?>
`
which can be replaced by
`
<?php
if ( is_user_logged_in() ) {
wp_nav_menu( array( ‘container’ => false, ‘menu_id’ => ‘nav’, ‘theme_location’ => ‘primary’, ‘fallback_cb’ => ” ) );
} else {
wp_nav_menu( array( ‘container’ => false, ‘menu_id’ => ‘nav’, ‘theme_location’ => ‘secondary-menu’, ‘fallback_cb’ => ” ) );
}
?>
`
Then create the secondary menu in the wordpress menu admin…..Please backup files and database before trying this out in case there are complications. It would be better to try out on a test/dev site first …..
August 15, 2012 at 1:49 pm #139518SeFi
Member@shawn38 Thanks but I’m already using a theme for my client and I can’t change it…
@BooneGorges As for shawn38 I’m already using a theme and I’m not a really good programmer so what you’re refering to is to difficult for me

Can’t I find a plugin to do that ? No one ever thought of doing it ?
Thanks a lot guys !
August 15, 2012 at 1:29 pm #139517In reply to: How to Hook into the Primary Profile Field [Closed]
frank tredici
MemberThanks @shawn38.
I am running WP 3.4.1 and BP 1.5.6
In my installation there is no `Profile Fields` in the Dashboard > Users navigation path.
The manner in which I get to `Profile Fields` is Dashboard > Buddy Press > Profile Fields
The page ends up being “Extended Profile Fields” and under the “Base (Primary)” tab and I click the Edit button for Name (Primary) (Required) there is no Field Description box like there is on all the other profile fields.
Do you think I have a faulty or incomplete install going on here?
Appreciate your help…
-
AuthorSearch Results