Search Results for 'buddypress'
-
AuthorSearch Results
-
August 14, 2012 at 7:46 pm #139455
In 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.
August 14, 2012 at 4:05 pm #139417In reply to: [Resolved] Buddypress activity never loads
@mercime
Participant@hkcharlie Sometimes it only takes posting in the forums to find the answer on your own
Thanks for posting your solution. Marking this as resolved.August 14, 2012 at 4:01 pm #139415In reply to: unable to change text on registration page
@mercime
Participant@sudhirsinghinfo if you’re using a child theme of bp-default, then copy over https://buddypress.trac.wordpress.org/browser/tags/1.6.1/bp-themes/bp-default/registration/register.php in your child theme’s folder e.g. yoursite.com/wp-content/themes/YOURTHEME/registration/register.php Open up the file you copied over and make the necessary changes and save file.
August 14, 2012 at 3:56 pm #139413In reply to: [resolved] Mobile Phone Opt Out? Button somewhere?
@mercime
Participant@zkwc @solarprestige add this to your bp-default child theme’s functions.php file
`remove_theme_support( ‘bp-default-responsive’ );`
August 14, 2012 at 3:49 pm #139411In reply to: There were no groups found.
@mercime
Participant@mystica do provide more information – WP/BP versions? Single or Multisite? Have you tried changing to BP-default theme and deactivating all plugins except BuddyPress? If this is a new installation, did you go through the Installation Wizard? If this is an installation being updated to BP 1.6, did you go through the Update Wizard?
August 14, 2012 at 3:46 pm #139410In reply to: Looking for a good login widget
@mercime
Participant@rhek premium plugin ->http://buddydev.com/plugins/buddypress-facebook-connect-plus/
August 14, 2012 at 3:42 pm #139409In reply to: Video & Image plugin for user profiles
@mercime
ParticipantImages only
Free – BP Album – https://wordpress.org/extend/plugins/bp-album/Images/Video/Audio, etc.
Free – BP Media (in beta) – http://code.google.com/p/buddypress-media/ – same plugin developer as BP Album
Premium – BP Gallery – http://buddydev.com/plugins/bp-gallery/August 14, 2012 at 3:35 pm #139408In reply to: Displaying Avatars as featured Image on blog post
@mercime
Participant@luisrosario as implemented in bp-default theme https://buddypress.trac.wordpress.org/browser/tags/1.6.1/bp-themes/bp-default/index.php#L22
August 14, 2012 at 3:32 pm #139407In reply to: Adding Dynamic Profile Link to Main Menu Item
-
AuthorSearch Results