Save file.
Search Results for 'buddypress'
-
AuthorSearch Results
-
April 30, 2012 at 11:47 am #133742
In reply to: Using BuddyPress Avatars with wp_list_comments()
Paul Wong-Gibbs
KeymasterYour wp_list_comments() call specifies the callback as a function called “mytheme_comment”, which is probably in your theme’s functions.php file. You’ll need to use these functions in there, or modify what you have already.
For an example, look at the code block just below the phrase “You will need to define your custom callback function in your theme’s” on https://codex.wordpress.org/Function_Reference/wp_list_comments (get_avatar is used six lines from the top)
April 30, 2012 at 11:41 am #133741In reply to: What about I got 10 million users or more?…
Paul Wong-Gibbs
KeymasterWell enough?
Improving performance at the very-high (millions of users, groups, activity, and so on) is something we’ll be working on in BP 1.7, but I wouldn’t worry about *if* it can scale up to 10 million users unless you actually have 10 million users on your site right now.
If you do, great; set up a test installation of BuddyPress, find a way to migrate some of your content in, and see how it goes.
April 30, 2012 at 11:39 am #133740In reply to: Multisite Installation: Activity Stream
Paul Wong-Gibbs
KeymasterIt should happen if the member’s site privacy is set to public, and if the BuddyPress ‘site tracking’ component is enabled.
April 30, 2012 at 10:59 am #133737In reply to: Using BuddyPress Avatars with wp_list_comments()
craftcore
ParticipantThank you for the replies!
I’m not sure where to put the get_avatar() or the bPress avatar function though, because there’s no foreach statement on my theme to put it into. My comments.php just lists “ to output the code…
I tried to download a buddypress theme that already had the avatars working properly using a foreach, but I can’t find one with nested comments working by default.
April 30, 2012 at 9:16 am #133736In reply to: Google not indexing BuddyPress Forum content
b1gft
ParticipantI am also very interested in this.
April 30, 2012 at 7:08 am #133731In reply to: BP 404 subdirectory install
Paul Wong-Gibbs
KeymasterIf you’ve gotten the top-level pages to work and access BuddyPress content, I can’t understand why it wouldn’t also work everywhere else.
Your original post says “second BuddyPress install”; are you trying to run two separate BuddyPress sites under one installation of WordPress (multisite)?
April 30, 2012 at 6:23 am #133729In reply to: Using BuddyPress Avatars with wp_list_comments()
Paul Wong-Gibbs
KeymasterWordPress’ get_avatar() should work fine. For post/page comments, I would actually suggest using get_avatar() instead of bp_core_fetch_avatar() so that your site doesn’t break if you decide to turn off or stop using BuddyPress.
April 30, 2012 at 1:57 am #133727@mercime
ParticipantB. COPY your theme’s sidebar.php and Save As > sidebar-buddypress.php
Open up sidebar-buddypress.php and at the TOP, above all code contained within, add this
``Then at the BOTTOM of sidebar-buddypress.php, below all other code, add this:
`jQuery(document).ready( function() {
if ( jQuery(‘div#blog-details’).length && !jQuery(‘div#blog-details’).hasClass(‘show’) )
jQuery(‘div#blog-details’).toggle();
jQuery( ‘input#signup_with_blog’ ).click( function() {
jQuery(‘div#blog-details’).fadeOut().toggle();
});
});`
Save file.
C. Upload header-buddypress.php and sidebar-buddypress.php to your theme folder in server wp-content/themes/envision/ at the same directory where your regular header.php and sidebar.php files are in
D. Final note: Copy the style modifications for some BP elements https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/ and paste those at the bottom of your theme’s stylesheet, then adjust to taste.
April 30, 2012 at 1:56 am #133726@mercime
ParticipantYou will only need to create two new files, header-buddypress.php and sidebar-buddypress.php
If you’ve revised any of the BP template files transferred to your peekaboo theme folder in server during the BP Compatibility process, please delete the 6 BP folders transferred to your envision theme folder in server – activity, blogs, forums, members, groups, register – then re-run Appearance > BP Compatibility again to make sure that you have clean template files.
A. COPY your theme’s header.php and Save As > header-buddypress.php
Open up header-buddypress.php and at the BOTTOM of the file, below other code contained within, add this:
`<div class="middle” id=”ID, PREFIX.’_page_sidebar_position’, true)==1 ) echo ‘sidebar_right’;
elseif ( get_post_meta($post->ID, PREFIX.’_page_sidebar_position’, true)==2 ) echo ‘sidebar_left’;
elseif ( get_option(PREFIX.’_sidebar_position’)==1 ) echo ‘sidebar_left’;
else echo ‘sidebar_right’; ?>”>`April 30, 2012 at 12:38 am #133725In reply to: Using BuddyPress Avatars with wp_list_comments()
r-a-y
KeymasterHi,
In your comments template, you should try using the BP avatar function:
`
if ( function_exists( ‘bp_core_fetch_avatar’ ) ) :
echo bp_core_fetch_avatar( array(
‘item_id’ => THE_USER_ID,
‘type’ => ‘full’,
‘width’ => 75,
‘height’ => 75
));
endif;
`April 29, 2012 at 10:36 pm #133724@mercime
Participant@hnla thank you

@strek-break will post in a little while.
April 29, 2012 at 9:08 pm #133721In reply to: Using BuddyPress Avatars with wp_list_comments()
craftcore
ParticipantOops, sorry, the code didn’t show.
That should be:
“
April 29, 2012 at 8:19 pm #133720Hugo Ashmore
ParticipantWould have helped to have posted that link in the first place then

The third step does require some manual modifications did you try that or are you not familiar with basic html /code?
I’m sure mercime will help shortly – but I do stress again that the help forums are not to be regarded as a service.
April 29, 2012 at 7:49 pm #133719Strek
ParticipantHello, I tried using the plugin Template Pack BP, but the third step, the template is unformatted and can not finish. With this @ mercime asked me to send the links: header, footer, index, page and sidebar.
https://wordpress.org/support/topic/who-can-adapt-the-template-wordpress-for-buddypress
April 29, 2012 at 7:24 pm #133718Hugo Ashmore
ParticipantPlease bear in mind that this is a support forum to help with BP issues and problems, it is not a coding service. People here are volunteers giving their free time to help.
You really should make an attempt to begin this process – using the template pack plugin if required – or post to the jobs board with the request and pay someone to help you with this requirement.
If you make an attempt to get started I’m sure @mercime or someone will guide you along with the process and help where you get stuck.
Also do check out the codex pages as – apart from the template pack walk throughs – Mercime has done a lot of work converting themes to BP and has an extensive list of themes that have been converted or threads where the process for a given theme exist.
April 29, 2012 at 1:26 pm #133711In reply to: Google not indexing BuddyPress Forum content
cybe001
MemberI am using Google Site Map plugin to generate sitemap.xml, in this file I am not seeing the group or forum topic links. Is this the issue? Do I need to use a different sitemap generation plugin for Buddypress?
April 29, 2012 at 12:56 pm #133710In reply to: Show avatar on buddypress large by clicking on it
H
Participant@SlaFFik, thats correct, but the plugin you’re talk about, isn’t working in the way I mean. The working must be like Facebook or Google+, that the avatar showed large in a popup. But that isn’t possible with the BP avatar Bubble or am I wrong?
April 29, 2012 at 11:00 am #133708April 29, 2012 at 8:00 am #133706denzuke76
MemberThanks Paul. I read the article briefly last week and will read it again.
Meanwhile here are some findings:
1) It seems apparently the hackers are using some auto-login scripts – cos after setting achievements for tracking/awarding 1 point per login, some accounts clocked in over 20K points in a single day (twenty thousand times of login in to the site?!)
2) Another research method which was accidental – i setup Feedjit to see traffic and potential users coming in. Apparently the hacker use this search phrase – “powered by WordPress and Buddypress” so they must have and actively seeking sites powered by Buddypress knowing they can come in to create spam easily.Anyway the above observations is for those who are working on their sites as reference.
April 29, 2012 at 2:19 am #133703In reply to: Enable Copy & Paste For Buddypress Mobile
modemlooper
Moderatorok, after a few hours fiddling I’ve tracked it down to something in global.js is blocking Safari copy on tap and hold. Let me find the culprit and submit it to trac to be fixed in core. You cant copy on bp-default theme either.
April 28, 2012 at 7:19 pm #133697In reply to: Getting Started…
@mercime
Participant== Getting Started’-type issues ==
@tilley46 check out BuddyPress Codex – https://codex.buddypress.org/getting-started/== How do I create a standard Home Page for my BP site ==
What’s a standard home page for you? The list of blog posts like it is with bp-default theme, Twenty Ten and Twenty Eleven themes? If you want a static front page, do the same thing as you would do for a regular WordPress theme.== I don’t see anywhere for new users to register new profiles’, etc ==
Basic WordPress, go to Settings > General and allow registration.April 28, 2012 at 1:17 pm #133693In reply to: Show avatar on buddypress large by clicking on it
Aron Prins
Participant@SlaFFik What Jelle means is, if you click on the profile image, you’d see the actual image – for you here on BP.org it would be this url: https://secure.gravatar.com/avatar/61fb07ede3247b63f19015f200b3eb2c?d=https://buddypress.org/wp-content/plugins/buddypress/bp-core/images/mystery-man.jpg
Cheers,
AronApril 28, 2012 at 12:07 pm #133692In reply to: BP 404 subdirectory install
studio8c
Participanti’ve don that but no proper result.
im seeing the members, groups and form page but when i want to add atopic or group
” Page not found “When i go to links im getting this error
Fatal error: Cannot access empty property in /domain.com/public_html/wp-content/plugins/buddypress/bp-core/bp-core-template.php on line 760
April 28, 2012 at 8:22 am #133690In reply to: WordPress/Buddypress specialist needed
wewetho
Member@mercime, ESFI is a truly international organisation. We are registered in Paris, but our members are dispersed around the world and collaborating only online (besides annual conferences). As a framework organisation, we do not do our own fundraising, but support the national chapters with theirs.
April 28, 2012 at 6:38 am #133689kristopherlouie
MemberSo here’s what I discovered, poking through the members folder and trying to correlate the code from that page.
There’s a file “permalinks.php” which is what that page reflects. Entered the missing bits of code and presto.
Thank you for contributing @mercime
-
AuthorSearch Results