Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 16,176 through 16,200 (of 73,983 total)
  • Author
    Search Results
  • #248163
    Joshua Blevins
    Participant

    I copied the files that are located in bp-legacy/buddypress/groups to MyTheme/buddypress/groups. Hmmmm, I will have to look into that Hugo. So that would be why you never see get_header or get_footer, etc. in any buddypress templates. That makes a hell of a lot more sense!

    #248160
    jscmal
    Participant

    @shanebp .. I have found something.

    I have seen just now that deactivating this plugin, the problem is no more present:

    “rtMedia for WordPress, BuddyPress and bbPress”.

    Then, the latest release of the rtMedia Plugin to upload and manage images introduced new problems.

    #248159
    shanebp
    Moderator

    What is the reason that make you think that can be a plugin?

    Your issues may not be due to a plugin, but your error log shows entries that are usually caused by a theme or other plugins.

    Start by deactivating plugins related to activity.

    If all else fails, delete BP 2.4.3 and install BP 2.4.2
    You can download prior versions of BP here.

    If the problems go away, you may have found a bug in 2.4.3
    You can submit a ticket here with the same user/pw you use for these forums.

    #248156
    jscmal
    Participant

    @shanebp

    Here the list of plugins installed in this moment:

    advanced-lazy-load
    advanced-recent-posts
    affiliates-manager
    affiliates-manager-simple-membership-integration
    akismet
    bp-activity-autoloader
    bp-activity-comment-notifier
    bp-activity-shortcode
    buddypress
    buddypress-cover-photo
    buddypress-first-letter-avatar
    buddypress-followers
    buddypress-media
    buddypress-members-only
    buddypress-sticker
    cookie-law-info
    ewww-image-optimizer
    eyes-only-user-access-shortcode
    favorites
    fb-like-notification-for-buddypress
    google-analytics-dashboard-for-wp
    hashbuddy
    invite-anyone
    jetpack
    mailchimp-for-wp
    options-importer
    options-optimizer
    redirection
    simple-ajax-chat
    simple-membership
    simple-membership-after-login-redirection
    simple-membership-custom-messages
    simple-membership-form-shortcode
    simple-membership-mailchimp-integration
    simple-membership-menu
    simple-membership-wp-user-import
    stream
    testimonials-by-woothemes
    user-role-editor
    user-switching
    woosidebars
    wordpress-database-reset
    wordpress-importer
    wordpress-seo
    wp-optimize
    wp-postviews
    wp-super-cache
    wp-sweep
    wp-symposium-toolbar
    wp-useronline
    wp-video-lightbox

    #248155
    jscmal
    Participant

    Hi,
    – WordPress 4.4 – Upgraded from the previous release
    – BuddyPress 2.4.3 – Upgraded from the previous release
    – No customization in buddypress core

    I have added a new post where I explained all the things in a better way, giving all the details about wordpress, buddypress and the plugins. But I added it 2 times but in both cases it was not published, I don’t know why.

    In practice is the Filtering that is not working for any user that is not admin. My admin account works properly.

    Another thing that happens is that keeping the Activity Stream page opened, the bar that says “Load Newest” appear also if there is no new post in the stream.

    I tested using the default WordPress Theme Tweenty Fifteen but the problem happens also there.

    About the theme used. It is Woothemes Canvas 5.9.3 and 5.9.15 . Never had problems with these themes using BuddyPress.

    The only customization that I did for BuddyPress are just CSS tags and when I upgraded to the new wordpress release and to the buddypress latest release, everything worked properly between buddypress, wordpress and the theme.

    About the plugins, I didn’t changed them until now. I will make a test deactivating some plugins.

    What is the reason that make you think that can be a plugin?

    Kind regards.

    G.Aloe

    #248153
    shanebp
    Moderator
    #248152
    shanebp
    Moderator

    For friend request emails, use the filter hooks in function friends_notification_new_request
    located in this file: buddypress\bp-friends\bp-friends-notifications.php

    For example:

    function panda_friend_request_message( $message, $initiator_name, $initiator_link, $all_requests_link, $settings_link ) {
    
        $message = 'This will completely replace the message';
    
        return $message;
    }
    add_filter( 'friends_notification_new_request_message', 'panda_friend_request_message', 15, 5 );

    Not that easy, but currently the only available method.
    There is a new method being developed and scheduled for BP 2.4.5 which has a target release date of March 2016.
    https://buddypress.trac.wordpress.org/ticket/6592

    #248151
    Joshua Blevins
    Participant

    I really should not have posted before testing. However I copied pasted the BuddyPress Template for index.php to my theme and It comes up as a blank page. Any ideas why this would happen?

    #248144
    Henry Wright
    Moderator

    Also is index.php the page that shows lists of groups or the groups profile page?

    There are different index.php templates. Here is another one for example. If you start from here you should be able to browse through all of the templates available.

    #248143
    jscmal
    Participant

    Please guys, developers, BuddyPress mantainers, I need help to manage this problem.

    It happens for any user that is not the Admin.
    My admin account works properly. the other users instead have these problems with the FILTERING in the Activity Feed.

    Help Please!!…

    #248141
    PandaTank
    Participant

    Does nobody have an answer for this?

    I would really like to know how we can edit the buddypress notification email templates

    #248139
    @mercime
    Participant

    So I have to create the Register and Activate pages from scratch?


    @abbadoodle
    It means you go to Pages > Add New and name a page “Register”, leave everything else blank, and click “Publish”. Do the same for a page named “Activate”. Then you go to Settings > BuddyPress and to the “Pages” tab, then associate the new pages you created with the Activate and Register select boxes and Save. That’s it.

    #248136
    Joshua Blevins
    Participant

    Okay because I was looking at bp-core-template-loader. I saw the many functions such as bp_register_template_stack and bp_get_template_stack. From the description of the function in the comments I infer these functions allow me to say “instead of bp-legacy use these folders instead”. Is there a way to get BuddyPress to use the files at my-theme/buddypress/groups instead?

    Also is index.php the page that shows lists of groups or the groups profile page?

    #248135
    Henry Wright
    Moderator

    BuddyPress starts with the index.php template and makes use of bp_get_template_part() to load the “partials” such as members-loop.php. See here for an example.

    #248131
    Joshua Blevins
    Participant

    Anybody know how BuddyPress looks for and puts together the group profile page?

    #248130
    @mercime
    Participant
    #248129

    In reply to: Group Type Development

    @mercime
    Participant

    >> I need suggestions for how best to proceed as well on any thoughts about this feature becoming part of core.
    Thank you. There’s a ticket for that https://buddypress.trac.wordpress.org/ticket/4017 and yes, I am also interested about this getting in core 🙂 You can cc yourself in that ticket to get updated.

    #248125
    name
    Participant

    Hey all,
    After a few weeks of searching I found the solution to this – it’s a beautiful plugin called Plugin Organizer

    You can use it to disable Yoast on buddypress pages and viola!
    Just create a plugin filter for site.com/members/*, /groups/*, etc. and you’re golden.

    #248124
    Xtremefaith
    Participant

    I’ve noticed a few discussions on the topic of “group types” but it seems the threads were closed before there was a real solution in place. Now with the recent Member Types released I’m wondering what the road map looks like for group types. I have a project right now that needs host groups with children home groups which already is making use of member types (to determine one’s access to create such groups), so this would be a perfect next step. Since Group Types is not in core right now I suppose I’ll have to move forward without so I need suggestions for how best to proceed as well on any thoughts about this feature becoming part of core.

    #248119
    jscmal
    Participant

    Another thing…

    The BuddyPress Activity Page, works very well for the Administrator User: the activity filter works.

    For any other users instead it doesn’t work and I don’t understand why.

    Please help.

    Buzztwitter Creator
    Participant

    Sharing files is not a very good topic on here…. I personally don’t think facebook want people to have the tools to share too much to their site. I’ve been looking right into this. It’s funny how facebook have been able to share to other platforms for a number of years, but Buddypress can’t even put together a simple plugin to allow you to share from the activity stream. there are many out there but they dont work, I’ve been on this for 3 days now, no sleep … I’ve also just seen a plugin for say with a demo and I checked it and it doesnt work, wont upload images but it’s from facebooks end, the app needs to be confirmed with them or the debugging software stops it picking up media… so you end up with a blank page. There are ways around it, I’ve slated buddypress past couple of days, but to be fair its a really decent platform and I now know that facebook are the culprits, though wordpress should not be letting individuals promote plugins that clearly don’t work. I havent seen one yet that does, but I think I know a fix that will get it sorted, but it’s if the programmer who created it wants to play ball…. it’s really wierd to be honest, they know they aren’t working but they are still promoting it… crazy… be suprised if you get any reply with anything to do with the scary word ‘sharing’ lol

    #248107
    Buzztwitter Creator
    Participant
    #248103
    shanebp
    Moderator

    I made a small adjustment to the code in an attempt to solve the issue you reported on the plugin support forums.
    Can you confirm that it is working?

    Re “removing the toolbar and menu for all users except admin” – please do not double post.
    Please use your existing thread:
    https://buddypress.org/support/topic/disabling-the-toolbar-for-members-except-admin/

    #248089
    kostasbarkas30
    Participant

    hello guys,

    just today i discovered a bug for buddypress groups (2.4.3). when i go to admin panel for a group (i am the group administrator it shows the button join the group (bug , i am the administrator, i didn’t had those problems with buddypress 2.3.5). i change the theme and still it shows the button. how can report this?

    thank you in advance

    #248088

    In reply to: Compatibility

    Hugo Ashmore
    Participant

    If you are taking this topic to a private channel, then this topic will be closed. Please remember that public forums are intended for open topics where the help may benefit others, also the referenced issue is a third party plugin, not BuddyPress the correct avenue of help would be the plugins WP support forum normally.

Viewing 25 results - 16,176 through 16,200 (of 73,983 total)
Skip to toolbar