Search Results for 'buddypress'
-
AuthorSearch Results
-
October 5, 2012 at 5:24 pm #143039
SaintDanBert
ParticipantI’d like to make a local install of WP + BP so that I have a “sandbox.”
How would I clone or replicate my local install to my hosted server?
I know that I can SCP or FTP the files from the web site folders, but then how do I deal with the required database files and supporting parts?Learning,
~~~ 0;-DanOctober 5, 2012 at 5:21 pm #143038SaintDanBert
ParticipantOther than the issues described in the codex article, is BP v1.6.1 supposed to work with WP v3.4.1 or v3.4.2 without much grief?
I’ve contacted my hosting vendor to discover how to best proceed with the corrections you suggest that I need.
Thanks,
~~~ 0;-DanOctober 5, 2012 at 5:04 pm #143037@mercime
Participant@ssmltd more info required to troubleshoot. Windows or Linux server? WP/BP versions? Single/Multisite? Theme used? Plugins installed?
October 5, 2012 at 4:07 pm #143023limitx3m
ParticipantThis looks interesting.
Don’t suppose you have anything for multi site
Also how does one start a new topic here?
October 5, 2012 at 3:58 pm #143022In reply to: [Resolved] Installation help really needed!!!!!!
luccame
ParticipantI can see from the source of your site that you’re using WP 3.2.2
BuddyPress 1.6 requires at least WP version 3.4October 5, 2012 at 3:20 pm #143017In reply to: BuddyPress Notifications
bobemil
ParticipantI don’t find this line. It’s only 76 lines in that file now. I would like this feature too
I think others also needs it.October 5, 2012 at 2:48 pm #143016In reply to: Gravitars not showing.
@mercime
ParticipantThis has been reported in trac. Check out possible solution for your installation https://buddypress.trac.wordpress.org/ticket/4571
October 5, 2012 at 2:26 pm #143014In reply to: Widgets & sidebar not showing after upgrade
@mercime
Participant43 active tickets to go at this time https://buddypress.trac.wordpress.org/roadmap
October 5, 2012 at 10:35 am #143008In reply to: Iis my theme buddypress compatible?
@mercime
Participant@newmember01 you need to install/activate the BP Template Pack plugin to make your WP theme compatible with BuddyPress. Then you have to go through the BP Compatibility Process. A MusicLife theme that looks very much like your WordPress 40005 theme has been set up for Step 3 per https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/#template-packed-wordpress-themes
October 5, 2012 at 10:18 am #143007In reply to: User Blogs
my2hands
ParticipantThanks @mercime, however this would just change what is in the groups, would it not? not allow a user to have his or her own that can be edited, as i said i want them seperate from the already existing groups and group blogs.
October 5, 2012 at 9:10 am #143004toccia
ParticipantCiao @mercime thanks for your help… I have tried all your suggeston, but nothing changed.
Do you think is a matter of perission?
I really hope in another suggestion… many thanks…
FrancescoOctober 5, 2012 at 8:16 am #143002In reply to: Adpating theme with BP Template Pack
@mercime
Participant@sb0n Based on the HTML structure of your theme, you need to change 16 template files within the 6 BP folders transferred to your yoko theme folder in server during the compatibility process.
@mercime
Participant== but when someone goes to create site in their dashboard it says page not found. ==
@twc01 Please clarify, when you say “dashboard”, do you mean via wp-admin? The “Create a Blog” link in Blogs Directory page using bp-default theme should go to a form in the front end where users can enter required information to set up their new blogs/subsites. Only Super Admin can create a new blog/subsite via wp-admin network.
October 5, 2012 at 2:35 am #142997In reply to: Plugin Suggestions
@mercime
ParticipantOctober 4, 2012 at 11:21 pm #142995In reply to: how to hide admin activity on Buddypress activity?
staceym
ParticipantHere is a solution that works in BuddyPress 1.6. This will prevent new activities from being added and will also prevent the user from showing as recently active. The first option is for admins, the second is for a specific username.
`
// Don’t record activity by the site admins or show them as recently active
function my_admin_stealth_mode(){
if ( is_site_admin() ) {
global $bp;
remove_action(‘wp_head’,’bp_core_record_activity’);
delete_user_meta($bp->loggedin_user->id, ‘last_activity’);
}
}
add_action(‘init’,’my_admin_stealth_mode’);// Don’t record activity for a user or show them as recently active
function my_user_stealth_mode(){
$current_user = wp_get_current_user();
if(is_user_logged_in()) {
if(‘YourUsername’ == $current_user->user_login) {
remove_action(‘wp_head’,’bp_core_record_activity’);
delete_user_meta($current_user->ID, ‘last_activity’);
}
}
}
add_action(‘init’,’my_user_stealth_mode’);
`October 4, 2012 at 9:05 pm #142993In reply to: Forums Posting Problems: The definitive post
Joe
Participant@Virtuali — thanks your comment worked for me — I was having the same problem as @cmroybal. Reinstalling wordpress would have been awful. I did have to uncheck enable forums for that specific group though and then re-enable it after deleting the specific group forum file in the database. Thanks a bunch!
October 4, 2012 at 8:25 pm #142992stuffwelike
ParticipantI am not trying to search through the activity. I want the search field to search through the main site’s blog posts. However again the search simply refreshes the main page which I have set to the Site Wide Activity page. The search no longer displays results.
October 4, 2012 at 8:06 pm #142991In reply to: Undo BuddyPress – for now
9087877
InactiveGo to dashboard/plugins and deactivate the buddypress plugin. Just deactivating the bp-default theme is not going to do the trick.
October 4, 2012 at 7:35 pm #142986Ben Hansen
Participant@_dorsvenabili looks like they have incorporated this into the next version of buddypress so we either got to wait or make some modifications of our own.
@djpaul would the files from that track ticket work if they were dropped into a 1.6.x version of buddypress or are they dependent on being part of a 1.7.x branch of buddypress? does that question even make sense? thanks!
October 4, 2012 at 6:22 pm #142980mgkoller
ParticipantIf your trying to search activity, I use this (https://github.com/sbrajesh/bp-searchable-activity) which adds an “activity” option in the buddypress dropdown search.
October 4, 2012 at 5:48 pm #142978In reply to: More details when requesting group access?
9087877
Inactive@djpaul is right, there is nothing out there yet so I will also say his advice on hiring a developer is probably your best option.
October 4, 2012 at 4:18 pm #142973In reply to: user activity share plugin for wordpress buddypress?
October 4, 2012 at 2:45 pm #142972Stephanie Leary
ParticipantI added it in a comment on https://buddypress.trac.wordpress.org/ticket/4469, but I can do a separate one for the activity button if you like.
October 4, 2012 at 2:34 pm #142971In reply to: user activity share plugin for wordpress buddypress?
Kiran@Caret
ParticipantHi @ashokgolusu, please let me if got any plugin for sharing posts inside buddypress.
October 4, 2012 at 1:47 pm #142968In reply to: Adpating theme with BP Template Pack
sb0n
Participant@mercime, there it is : http://pastebin.com/b3FgXGu8 : )
-
AuthorSearch Results