Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 46,926 through 46,950 (of 68,967 total)
  • Author
    Search Results
  • #91948

    In reply to: What is xprofile?

    imjscn
    Participant

    @hnla, Thanks! #3 already covered in your #1 & #2 answers.
    For #2, is there any reference or links to learn more about this subject?

    #91940
    igoddess
    Participant

    OK… where do I find “admin > options”?

    I’ve got the BuddyPress dashboard dropped down and “options” isn’t an option…

    #91928
    @mercime
    Participant

    I just checked out your site with Avenue K9 (BuddyPress BuddyPack) Theme. You seemed to have fixed redirect to homepage issues because I’m not being redirected to homepage at all.

    #91927
    lizy
    Participant

    how are you My name is Miss lizy
    i saw your profile at (buddypress.org) today and
    i become interested in you
    so here is my e-mail
    adderss (lizy_oti @yahoo.com)
    Plz try to send me mail so I
    can give you my picture.
    Yours Miss lizy.

    #91925

    In reply to: Admin Bar Disapears

    @mercime
    Participant

    “I still have the issue. I changed my theme to Jooc Buddypress Theme”
    If you change theme to bp-default theme, is admin bar showing up in front end? If so and it’s not showing up in the Jooc theme, and you say wp_footer hook is in footer.php of theme, then I suggest you contact Jooc theme authors.

    #91924
    @mercime
    Participant

    @fillsee226, the delete button is not in the admin dashboard, it’s in the front-end.

    Assuming you’re the Site/Super Admin –
    Go to home page,
    select on groups tab in main navigation bar,
    select group you want to delete,
    in group page under group avatar, select on “Admin” link in bar, then select “Delete Group”

    #91922
    Pisanojm
    Participant

    @nuprn1 @r-a-y

    Asking for ideas of how/where could/should I use this code to accomplish the inputting of tags after a topic was created (specifically for users that did not put any in in the first place)? Would like to make it so a moderator/above could do it… From above trac:

    `
    `

    #91921

    In reply to: Image gallery and ..

    @mercime
    Participant
    #91920
    paulhastings0
    Participant

    @Nit3watch Thanks for the heads-up.

    #91919
    @mercime
    Participant

    @bondjamesbond007 shaken, not stirred? :-)

    Before anything else, I see that you’re using the bp-default theme and that you’re making revisions directly on that theme. If or when you upgrade BuddyPress, any revisions you made will be overwritten. I recommend you create a child theme of bp-default theme and make your revisions in the child theme.

    As for the “sidebar overlaps part of the content at its left”, this is to be expected when content exceeds maximum or minimum width as indicated in style.css where
    `body {

    max-width:1250px;
    min-width:960px;

    }`
    you can instead change body width to fixed width of e.g. 980px or 1000px in your child theme’s style.css so you have a more realistic palette to place your videos, slideshows, etc.

    #91916
    Bond James
    Participant

    Mercime: I´m using BuddyPress Default 1.2.5.2 Theme. My URL is: http://www.rumbar.co/
    Tks in advance for your help!

    #91914
    govpatel
    Participant

    You need to use a wordpress 3.0 compatible theme or create a child theme based on twentyten or buddypress and use that.

    #91912
    Cameron
    Participant

    Anyone?

    #91909
    Pisanojm
    Participant

    @psycolor Have you made any progress on the autosuggest plugin idea?

    #91899

    In reply to: Dashboard problem

    govpatel
    Participant

    I read somewhere that buddypress can only work if you have network enabled on your wordpress as buddypress plugins activates as network try that see if it solves your problem.

    Tosh
    Participant

    @travel-junkie Great thanks for the tips. I’ll try some things this week on it. How would I turn off notifications for a specific event from a general user point of view? Via My account > settings > notifications ?

    #91895
    videowhisper
    Participant

    Maybe this could be of use https://buddypress.org/community/groups/videowhisper-live-streaming-integration/ . Screen sharing tools can also be used with this.

    #91894
    John
    Participant

    Thanks, here’s the code

    how do I put the stripslashes ? I’ve tried with an echo but it didn’t work.

    #91886

    In reply to: all links are broken

    zookie_333
    Member

    i just installed buddypress 1.2.5.2. everything else seems to work. I can klick on about and it works….
    only Activity Members Groups i cant click. Wrong links? i put the file structure to default and it is still the same.

    Boone Gorges
    Keymaster

    Thanks for the example code, @mariochampion. Action order can be a bit mystifying. I assume that your action is working because it’s getting loaded after BP is, otherwise I don’t think it would work. In any case, it’s very helpful to have more data points.

    #91882

    In reply to: Introducing JobBoardr

    rossagrant
    Participant

    @Travel-Junkie No problem! Keep me in the loop, it’ll be a big part of my current project so I’d be really happy to test it out for ya!
    Cheers!

    #91881
    Roger Coathup
    Participant

    you can do this with your own custom activity loop.

    Filter on blog posts and user ID.

    https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-activity-stream-loop/

    #91880
    Mark
    Participant

    Hey @taylor – Did you ever fix this?

    mariochampion
    Participant

    just to add to this discussion, concerning what hook to link it to…this is what works for me. i didnt have luck with bp_setup_nav for some reason. i dont recall where i got this example, but think its bp-xprofile.php itself. this worked in both theme>functions.php and in my own mmc_functions.php which i “require()” in functions.php

    just to add a hint of background, we are moving these two items to the ‘settings’ tab from the profile tab. the removing is trivial, the adding is trivial, the getting all the right functions/themes/forms called, not so much. but its done and it works.

    here is the code for removing sub-tabs — aka options:

    `
    //removes in a structural way.. no change to bp-xprofile.php

    function mmc_bpsetupnav_removefromprofile(){
    global $bp;

    if ( $bp->current_component == $bp->profile->slug ) {
    bp_core_remove_subnav_item($bp->profile->slug, ‘edit’);
    bp_core_remove_subnav_item($bp->profile->slug, ‘change-avatar’);

    }//end if
    }//end function
    add_action( ‘wp’, ‘mmc_bpsetupnav_removefromprofile’, 2 );
    `

    here is my code for adding them to the settings tab

    `
    ////////////////////////////////////////////////////////////
    ////// functions for moving to Settings tab the editprofile/change avatar sub-tabs

    function mmc_bpsetupnav_forsettings(){
    global $bp;

    if ( $bp->current_component == $bp->settings->slug ) {
    //define ( ‘BP_XPROFILE_SLUG’, ‘settings’ );//didnt have desirable effects. left her for documentation

    //this is essentially a clone of xprofile-settings.php, but with tweaks to change BP_XPROFILE_SLUG references tp BP_SETTINGS_SLUG
    //that way didnt change any core files, and moved it out of the upgrade stream
    require_once( WP_PLUGIN_DIR.’/mmc_misc/functions_xprof_settings_mmc.php’);

    $profile_link = $bp->loggedin_user->domain . $bp->profile->slug . ‘/’;
    $settings_link = $bp->loggedin_user->domain . $bp->settings->slug . ‘/’;

    //EDIT PROFILE
    bp_core_new_subnav_item( array(
    ‘name’ => __( ‘Edit Profile’, ‘buddypress’ ),
    ‘slug’ => ‘edit’,
    ‘parent_url’ => $settings_link,
    //’parent_slug’ => $bp->profile->slug, //left for documentation
    ‘parent_slug’ => $bp->settings->slug,
    ‘screen_function’ => ‘xprofile_screen_edit_profile_mmc’,
    ‘position’ => 50, //magic number based on current items already there in SETTINGS tab
    ‘user_has_access’ => bp_is_my_profile() //ADDED, NOT IN ORIGINAL WHEN IN BP-XPROFILE.PHP
    ) );

    //CHANGE AVATAR
    bp_core_new_subnav_item( array(
    ‘name’ => __( ‘Change Avatar’, ‘buddypress’ ),
    ‘slug’ => ‘change-avatar’,
    ‘parent_url’ => $settings_link,
    //’parent_slug’ => $bp->profile->slug, //left for documentation
    ‘parent_slug’ => $bp->settings->slug,
    ‘screen_function’ => ‘xprofile_screen_change_avatar_mmc’,
    ‘position’ => 60, //magic number based on current items already there in SETTINGS tab
    ‘user_has_access’ => bp_is_my_profile() //ADDED, NOT IN ORIGINAL WHEN IN BP-XPROFILE.PHP
    ) );

    }//end if

    }//end function
    add_action( ‘wp’, ‘mmc_bpsetupnav_forsettings’, 2 );
    add_action( ‘admin_menu’, ‘mmc_bpsetupnav_forsettings’, 2 );
    `

    note the TWO add-actions at the end. also taken from example at bp-xprofile.php. why this and not bp_setup_nav.. i dont know!

    ggod luck
    mario

    #91876
    @mercime
    Participant

    @slaFFik understood. Each time I visit your site to test the plugin, I see more and more improvements. Thank you.

Viewing 25 results - 46,926 through 46,950 (of 68,967 total)
Skip to toolbar