Search Results for 'buddypress'
-
AuthorSearch Results
-
August 14, 2012 at 10:28 pm #139470
modemlooper
ModeratorI cant replicate the BP mobile issue. I upgraded a 1.5 site just know to 1.6.1 and did not got any errors. I suggest in the future you deactivate all plugins before upgrading BuddyPress.
August 14, 2012 at 10:06 pm #139469In reply to: Strange field in the registration form?!
bg
MemberHi again @djpaul, thank you for your help last time. Now I run into the same problem again because I decided to reactivate the Wangguard plugin again to see about the strange fields & text would show up again, which it did. So, I decided to delete the plugin completely, but the funny thing is the strange fields with the text, “Write down whats your favorite hobby is (required)” are still showing up on the registration page?! So, I don’t understand….Do you know some solutions to this? I thank you in advance!
My website is, http://buddygalaxy.com/.
August 14, 2012 at 9:42 pm #139467In reply to: remove “activity” tab from user profile
modemlooper
ModeratorYou can add my plugin which allows you to remove, rearrange and rename tabs.
https://wordpress.org/extend/plugins/buddypress-extended-settings/August 14, 2012 at 9:02 pm #139464In reply to: Can’t Access the Settings
Tammie Lister
ModeratorHi Justinfh, as already mentioned in another of your posts I do think this is to do with your settings not being saved correctly for BuddyPress. If you can follow my advice in that post it may solve both.
August 14, 2012 at 8:50 pm #1394629087877
Inactive@naijaping I checked out your site and it works great. I would like to implement this as well. Would you please elaborate how this is done, and specifically which files need to be edited. Thanks!
August 14, 2012 at 8:47 pm #139461In reply to: Registration Page Not Found
Tammie Lister
ModeratorHi Justinfh, have you gone under the BuddyPress settings and made sure things are saved for pages and the same for your permlinks?
August 14, 2012 at 8:27 pm #139458frank tredici
MemberThis plugin works perfectly –> https://wordpress.org/extend/plugins/email-users/
I tested it and it does email everyone user @joelshakespear
August 14, 2012 at 8:21 pm #139457frank tredici
MemberHas anyone had any success substituting the `Mystery Man` graphic by placing it in non-core or non-plugin directory without actually replacing the actual out-of-the box graphic?
I am trying to avoid having my custom Mystery Man graphic get overwritten if/when I do an upgrade to BuddyPress.
Thanks.
August 14, 2012 at 7:46 pm #139455In reply to: Buddypres Security from fake users
katengh
MemberI have the same issue, @hkcharlie and am looking for suggestions on solutions or preventatives, as well. We find that even after we delete a spammy user or block them, it doesn’t deter them from creating a new profile the next day. Once every few months, a bot of some sort will even send spam mail to all of our users, even though we don’t have a “send to all” function in our Buddypress messages.
August 14, 2012 at 6:49 pm #139453Ben
ParticipantThanks for the reply Boone.
That is a possibility. Originally, what I did was install the BP Template Pack plugin to get the files and html structure worked out. Then I copied `bp.css` from the plugin, placed it at the end of my `style.css`, and checked “Disable Template CSS” in the plugin settings (this is so that my custom styles did not disappear upon plugin update, etc.).
I will copy the “BuddyPress” section of the `default.css` and replace mine and re-customize it to see if that solves my problem.
…Good thing I kept a separate log of all my custom changes…
Thanks,
BenAugust 14, 2012 at 6:34 pm #139452Boone Gorges
KeymasterIt looks like some styles are missing. How are you styling the BP content? Are you pulling in bp-default’s stylesheet? Check to make sure that your version isn’t somehow mangled; it should be 2423 lines long https://buddypress.trac.wordpress.org/browser/tags/1.6.1/bp-themes/bp-default/_inc/css/default.css
August 14, 2012 at 6:31 pm #139451Crew Pass
ParticipantThanks for the reply
I am not sure what Buddypress version I upgraded from. I have always keep buddypress updated so I am gussing it would have been the old version 1.5.7
I am using Custom Community Version 0.7.1 from what I can tell on there site it is the latest version.August 14, 2012 at 6:09 pm #139444Paul Wong-Gibbs
KeymasterWhat version of BuddyPress did you upgrade from?
Are you using the latest available version of the Custom Community theme?August 14, 2012 at 5:31 pm #139438In reply to: [Resolved] Wrapping Secondary avatar with link
Boone Gorges
KeymasterI’m looking over the code, and there’s not a very easy way to make it happen. We have hooks in bp_get_activity_secondary_avatar(), but we’re not passing along enough information to make it possible for filters to make the avatars linkable.
Could I ask you to open an enhancement ticket at https://buddypress.trac.wordpress.org/ explaining what you’re trying to do? I can make sure that the filters are improved to make what you’re trying to do possible.
In the meantime, it’s possible to do what you want, though not elegant. Here’s a hint:
`
function bbg_turn_secondary_avatars_to_links( $avatar ) {
global $activities_template;// Here you’ll copy the logic in bp_get_activity_secondary_avatar() to switch between types
switch ( $activities_template->activity->item_id ) {
// Here’s an example of what to do with groups
case ‘groups’ :
$group_id = $activities_template->activity->item_id;
$group = groups_get_group( $group_id );
$url = bp_get_group_permalink( $group );
break;// You’ll have to do similar sorts of tricks for different content types
}// Then, wrap the avatar in a URL
if ( !empty( $url ) ) {
$avatar = ‘‘ . $avatar . ‘‘;
}return $avatar;
}
add_filter( ‘bp_get_activity_secondary_avatar’, ‘bbg_turn_secondary_avatars_to_links’ );
`This may not work as is (it’s off the top of my head) but it should give you a push in the right direction. Good luck!
August 14, 2012 at 5:23 pm #139436thanoulai
ParticipantWho can tell me how to troubleshoot where and how to hook the email checker to see on bp register page because I test the invalid email on buddypress register page it goes through the the step even though I have the si captcha recabtcha and wangguad on that page. any body can help or idea suggestion. Another problem is the bp register page title, description, and key word belong to the post title description and keyword. another problem is i cant post the new topic on my wpmu and bp site any idea here.
I look forward to hearing from you.
LevataAugust 14, 2012 at 4:48 pm #139432In reply to: Hiding header search box other than specific page
@mercime
Participant@mairaj know that if user disables styles in browser, they will see the search form. But should you still want to proceed with your method, these two lines should do it via CSS
`/* Hide search form in ALL pages */
#search-form { display: none; }/* Then show search form on this page only (change page ID to your installation’s page ID) */
body.page-id-25 #search-form { display: block; }`
You might have to add some width or float after display block depending on how you’ve styled the child theme.August 14, 2012 at 4:44 pm #139431In reply to: Remove a page from header navigation
Prince Abiola Ogundipe
Participant@formbi, it worked for me like a charm, which theme are you using? you need to write it at the bottom of your style.css . please make sure the page ID is right and dont forget to clear cache after the code.
the code is like ds .page-item-78{ display: none ! important;}
August 14, 2012 at 4:44 pm #139430kooba
Participanthere it is
header.php http://pastebin.com/rPQ7eMyN
page.php http://pastebin.com/N5tiCxJi
index.php http://pastebin.com/0YYPb5UJ
sidebar.php http://pastebin.com/eJekchLd
footer.php http://pastebin.com/zgHRrrbJAugust 14, 2012 at 4:43 pm #139429Boone Gorges
KeymasterWPMU.org recently had a nice writeup on something similar: http://wpmu.org/how-to-build-a-facebook-style-members-only-wordpress-buddypress-site/
August 14, 2012 at 4:38 pm #139427rossagrant
ParticipantHey Paul, I don’t think it’s being caused by CSS as the images that display correctly (the ones that HAVE captions) have the exact same classes assigned to them:
activity-list .activity-content img.thumbnail {
border: 2px solid #EEEEEE;
float: left;
margin: 0 10px 5px 0;
}
.activity-inner img {
max-width: 100% !important;
}
img {
opacity: 1 !important;
}
img {
border: 0 none;
vertical-align: middle;
}Something is causing captions to misbehave somehow, and when a caption isn’t present we get just this bog standard 100x100px image, regardless of the original dimensions of the post image.
Very bizarre.
Got @hnla looking at it, but the poor guy has been working like mad for me lately, so just wanted to put this out there incase anyone had seen this before and could cut down some time on us searching for the issue.
Cheers everyone.
August 14, 2012 at 4:36 pm #139426In reply to: BP 1.6 upgrade and avatar functions
Boone Gorges
Keymaster@sarah_lena I don’t recognize the filename pattern …full-16×16… BuddyPress creates two different avatar files: bpfull and bpthumb, and does not create dimension-specific versions.
It’s possible that the Salutation theme is doing some of this on your behalf. Try switching to bp-default, then *uploading a new avatar* for your test user, and see if the same thing happens. If not, then it’s Salutation doing its own magic.
You may also have a plugin that is doing some avatar voodoo, though I’m not aware of a plugin that does this.
August 14, 2012 at 4:34 pm #139425August 14, 2012 at 4:13 pm #139421Crew Pass
ParticipantHi @all,
I have been testing my plugin’s one at a time to see if one of them is the problem and I have found that WordPress HTTPS http://mvied.com/projects/wordpress-https/ is the problem. If I Deactivate it from my wordpress multi site install everything works fine.
I am going to contact the designer of the plugin and see what they can do.
Hope this helps so of you.
Thanks
ChrisAugust 14, 2012 at 4:10 pm #139419In reply to: unable to change text on registration page
Boone Gorges
KeymasterHere’s some more information on how to create child themes for BuddyPress, as @mercime suggests: https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/
August 14, 2012 at 4:08 pm #139418In reply to: [resolved] Mobile Phone Opt Out? Button somewhere?
SolarPrestige
Member@mercime Many thanks for your swift response. I’ll give that a go.
-
AuthorSearch Results