Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 31,226 through 31,250 (of 69,103 total)
  • Author
    Search Results
  • #133742
    Paul Wong-Gibbs
    Keymaster

    Your 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)

    #133741
    Paul Wong-Gibbs
    Keymaster

    Well 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.

    #133740
    Paul Wong-Gibbs
    Keymaster

    It should happen if the member’s site privacy is set to public, and if the BuddyPress ‘site tracking’ component is enabled.

    #133737
    craftcore
    Participant

    Thank 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.

    #133736
    b1gft
    Participant

    I am also very interested in this.

    #133731
    Paul Wong-Gibbs
    Keymaster

    If 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)?

    #133729
    Paul Wong-Gibbs
    Keymaster

    WordPress’ 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.

    @mercime
    Participant

    B. 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
    `

    `

    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.

    @mercime
    Participant

    You 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’; ?>”>

    `

    Save file.

    #133725
    r-a-y
    Keymaster

    Hi,

    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;
    `

    @mercime
    Participant

    @hnla thank you :-)

    @strek-break will post in a little while.

    #133721
    craftcore
    Participant

    Oops, sorry, the code didn’t show.

    That should be:

    Hugo Ashmore
    Participant

    Would 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.

    Strek
    Participant

    Hello, 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

    Hugo Ashmore
    Participant

    Please 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.

    #133711
    cybe001
    Member

    I 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?

    #133710
    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?

    denzuke76
    Member

    Thanks 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.

    #133703
    modemlooper
    Moderator

    ok, 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.

    #133697

    In 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.

    #133693
    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,
    Aron

    #133692
    studio8c
    Participant

    i’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

    #133690
    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.

    So 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

Viewing 25 results - 31,226 through 31,250 (of 69,103 total)
Skip to toolbar