Search Results for 'buddypress'
-
AuthorSearch Results
-
April 30, 2013 at 8:47 am #163069
In reply to: Video: BuddyPress 1.7 Overview
dainismichel
Participantthnx for the vid, Boone rocks!
April 30, 2013 at 8:31 am #163067In reply to: Groups slugs problem because of my language
danbpfr
Participantit seem that you’re working on a local install.
Maybe your local settings for php are not correct. First of all, check MAMP or WAMP or what else, if php gettext module is loaded.
Check also that your wp-config file contains your language definition (wp_lang bg_BG)
You may also read here, if previous things are OK
https://codex.buddypress.org/developer/customizing/customizing-labels-messages-and-urls/April 30, 2013 at 8:24 am #163066In reply to: Issues getting Buddypress working,
feeldesign
ParticipantHi
Thanks
I’d already tried that and nothing
Did it again so yo ucan see. The register page link form “create an account” is wrong, the page is http://retiredandkicking.com/index.php/register/ but it’s looking for http://retiredandkicking.com/register/
How do I correct this? Is the register page supposed to have content, as it seems to have none at all
Can I pass login details privately?
JamesApril 30, 2013 at 8:15 am #163063In reply to: Issues getting Buddypress working,
bp-help
Participant@feeldesign @akukskuks
Deactivate all plugins other than BuddyPress and revert to either bp-default theme or Twenty Twelve and see if the problem persists then report back here. I suspect it is either a plugin, or theme but I won’t speculate. I just know I have not encountered this and I have about 30 installs on my test server, I do not however have that buddyboss theme so I have no way of testing it so its up to you to see if that theme is the issue.April 30, 2013 at 7:30 am #163062In reply to: Issues getting Buddypress working,
feeldesign
ParticipantThanks
Very odd. I’m not sure what to expect on an install, a lot of the documentation I’ve found seems to relate to older versions, which work differently? However the pages that wwre created automatically seem blank with no content at all.
Really hoping to get this sorted!April 30, 2013 at 4:01 am #163054In reply to: BuddyPress 1.7.1
bp-help
Participant@boonebgorges @djpaul @johnjamesjacoby @r-a-y
Thanks for the update guys. 🙂April 30, 2013 at 3:59 am #163053In reply to: BuddyPress 1.7.1
Asynaptic
ParticipantW00t! Thanks so much to the BP team! 🙂
April 30, 2013 at 3:57 am #163052bp-help
Participant@jhulianni
Please provide more info when requesting support. See this sticky topic:
https://buddypress.org/support/topic/when-asking-for-support-2/
Looks more like an issue in your theme from the error you posted.April 30, 2013 at 12:01 am #163038In reply to: [Resolved] Child theme won't work
mareksgregs
ParticipantAll right so,
1. I created a new theme folder in wp-content/themes
2. Then I created style.css with the following in it,/* Theme Name: The Buzz Theme URI: http://site.com Description: Child theme for Buddypress Default Author: Name here Author URI: http://site.com Template: bp-default Version: 0.1.0 */ @import url("../bp-default/style.css"); #contentwide { margin: 5px 35px 0; font-size: 1.2em; width: 880px; float: left; display: inline; height: 400px; } body { background-color: #eaeaea; background-image: url(../images/background.gif ); background-repeat: repeat-x; background-position: top left; color: #555; font-size: 12px; font-family: Arial, Tahoma, Verdana, sans-serif; line-height: 170%; max-width: 1250px; margin: 0 auto; width: 95%; } #site-generator { font-weight: bold; color: rgb(54, 54, 54); margin: 20px 20px; text-align: right; text-shadow: #fafafa 1px 1px 0; } #footer-widget-area div.widget-area > ul { height: 110px; float: left; margin-right: 2.5%; width: 23%; }3. Added that file to the folder I just made.
4. Activated the Child theme in Dashboard -> Appearance -> ThemesAnd that’s about it. Nothing happened.
April 29, 2013 at 11:26 pm #163037danbpfr
ParticipantApril 29, 2013 at 10:36 pm #163033In reply to: Remove profile links
bp-help
Participant@praisehim
The answer is in my previous response. Most likely its a theme, plugin, or custom code you may have introduced. You may need to revert back to a twenty twelve theme or bp-default theme, and deactivate all plugins other than buddypress. If you created a file in wp-content/plugins named bp-custom.php you also need to make sure the code is between opening and closing php tags like so:<?php function remove_xprofile_links() { remove_filter( 'bp_get_the_profile_field_value', 'xprofile_filter_link_profile_data', 9, 2 ); } add_action( 'bp_init', 'remove_xprofile_links' ); ?>April 29, 2013 at 9:39 pm #163028In reply to: Remove profile links
praisehim
ParticipantTrue. I am having the same problem with BuddyPress 1.7 and WordPress 3.5.1. This is definately a bug.
April 29, 2013 at 9:30 pm #163026In reply to: BuddyPress Pages Not Working
bp-help
Participant@jamesonblake
See this sticky topic before asking for support:
https://buddypress.org/support/topic/when-asking-for-support-2/
You need provide us with more info before we can aid you!April 29, 2013 at 5:59 pm #163018In reply to: BuddyPress Group Blogs breaks avatar uploads
Scott
ParticipantFinally found the fix for this so in case anyone else needs it. Add the below to bp-custom.php
/* This fixes the Multisite avatar problem */ function nfm_bp_avtar_upload_path_correct($path){ if ( bp_core_is_multisite() ){ // $path = ABSPATH . get_blog_option( BP_ROOT_BLOG, 'upload_path' ); $path = ABSPATH . 'wp-content/uploads/'; } return $path; } add_filter('bp_core_avatar_upload_path', 'nfm_bp_avtar_upload_path_correct', 1); function nfm_bp_avatar_upload_url_correct($url){ if ( bp_core_is_multisite() ){ $url = get_blog_option( BP_ROOT_BLOG, 'siteurl' ) . "/wp-content/uploads"; } return $url; } add_filter('bp_core_avatar_url', 'nfm_bp_avatar_upload_url_correct', 1);April 29, 2013 at 5:59 pm #163019In reply to: User profiles – how does a user update/modify
careythegreen
ParticipantOK @bphelp – I’ve discovered some of my own answers. I see that the @name is the user name they chose and cannot be changed. And… I just noticed the grey area of options below the standard WP options, which of course are the options for buddypress. So… poking around long enough I’ve answered my own questions.
April 29, 2013 at 5:53 pm #163016In reply to: [resolved] Avatars missing after database transfer
ProfC
ParticipantHi, I have the same problem, even if I didn’t move the site. Many users of my social network have lost their Avatar and Gravatar. Instead of the original image I can see a broken link icon. If I try to upload a new image I cannot do it, It gives me back a black frame. The Avatar directory is the default one, wp-content/uploads/avatars. Should I change this directory and where?
Buddypress 1.7
WP 3.5.1April 29, 2013 at 5:39 pm #163014In reply to: [Resolved] White line under head menu
aces
Participant@fagiano1973
What did you try exactly?There is a problem with buddypress.org and older ‘code’ settings in posts. The ` at the begginning and end should not have been included – so there should not be a character on the same line before add_action or after the final }
( I would repeat the function here but the last time I did that buddypress.org changed again and the original looked better – EDIT: see http://pastebin.com/sSBGjPNi )
It is difficult to diagnose what is probably a css problem with the information you’ve given. To help find or define the problem more precisely try using the developer tools in Chrome, Safari or Internet Explorer, or use Firebug with Firefox, or Opera’s Dragonfly …
April 29, 2013 at 5:26 pm #163011In reply to: User profiles – how does a user update/modify
bp-help
Participant@careythegreen
Unless you have introduced some custom code then there is a link in the toolbar just like the one that appears on buddypress.org. Hover over howdy USERNAME, profile/edit. This is pretty standard so it should be there. If you want to add a a direct link to save confusion then use this code in your header.php:
http://pastebin.com/Eg2HCKrM
wrap it in a div and style as you wish!April 29, 2013 at 5:08 pm #163008In reply to: Can't create a group
luccame
ParticipantApril 29, 2013 at 4:33 pm #163004In reply to: Issues getting Buddypress working,
akukskuks
ParticipantHaving the same problem here, James. Can’t create any groups! Does anyone have some advice for us??
April 29, 2013 at 4:04 pm #163003partytrotter
Participant@bphelp, thanks a lot for the help, but I tried adding that line and it didn’t do much :S Here is what my code looks like without the line, where should I add it? Also, just to be sure I am modifying the right file, i took the members-loop.php in the folder of the current theme I am using, is that correct?
<?php
/**
* BuddyPress – Members Loop
*
* Querystring is set via AJAX in _inc/ajax.php – bp_dtheme_object_filter()
*
* @package BuddyPress
* @subpackage bp-default
*/?>
<?php do_action( ‘bp_before_members_loop’ ); ?>
<?php if ( bp_has_members( bp_ajax_querystring( ‘members’ ) ) ) : ?>
<div id=”pag-top” class=”pagination”>
<div class=”pag-count” id=”member-dir-count-top”>
<?php bp_members_pagination_count(); ?>
</div>
<div class=”pagination-links” id=”member-dir-pag-top”>
<?php bp_members_pagination_links(); ?>
</div>
</div>
<?php do_action( ‘bp_before_directory_members_list’ ); ?>
<?php cc_get_displaymode(‘members’)?>
<?php do_action( ‘bp_after_directory_members_list’ ); ?>
<?php bp_member_hidden_fields(); ?>
<div id=”pag-bottom” class=”pagination”>
<div class=”pag-count” id=”member-dir-count-bottom”>
<?php bp_members_pagination_count(); ?>
</div>
<div class=”pagination-links” id=”member-dir-pag-bottom”>
<?php bp_members_pagination_links(); ?>
</div>
</div>
<?php else: ?>
<div id=”message” class=”info”>
<p><?php _e( “Sorry, no members were found.”, ‘cc’ ); ?></p>
</div><?php endif; ?>
<?php do_action( ‘bp_after_members_loop’ ); ?>
April 29, 2013 at 2:13 pm #162997In reply to: [Resolved] White line under head menu
fagiano1973
ParticipantApril 29, 2013 at 1:48 pm #162994In reply to: [Resolved] White line under head menu
aces
ParticipantIt’s not clear what your problem is, so if the following isn’t any help then can you state what theme you are using and a URL where the problem can be seen?
https://buddypress.org/support/topic/buddybar-background-color-overlap/#post-161001 ?
April 29, 2013 at 8:40 am #162984In reply to: BuddyPress double posts
briffel
ParticipantHi @mercime, the groups are currently hidden, but the problem is that everything appears twice.
So it says All groups twice etc. and it’s like this one every page.
Is there a way to stop this happening?
April 29, 2013 at 7:59 am #162983In reply to: Fatal Error create Group Forum
kukac7
ParticipantI have a similar problem.
Last vanilla WP / BuddyPress / bbPress.
Hostgator is a repository of the problem.
Specifically it:
http://cyberdurer.com/sotephd/groups/csoport/forum/topic/teszt/Thanks for your help.
-
AuthorSearch Results