Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 31,026 through 31,050 (of 68,918 total)
  • Author
    Search Results
  • @mercime
    Participant

    @jakeyboy1989 from your WP forums post as well – If you just want to make your WordPress theme compatible with BuddyPress, you don’t need to create a multisite installation.

    Install and activate the BP Template Pack Plugin and go through Appearance > BP Compatibility process. Then post back here if you require further assistance.

    juanmaguerrero
    Participant

    Hi, @shawn38 I have updated the code in the previous comment I made with that bug fixed. Please copy/paste it now and it’ll work fine. As you mention, my “example” has an image (loading bar gif) included, that you can easily add by adding some style and the image. In my example, I used:

    
    <div id="loadingActivityMessage">Loading...</div>
    
    @mercime
    Participant

    @strek-break you’re welcome. Marking this as resolved.

    jakeyboy1989
    Member

    Thanks for the tips @Paul Gibbs

    The reason I want the two sites to be connected is so that my authors can network and get points, rankings, etc, for the posts they make (this was a feature requested by my users).

    The key thing for me is that my users want the social features that I can provide through buddypress, but it is difficult to integrate with more extensive framework based wordpress templates (at least it seems that way for me) so I would love to be able to have buddypress on the same site, or a connected site, that has its own template and is hidden from users.

    Also when I say authors it might sound misleading because this could be potentially 500-1000 different users so they need group and discussion forum features..

    #133772
    juanmaguerrero
    Participant

    Hi, @jafar1374 I think there’s a misunderstanding. The Default theme is the one this site is using: http://www.soyskater.com/ and the one that http://patomatlovers.com/ is using is not. Neither way I think you’re needing some designer’s help to achieve what you want. To separate any boxes you should add something like “margin-bottom:20px;” in the current css stylesheet but for that to look ok your theme should have some style to actually make differences between each widget block, ie: “border:1px solid #000” just to make an example.

    #133770
    storyaday
    Participant
    #133768
    Paul Wong-Gibbs
    Keymaster

    I just create three groups in a row on testbp.org. Worked fine.

    #133765
    Jacob Schweitzer
    Participant

    I’ve reported this as a bug since nobody was able to give a solution to me.

    #133764

    In reply to: Getting Started…

    Tilley46
    Participant

    Thanks @mercime– I got the Home Page sorted and changed the general settings, but still can’t view or get the ‘registration’ page functioning. It appears that the pages ‘activate’, ‘activity’, ‘forums’, ‘groups’, ‘members’, and ‘register’ were all created when BP was installed and activated. However, when clicking ‘view page’ on both the ‘forums’ and the ‘register’ pages in the WP pages menu, it links to ‘Home’- the static Home Page I created- instead of a ‘forums’ or ‘registration’ page… Not sure what the issue is. Do I need to reinstall BuddyPress after having changed the general settings?

    #133763
    craftcore
    Participant

    Thanks for the tip, Paul! I have nice crisp avatars now; not a blurry pixel in sight!

    Strangely, calling get_avatar() still resulted in blurry pics. When I used the bp_core_fetch_avatar function, it worked perfectly.

    (See image of the results side by side: https://twitter.com/#!/pangepange/status/197016926789181441/photo/1/large )

    The function didn’t work as is, but when I changed item_id to “$comment->user_id”, the avatars worked on my theme.

    `<?php if ( function_exists( 'bp_core_fetch_avatar' ) ) :
    echo bp_core_fetch_avatar( array(
    ‘item_id’ => $comment->user_id,
    ‘type’ => ‘full’,
    ‘width’ => 75,
    ‘height’ => 75
    ));
    endif;
    ?>`

    Thanks so much for the help!

    Strek
    Participant

    the template was perfect! Thank you for helping me!

    #133758
    hridaya
    Member

    Hello @Paul Gibbs can you give some advice what may be the issues here.

    Thank you

    #133757
    hridaya
    Member

    Actually the data from bp_activity Tabble deleted sometimes on 1 day ,sotime on 2 day randomly with `type` = ‘activity_update’ OR `type` = ‘new_blog_post’ OR `type`=’new_avatar’ but not all the table itself deleted.
    I contact the hosting company and they sent me the log files and i can not see any delete query related to delete activity from bp_activity table.

    Here are the list of plugin using
    BP Profile Search, BuddyPress Profile Privacy ,WP-reCAPTCHA ,RoyalSlider,Rating-Widget Plugin ,Platinum SEO Pack,BuddyPress Block Activity Stream Types

    Its very strange issues…

    #133753

    You can add this to wp-config.php:

    `define( ‘BP_FORUMS_SLUG’, ‘conversations’ );`

    That will change the slug. To change the actual text that is rendered on the page, check out the “Custom Groups Name” plugin at http://hardlyneutral.com/wordpress-plugins/

    …and if you are feeling adventurous, go ahead and start editing your translation files!

    About .pot, .po, and .mo Translation Files in BuddyPress

    #133751

    In reply to: Forum page not showing

    @mercime
    Participant

    == When the Forum page is activated, it does not show automatically on the site menu ==

    If you’re using the custom menu in Appearance > Menu, then you’d have to add the link to the new Forum page to your custom menu.

    == Where do I find instructions to set up this type of community site? ==

    BuddyPress Codex https://codex.buddypress.org/
    Configuring BuddyPress Components – https://codex.buddypress.org/getting-started/configure-buddypress-components/

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

Viewing 25 results - 31,026 through 31,050 (of 68,918 total)
Skip to toolbar