Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 36,826 through 36,850 (of 69,106 total)
  • Author
    Search Results
  • #120098
    ribena_wrath
    Member

    OK, thanks for your speedy reply!

    http://pastebin.com/svtSQxJq

    #120097
    Mike84
    Member

    @mericme Ownership actually is the problem. Looking at the file ownership, the files that the bp-template-pack transferred to my theme have a different owner than everything else in my theme. And, due to the jacked up way i was looking at my filezlla, I was thinking they were actually transferring when they are indeed not. So now i need to change ownership on those files and folders. It’s strange that no one else has had the ownership issue though. I let bp-template-pack copy all of the files for me and it created this different owner.

    #120096
    @mercime
    Participant

    @ribena_wrath you’re missing the opening `

    ` which are supposed to wrap around the widgets. If you need further assistance, open up you active theme’s page.php, copy all therein, then paste to pastebin.com, click submit, then copy the generated URL and post here.

    #120095
    @mercime
    Participant

    @Mike84 that is really strange. Curious, what WP theme are you using?

    == I’ve tested by editing mytheme/members/index.php and changing the container div to something completely off, so as to see it in firebug. But, upon viewing mysite.com/members, i still see the content and padder divs. ==
    – Do you have any cache plugin on? Deactivate it.
    – Where do you edit the BP template files – download to computer and edit it there then upload or do you edit in cpanel (and might have forgotten to save revision)?

    == Therefore making it impossible for me to edit the permissions which are currently set to 644? ==
    You own those files. I have no problem changing permissions in my server. Are you on Windows server?

    #120093
    ribena_wrath
    Member

    oh and btw, my site is star-finder.co.uk

    #120090
    Boone Gorges
    Keymaster

    2 – You would have to write some javascript that does the refreshing. I don’t know of any ready-made implementations.

    3 – There’s no automatic way to filter these out in BuddyPress at the moment. You could write a function that would take them out of $activities_template when hooked to bp_has_activites.

    #120089

    @pengume, goto admin dashboard, under buddypress click general settings, you will see Disable user account deletion?: change it to yes and save. thats it, you done user will not be able to delete account. you can now write contact …….@,,,,,,,,,,,, to delete your account in your FAQ .

    regards

    #120088
    Mike84
    Member

    Since the bp-template files were transferred originally transferred by bp-template-pack, would this mean that I am not the owner of the files? Therefore making it impossible for me to edit the permissions which are currently set to 644? I ask this because I cannot change permissions on the any of the template files. Anyone?

    #120087
    Mike84
    Member

    @mercime I still can’t seem to edit the correct templates. Ive tested by editing mytheme/members/index.php and changing the container div to something completely off, so as to see it in firebug. But, upon viewing mysite.com/members, i still see the content and padder divs. Any ideas??? Driving me nuts.

    #120086
    jetlej
    Participant

    Progress: I found the BP function in the core and figured out how to alter it to achieve the effect, but I can’t figure out how to do this in the function.php file instead of altering the core file.

    The function:

    `function bp_core_add_notification( $item_id, $user_id, $component_name, $component_action, $secondary_item_id = 0, $date_notified = false ) {
    global $bp;

    if ( empty( $date_notified ) )
    $date_notified = bp_core_current_time();

    $notification = new BP_Core_Notification;
    $notification->item_id = $item_id;
    $notification->user_id = $user_id;
    $notification->component_name = $component_name;
    $notification->component_action = $component_action;
    $notification->date_notified = $date_notified;
    $notification->is_new = 1;

    if ( !empty( $secondary_item_id ) )
    $notification->secondary_item_id = $secondary_item_id;

    if ( !$notification->save() )
    return false;

    return true;
    }`

    and adding the following above return true; made it work:

    ` if ( $component_name == ‘messages’ ){
    return false;
    }

    if ( $component_action == ‘friendship_request’ ){
    return false;
    } `

    #120085
    jetlej
    Participant

    I’m using the latest release candidate (which works great!). You can download it here: https://buddypress.org/2011/09/buddypress-1-5-release-candidate-1-and-buddypress-1-2-10/

    #120084
    rosewater1
    Member

    @andrewteg:

    Thanks so much for your reply and for explaining things to me.

    I think I understand the situation now but the new function’s script is appearing at the top of my webpage above the header. I have also received this message: Warning: Cannot modify header information – headers already sent by (output started at /webroot/s/m/smoke019/primary/www/wp-content/plugins/bp-custom.php:8) in /webroot/s/m/smoke019/primary/www/wp-includes/pluggable.php on line 934.

    Do you know if there’s something that has to get deleted from the second file the warning message mentioned in order to get this conflict to go away?

    Thank you again.

    #120083
    Adam
    Member

    @valuser – Thank you so much it worked :D

    #120082
    Mary Jane
    Member

    Sorry I am not answering your question but how ru using 1.5 on your site?

    Paul Wong-Gibbs
    Keymaster

    There’s a setting in the BuddyPress general settings page to disable/enable commenting in the activity stream on forum posts or blog posts.

    #120073
    Adam
    Member

    @valuser – The code snippet doesn’t work because of the poorly formed url link. Did you mean:

    `<a href="/members/display_name /messages/inbox”>My Mail`

    in that case you wouldn’t need display name – how ever the echo part does not echo a user name at all. in fact all I get is members/display_name/activity

    #120060
    rahul.dev
    Member

    Yes there is a better solution to this problem i am code savvy and i have myself invented this solution
    Step:1:
    The solution is copy the content all content of file wp-load.php which you will find in the root of wordpress installation directory root directory. Then create a new file rahuldev.php paste all the code in wp-load.php to rahuldev.php file plus at the end of that rahuldev.php file add this small code as below
    ?php
    $resultrah = mysql_query(“select user_login, user_nicename from wb_users where user_login like ‘%”.$_POST.”%’ or user_nicename like ‘%”.$_POST.”%'”);
    while($row = mysql_fetch_array($resultrah))
    {
    ?>
    ?php echo $row;?>

    ?php
    }
    ?>
    replace ?php with <? php
    make sure the name of the table if it is not default set during installation then that should be the name of the table as the name is in your installation
    once the above code is added to the bottom of the new file then save the new file to the root of your wordpress application ie where there is wp-load.php there along with it should be our new file rahuldev.php

    Step:2:
    Open wp-content/plugins/buddypress/bp-messages/bp-messages-cssjs.php file

    replace
    var acfb =
    jQuery(“ul.first”).autoCompletefb({urlLookup:’root_domain . str_replace( ‘index.php’, ‘/wp-load.php’, $_SERVER ) ?>’});
    with
    var acfb =
    jQuery(“ul.first”).autoCompletefb({urlLookup:’root_domain . ‘/rahuldev.php’ ?>’});

    And now enjoy my magic

    Thanks
    Take care

    #120059
    rahul.dev
    Member

    Yes there is a better solution to this problem i am code savvy and i have myself invented this solution
    Step:1:
    The solution is copy the content all content of file wp-load.php which you will find in the root of wordpress installation directory root directory. Then create a new file rahuldev.php paste all the code in wp-load.php to rahuldev.php file plus at the end of that rahuldev.php file add this small code as below
    <?php
    $resultrah = mysql_query(“select user_login, user_nicename from wb_users where user_login like ‘%”.$_POST.”%’ or user_nicename like ‘%”.$_POST.”%'”);
    while($row = mysql_fetch_array($resultrah))
    {
    ?>

    <?php
    }
    ?>

    make sure the name of the table if it is not default set during installation then that should be the name of the table as the name is in your installation
    once the above code is added to the bottom of the new file then save the new file to the root of your wordpress application ie where there is wp-load.php there along with it should be our new file rahuldev.php

    Step:2:
    Open wp-content/plugins/buddypress/bp-messages/bp-messages-cssjs.php file

    replace
    var acfb =
    jQuery(“ul.first”).autoCompletefb({urlLookup:’root_domain . str_replace( ‘index.php’, ‘/wp-load.php’, $_SERVER ) ?>’});
    with
    var acfb =
    jQuery(“ul.first”).autoCompletefb({urlLookup:’root_domain . ‘/rahuldev.php’ ?>’});

    And now enjoy my magic

    Take care

    #120058
    Paul Wong-Gibbs
    Keymaster

    It scales fine.

    Yes turned off a few:

    BuddyPress Privacy Component
    BuddyPress Profile Gallery Widget
    BuddyPress Profile Music Widget
    BuddyPress Profile Video

    Didn’t use them much but some data (not sure what exactly – it’s gone now anyway) was in the notifications table.

    #120056
    Steveorevo
    Member

    Look like BuddyPress’ has a version (what version?) of bbPress built in. Aside from the activity stream, looks like creating forums and topics is fully supported in BuddyPress. Combine it with Group Email Notifications plugin for BuddyPress and you have a pretty nice and fully functional forum. I tried bbPress 2.0 plugin too, but found it incompatible/too many issues. Best bet right now is to do a base install of WP + BuddyPress 1.2 then use BuddyPress’ Forum Setup menu item. Do Not Install bbPress 2.0 plugin atop this.

    #120054
    linick
    Member

    nice website…

    which plugin are you using on here ?:
    http://www.yeahhackney.com/local-businesses/

    For 1.5 RC1 the file that had the error was “~/wp-content/plugins/buddypress/bp-members/bp-members-notifications.php”
    For 1.2.10 the file was “~/wp-content/plugins/buddypress/bp-core/bp-core-notifications.php”.

    I had the error first with 1.2.10 then tried and upgrade to 1.5 RC1, both versions had the same error but for different files.
    I happy that my contents of the entire /buddypress/ directory are correct for 1.5 RC1. I’m now using 1.5 RC1.

    Boone Gorges
    Keymaster

    Hm. Your upgrade must not have completed properly. In BP 1.5 RC1, there is no file called bp-core/bp-core-notifications.php. That file, along with the files that called it, must be left over from your pre-upgrade version of BuddyPress. You might consider deleting the contents of the entire /buddypress/ directory, and then reuploading BP 1.5-RC-1’s files into that folder.

    #120049
    leethompson
    Member

    @ewebber Unfortunately no, but I am using the privacy plugin already, I need to show links between friends. But only friend can see them.

Viewing 25 results - 36,826 through 36,850 (of 69,106 total)
Skip to toolbar