Search Results for 'buddypress'
-
AuthorSearch Results
-
June 18, 2011 at 12:53 pm #114762
sidjags
Member@nicholmikey… thanks for the help on cubepoints implementation…
June 18, 2011 at 2:47 am #114752ramprakav
Memberthere is a problem in that avatar so i cant upload my avatar
June 18, 2011 at 1:52 am #114748In reply to: [Resolved] Content won’t line up properly?
aces
ParticipantJune 18, 2011 at 1:07 am #114747In reply to: Where/how to download the latest bleeding edge beta?
Donald McIntyre
ParticipantI am not developer and I am sufficiently silly to touch code, files, and similar. I have burnt myself several times, but a few times I have resolved things! But I can´t change so my question is: shall I copy the files of the last trunk to the buddypress 1.2.8 folder replacing the old ones and put it live?
June 17, 2011 at 11:48 pm #114744In reply to: BBpress Forums Installation
sidjags
Member@LPH2005 in a post of yours, you seemed to suggest that it is possible to create a universal forum by making changes to a couple of files: loop and forums/index… could you please put out the code once again what needs to be done… would be very very much appreicated.
June 17, 2011 at 11:41 pm #114742@mercime
ParticipantOk, correcting my previous assumption – it’s been a long day sorry. So you have a single WP installation with BP activated. Prior to installing BP, you had this PHP signup form which worked in your WP installation. You’ve deleted the PHP signup form and the BP registration form does not show up when you go to http://yoursite.com/register
To troubleshoot whether it’s a BP issue, given above conditions, deactivate all plugins except BuddyPress and change to bp-default theme. I assume that you haven’t changed any internal BP configuration like renaming register to something else, go to http://yoursite.com/register. If that works, then ..
Are you using a WP theme with BP Template Pack plugin for compatibility? Activate both and check registration. If that works, then ..
Activate other plugins one by one to identify which one is messing up with registration page.
June 17, 2011 at 11:26 pm #114741In reply to: Sub-groups under the main group
sidjags
Memberbeen there since some time: https://buddypress.org/community/groups/bp-group-hierarchy/
June 17, 2011 at 11:10 pm #114739In reply to: Removing BP and installing bbpress
sidjags
Member@DJPAUL you said in a post “I suggest you disable group forums until the bridge has been built”… could u please let us know how to disable group forums… cause i cant seem to find it?
sidjags
June 17, 2011 at 11:07 pm #114737@mercime
ParticipantAll this should be posted over at plugin’s forums which devs check out regularly
https://buddypress.org/community/groups/bp-album/forum/June 17, 2011 at 11:00 pm #114736In reply to: Buddypress and WordPress??
@mercime
ParticipantIf you want it totally separate, then install first WP at domain root – http://yoursite.com. Create a second WP install at say, a physical subdomain – http://community.yoursite.com/ – using same database but different prefix for tables and install BuddyPress there.
June 17, 2011 at 10:54 pm #114735In reply to: Blog option in component setup
@mercime
Participant== why I do not have the option of Blogs in my component setup ==
Because you need to make it multisite first i.e. create a network https://codex.wordpress.org/Create_A_Network
1. Deactivate all plugins including BuddyPress
2. Create the network – if you hit some snags, support forum is at https://wordpress.org/support/forum/multisite
3. Before installing BP – https://codex.buddypress.org/getting-started/before-installing/
June 17, 2011 at 9:46 pm #114732sidjags
Memberhello everyone.. found a solution to this.. so thought i’d share it here too.. (i’m posting this in all the different threads out there about the same topic)
If you want a custom set of pics to replace the default buddypress avatars and be assigned by random to members… here goes:
sid
June 17, 2011 at 9:42 pm #114731In reply to: How to Override the BuddyPress Avatar Override
sidjags
Member@enderandrew…. hey guys.. i think i found something that should work. If you want a custom set of pics to replace the default buddypress avatars and be assigned by random to members… here goes:
June 17, 2011 at 9:40 pm #114730In reply to: custom set of avatar pics
sidjags
Member@DoctorDR looks like i’ve found the solution… and i hope everyone out there will find this helpful too.
Problem Statement: I wanted to have a custom set of 10-15 avatars uploaded into a folder, and buddypress would have to pick from any one of these to assign to members(on random) everytime then login if they havent uploaded their pwn profile pic.
Why: Lets say am on the members page, and everyone is displayed over there.. we can get different custom pics rather than just one custom pic.
Solution:
Step#1: Change the settings to “mystery man” in your buddypress backend.
Step#2: Upload pics into a folder in your child theme (i uploaded them into wp-content/themes/default/images/avatars/ ).. my theme name is : default, and in it i made a folder for images, and once again another folder called avatars. now… within avatars i put in 10 pics named the following “1avatar.png”, “2avatar.png”, “3avatar.png”… and so on… till “9avatar.png”
and lastly…
Step #3: Paste the following code in your functions.php child theme (taken from a combination of other sources)`function myavatar_add_default_avatar( $url )
{
$length=1;
$characters=’123456789′;
$string=”;
for ($p = 0; $p < $length; $p++) {
$string .= $characters[mt_rand(0, strlen($characters))];
}return get_stylesheet_directory_uri() .’/images/avatars/’.$string.’avatar.png’;
}
add_filter( ‘bp_core_mysteryman_src’, ‘myavatar_add_default_avatar’ );`and thats it… give it a shot… worked great for me! i hope this helps others too cause i saw a lot of people asking for this to no avail…
June 17, 2011 at 8:45 pm #114728In reply to: forum setup
Clare Parkinson
MemberHi Joanquingrech.
You can change any of the labels and messages in BuddyPress to whatever you want by making a customized language file. This article explains what to do: http://wpmu.org/basic-guide-to-creating-a-buddypress-language-file-for-sitewide-label-and-message-editing/
I like thinking of groups as “categories” myself. If you change them to “categories” or “topics” in the language file, then they can be geographical areas, or guilds, or whatever you want.
You can remove “groups” from the menu by creating a custom menu in WordPress that doesn’t have a ‘Groups’ tab.
Normally, users would join the groups themselves by clicking on the “join group” button, but as an admin you can move users around as you want between groups.
I can’t advise you on the theme for the forum appearance. I’m just going to edit the stylesheet myself to set mine up how I want.
cheers,
Clare
June 17, 2011 at 7:47 pm #114725In reply to: How to Override the BuddyPress Avatar Override
sidjags
Memberi too have been searchin for this since some time now… why is this so hard… cannot believe this has not been addressed by anyone thus far.
June 17, 2011 at 6:14 pm #114717Hugo Ashmore
ParticipantHow? please always share how you solved a problem on a open forum as it may help others who come across the thread.
June 17, 2011 at 2:53 pm #114704Prince Abiola Ogundipe
Participant@dubsel, which plugin are you using for your sitewide activities which shows at your sidebar widget? i mean The Wet Activities. it look so cool
June 17, 2011 at 2:16 pm #114701In reply to: buddypress backup in localhost
aces
ParticipantYou need to set up apache webserver, php programming language and mysql database.
Some people use prepackaged setups such as xampp which include all three of the above.
Personally I prefer to install everything separately.
Either way it is all free.
Afterwards you will probably need to setup email for the above.
June 17, 2011 at 2:00 pm #114700naved
Membersolved
June 17, 2011 at 1:41 pm #114699In reply to: Error trying to add new user to a private message
carstiee09
ParticipantHello iwazaru,
you have to past the code in the: bp-messages-cssjs.php
try this code:
<?php
function messages_add_autocomplete_js() {
global $bp;// Include the autocomplete JS for composing a message.
if ( $bp->current_component == $bp->messages->slug && ‘compose’ == $bp->current_action ) {
add_action( ‘wp_head’, ‘messages_autocomplete_init_jsblock’ );wp_enqueue_script( ‘bp-jquery-autocomplete’, BP_PLUGIN_URL . ‘/bp-messages/js/autocomplete/jquery.autocomplete.js’, array( ‘jquery’ ) );
wp_enqueue_script( ‘bp-jquery-autocomplete-fb’, BP_PLUGIN_URL . ‘/bp-messages/js/autocomplete/jquery.autocompletefb.js’ );
wp_enqueue_script( ‘bp-jquery-bgiframe’, BP_PLUGIN_URL . ‘/bp-messages/js/autocomplete/jquery.bgiframe.min.js’ );
wp_enqueue_script( ‘bp-jquery-dimensions’, BP_PLUGIN_URL . ‘/bp-messages/js/autocomplete/jquery.dimensions.js’ );
}}
add_action( ‘wp’, ‘messages_add_autocomplete_js’, 2 );function messages_add_autocomplete_css() {
global $bp;if ( $bp->current_component == $bp->messages->slug && ‘compose’ == $bp->current_action ) {
wp_enqueue_style( ‘bp-messages-autocomplete’, BP_PLUGIN_URL . ‘/bp-messages/css/autocomplete/jquery.autocompletefb.css’ );
wp_print_styles();
}
}
add_action( ‘wp_head’, ‘messages_add_autocomplete_css’ );function messages_autocomplete_init_jsblock() {
global $bp;
?>jQuery(document).ready(function() {
var acfb =
jQuery(“ul.first”).autoCompletefb({urlLookup:’root_domain . ‘/wp-load.php’ ?>’});jQuery(‘#send_message_form’).submit( function() {
var users = document.getElementById(‘send-to-usernames’).className;
document.getElementById(‘send-to-usernames’).value = String(users);
});
});<?php
}i you have installed buddypress via a subdomain.
Carsten
June 17, 2011 at 1:22 pm #114698Hugo Ashmore
Participant`define (‘WP_MEMORY_LIMIT’, ’64M’); adding this to wp-config can solve my problem ?`
This is a non question the response to which always has to be ‘You tell us’! try it does it fix the issue? it’s a simple test.
if it doesn’t then your host may not permit individual sites to alter PHP at site level ( very sensible on shared hosting) in which case you may need to speak to tech support and ask that the memory limit is increased or whether it can be.
June 17, 2011 at 1:15 pm #114696naved
Memberdefine (‘WP_MEMORY_LIMIT’, ’64M’); adding this to wp-config can solve my problem ?
my account info isDisk Space Usage 10.3 / 500 MB
Monthly Bandwidth Transfer 0.54 / 5000 MB…..so do i need to increase the db space and bandwidth or what should the above code can fix it plz help me in detail explanation plz …June 17, 2011 at 12:55 pm #114688aces
ParticipantYou probably need more memory…..
June 17, 2011 at 12:47 pm #114687In reply to: Fatal Error on activating BuddyPress Plugin
-
AuthorSearch Results