Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 36,826 through 36,850 (of 68,918 total)
  • Author
    Search Results
  • #119597

    I’m concerned about changing server information when I’m don’t seem to be having the 404 error trouble as is noted in the references you gave.

    Is it normal to not be able to use BuddyPress on a Windows server? I know it’s more difficult – but one of the potential solutions you listed even said that one of the BP developers uses a Windows Server.

    I’m afraid that if I can’t do some kind of coding fix, I’ll just have to dump buddy press :(

    Thanks again in advance for any solutions! :)

    #119595
    @mercime
    Participant
    #119594
    ewebber
    Participant

    @harty I played around with if statements in my actual child theme php pages, but it’s likely that the second link you posted might be the best way to go – I think a bp developer might know best.

    #119593
    tommyhoang
    Member

    @sbruner, on the homepage of my site, right below the header it says : “widgetize header, This panel is active and ready for you to add some widgets via the WP Admin”. same with the footer. yeah i copied and pasted the exact codes from the article.

    #119591
    aces
    Participant

    It’s not clear what you mean! You can already change the buddypress avatar to your photo.

    For Albums etc. look in the buddypress extend section: https://buddypress.org/extend/plugins/?search=photo

    #119590

    Image uploads work perfectly via the media library. I’m not sure what a native WP gallery is….

    I created an avatars folder earlier today in my /uploads/ directory – I’ve tried to upload avatars and the folder is still empty.

    File permission for the uploads folder and subfolders is 755.

    Because I also can’t create groups, or register as a new user, I’m wondering if there isn’t some weird root folder link that isn’t working correctly. I’m not getting any errors whey I try to add a group / upload avatar, etc. – it’s like it just ignores me and gives me the original blank entry form (and doesn’t put the info anywhere).

    http://youngrens.com/register/

    My site is hosted through Readyhosting on a Windows 2003 server (a pain – I know).

    I used Buddypress on this server months ago, but took it down when I revamped my site and used Elegant Themes.

    Thanks in advance for your help!! :)

    jonnyauk
    Participant

    So, the above function works for other menus I’ve tried (under profile) – but I can’t interact with the ‘groups’ menu… I have tried the following in the function above:

    `bp_core_remove_subnav_item( ‘groups’, ‘send-invites’ );`
    (And with global $bp):
    bp_core_remove_subnav_item( $bp->groups->slug, ‘send-invites’ );

    The problem I have is that I need to retain the invites functionality in certain group situations – I’m happy with my conditional code for this – no problemo… but just can’t get the above function to interact at-all with the group menu – in-fact I can’t remove anything from this menu – but I can from others?

    Any help would be MUCH appreciated – I’m tearing my hear out on this one;(

    #119588
    H32
    Member

    @ewebber excellent site by the way. Glad to see you’re successfully giving back to your community.

    #119587
    @mercime
    Participant

    Deactivate BuddyPress,
    – Can you upload image/s via media library? Or can you create native WP gallery in your install?

    Check if there was an /avatars/ folder created in your server –> wp-content/uploads/avatars
    – If there’s no avatars folder created, then you might be dealing with permissions
    – If there is an avatars folder, open it up and dig in to look for images named like
    3a912****2d2f-bpfull.jpg
    3a912****2d2f-bpthumb.jpg

    Btw, Linux or Windows server? Is your install localhost or online?

    jonnyauk
    Participant

    Ah, my mistake – this code does actually work HOWEVER , I can’t get it to hide ‘Send Invites’ or anything else under the group menu… do I have to do something different?

    `function ja_remove_navigation_tabs() {
    bp_core_remove_nav_item(‘friends’);
    bp_core_remove_nav_item(‘settings’);
    }
    add_action( ‘bp_setup_nav’, ‘ja_remove_navigation_tabs’, 15 );`

    #119582
    goldmember
    Member

    adding the tag “buddypress” seems to have done the trick. thanks!

    #119577
    @mercime
    Participant

    Make sure that you added term buddypress to tags in your child theme’s stylesheet
    `Tags: buddypress, etc. etc. etc.`

    Another way would be to add the following line to your wp-config.php
    `define( ‘BP_SILENCE_THEME_NOTICE’, true );`

    The first one is easier I think :-)

    #119575
    Harty
    Member

    Just found this plugin: http://buddydev.com/plugins/limit-groups-per-user/installation/
    While it stops members creating groups (if set to zero) the button still appears, so I can imagine members frantically clicking it wondering why a new group isn’t being created.

    Also tried this one: http://bp-tricks.com/coding/manage-group-creation-by-creating-a-group-request-form/
    but couldn’t figure how to make it work.

    Good idea about altering the CSS to hide the button (although it would probably hide it from me as well).
    Harty

    #119574

    @Harty, i think you can just hide group creation button withh css, pending the time you will find a permanent solution.

    regards

    #119573
    WebEndev
    Participant

    @Boone

    I’m a bit dense on the coding side…

    What would the code be to exclude a single user by ID?

    Thanks!

    #119572
    Harty
    Member

    Going through the forums and having spent hours searching the net, I can’t see any current up to date plugin that prevents group creation. I have also tried a few codes in php files with no positive result.
    Unless I am missing something, this feature is sought after by many bp users.

    #119571

    PS – this is what I’ve got:

    BuddyPress: 1.2.9
    BP_ROOT_BLOG: standard
    MySQL: 5.0.91
    Permalinks: month and name : http://youngrens.com/index.php/2011/09/sample-post/
    PHP: 5.2.11
    WordPress: 3.2.1
    WordPress multisite: no

    Boone Gorges
    Keymaster

    Change the permissions to 664 and see if it makes a difference. (You haven’t given enough info to know if 644 is ok.)

    jonnyauk
    Participant

    Thanks @DJPaul – you got my issue in one – I need to keep user avatars functionality, but disable group avatars and the creation step… so many thanks for your answer on this one;)

    Just to clarify, in-case someone comes across this issue – here is how I bundled Paul’s tidy code into a function (this is in my bp-custom.php file in /plugins)

    `
    function my_bp_remove_group_steps_init() {
    global $bp;
    unset( $bp->groups->group_creation_steps );
    }
    add_action( ‘bp_init’, ‘my_bp_remove_group_steps_init’, 10 );
    `

    The code above will remove the avatar step in group creation, and the ‘step numbers’ will respect that this has been removed – neat and exactly what I needed!

    You may also use the following to remove the group settings and group invites in the same function – although I have not done any testing on these:
    `unset( $bp->groups->group_creation_steps );`
    `unset( $bp->groups->group_creation_steps );`

    #119563
    sdls
    Member

    as @boone mentions have way through this:
    http://www.youtube.com/watch?v=PN7g0h8DPbE&feature=related
    for posertity’s sake

    Blake Barber
    Member

    I am having the exact same problem with beta 3. I have checked all the permissions and they are 644. Don’t know what to do. I run a site with 1.2.9 and my users are complaining about it. I was testing 1.5 to see if it would be better. I’m going to have to move to another software soon. If someone knows how to fix this issue I would love the help because I love WordPress and would like to stay with it.

    #119555
    Boone Gorges
    Keymaster

    The notifications component is not really set up to do this. Notifications get deleted after they are seen, instead of just being marked as read. There is a column called ‘is_new’, which you could probably manipulate to do what you’re trying to do, though it’d take a fair amount of fishing through the codebase to make sure that you caught every attempted deletion and replaced it with a mark-as-read. Then you’d need to create the markup for the notification history page (which would be straightforward).

    This is a pretty good suggestion for a future enhancement. I encourage you to open a ticket on trac.buddypress.org, ideally with a patch :)

    #119551
    ewebber
    Participant

    @naijaping you’re probably best creating the logo in the size you want it to display and creating a .png with a transparent background – you should try not to use css to change the size of it

    #119545
    ewebber
    Participant

    Yes, but people don’t read the rules, they are useful so they you can remove posts later, but it won’t completely stop them. I do restrict group creation now, but I wouldn’t have wanted to start the site that way.

    #119544
    Quint
    Participant

    @ewebber, thanks for the info.

    @harty, in response to ewebber’s recent post, I would consider what she did with her site: establish terms and conditions per her About page, and for those businesses that want to advertise, provide a mechanism for that to happen. This will be inline with a “pull” vs “push” strategy which is what I believe you’re going for.

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