Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 35,551 through 35,575 (of 69,109 total)
  • Author
    Search Results
  • #122998
    Anonymous User
    Inactive

    I’m looking for someone to develop an API for my buddypress site that would allow users to sign up on my site, then connect to other sites of mine using a “Login with” button.

    #122997
    Anonymous User
    Inactive

    I’m looking for someone to develop an API for my buddypress site that would allow users to sign up on my site, then connect to other sites of mine using a “Login with” button.

    modemlooper
    Moderator
    rich
    Member
    rich
    Member

    already done core via the function `bp_activity_make_nofollow_filter`

    wiking
    Member

    I still struggle to get this view running corectly.

    I managed to find out how to pull all group ID’s for a given userid:

    SELECT group_id FROM `xyz_bp_groups_members` where `user_id` = 1

    And how to get all forum_id’s for a given group:

    SELECT meta_value FROM `xyz_bp_groups_groupmeta` where group_id = 1 and meta_key = ‘forum_id’

    My idea was to do a join as i didn’t know how to follow your directions correctly @boonebgorges.
    Therefore i tried to modify the original $sql (line 83 in bp-group-filters.php):

    $sql .= ‘JOIN ‘ . $bp->groups->table_name . ‘ AS g LEFT JOIN ‘ . $bp->groups->table_name_groupmeta . ‘ AS gm ON g.id = gm.group_id ‘;

    with this extended version:

    $sql .= ‘JOIN ‘ . $bp->groups->table_name . ‘ AS g LEFT JOIN ‘ . $bp->groups->table_name_groupmeta . ‘ AS gm, oba_bp_groups_members AS gu ON g.id = gm.group_id AND gu.group_id = gm.group_id’;

    unfortunately i have not enough know-how how the buddypress-core is working correctly. Any hints on how to do this properly?

    Many Thanks!

    #122984
    rich
    Member

    You can block them from being saved to the activity table (db)
    https://wordpress.org/extend/plugins/buddypress-block-activity-stream-types/

    (otherwise, posts on the forums about removing them from the activity loop array)

    then if you need to block a certain blog_id (if on multisite)
    etivite_bp_activity_block_denied_activity_type_check

    this filter will pass a long additional data to check for – but you’ll need to dig into the code to figure that portion out.

    #122981
    Lee
    Participant

    Thanks Paul, I do understand that. The WordPress issue was caused by BuddyPress so I thought it might be something you guys here might have come across before. I will post at wordpress.org too.

    #122980
    Quint
    Participant

    @djpaul, Thanks. I did what you suggested and more. No go. Since I have more control on my local installation, I re-installed WordPress, then BP 1.5.1 (using the bp-default). No luck. I uninstalled 1.5.1 and tried with 1.5. No luck. I uninstalled 1.5 and tried with BP 1.5 RC. No luck.

    Other than you saying that it exists, I’m beginning to think that sub-menu item was always a figment of my imagination. I don’t know what else to try. Any suggestions?

    #122977
    Nahum
    Participant

    @djpaul yea I’m pretty sure, since at first I did realize it was still the old language file from pre-1.5, so I downloaded the new .pot and worked with it.

    Since I was workign with a custom theme, I’ve even tried it with a child theme of Bp-default and still the same problem.

    prionkor
    Member

    Need the same thing. Please someone help!!

    #122970
    pcwriter
    Participant

    @petergunn

    This should help solve your problem:

    Open your style.css file and find `#header h1 a`
    Remove `text-indent: -9999px;` (that’s whats causing long text to bleed off the left side)
    Then adjust the width to fit the length of your title.

    #122966
    pengume
    Participant

    Yea I would like two types of membership roles. One where they get access to buddypress pages and maybe some other pages. As well as another membership role were they don’t get access to much if anything at all.

    Right now I have it so logged out members do not have access to buddypress but I want to create a user who does not get access to any posts and buddypress pages. Would be nice if someone could lead us in the right direction. I saw some plugins that will help create roles and such but it does not allow for specification of buddypress pages too.

    #122965
    Paul Wong-Gibbs
    Keymaster

    I haven’t seen this problem before. What version of BuddyPress are you using, and what other widgets?

    #122964
    Paul Wong-Gibbs
    Keymaster

    Yes to both. Are you able to deactivate template pack, switch to BuddyPress default theme, and see if they reappear?

    #122963
    Paul Wong-Gibbs
    Keymaster

    If BuddyPress is disabled, and you still cannot register new sites in multisite, you have a WordPress problem. There are people with more expertise in this area, than us, over on the WordPress.org support forums.

    #122955
    Lee
    Participant

    I’ve now attempted to create 8 new sites on the network. All with different names and all created from Network Admin. WordPress creates the tables for the sites but that’s as far as it gets. The table infixes increase by 1 with each site created.

    Here’s the error received while updating the network after reinstalling all WordPress files except wp-config.php and .htaccess (not the database):

    “Warning! Problem updating http://blog.example.com. Your server may not be able to connect to sites running on it. Error message: Couldn’t resolve host ‘blog.example.com'”

    WordPress knows the site is there. I suspect it hasn’t created the virtual host; not sure how to check for that – my eyes are open to learning new things here :)

    Both wp-config.php and .htaccess are confirmed as being unaltered by BuddyPress.

    I’ve tried creating sites with all plugins deactivated but the result is the same.

    Edited to add: site registration is enabled.

    #122953
    Angie
    Participant
    #122951
    pcwriter
    Participant

    @thebbcmusic

    It would be a lot less time-consuming if you were to add the s2member snippet directly in your templates rather than each post as you write them. This way, the code would automatically run on every post.

    #122947

    In reply to: Privacy????

    aces
    Participant

    I’m using the walled garden technique for some privacy and have adapted it for bp 1.5.* !

    This is based on https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/members-privacy-how-can-i-hide-members-profiles?topic_page=2&num=15#post-102784 and needs to go in a bp-custom.php file…

    `
    function sh_walled_garden()
    {
    global $bp;
    if( bp_is_register_page() || bp_is_activation_page() || bp_is_page( BP_FORUMS_SLUG ) || bp_is_page( BP_GROUPS_SLUG ) )
    return;

    if( ! bp_is_blog_page() && ! is_user_logged_in() )
    bp_core_redirect( bp_get_signup_page() );
    }
    add_action( ‘wp_loaded’, ‘sh_walled_garden’ );
    `
    Originally add action was to get_header but now the bp template loads the header first so I had to move it…

    Before that one had to put a hook into the page template header to load the function – not sure which would now be best or if that hook is ok to use (It’s the only one i found that worked)?

    The above function hides members and activity from those not logged in but enables forums and groups for everyone – see variation here

    #122842
    Lee
    Participant

    Thanks for your reply but BuddyPress is deactivated and deleted. The multi-site install worked perfectly prior to the installation of BuddyPress. The whole issue developed due to BuddyPress. It is the second time I’ve installed BuddyPress into a site (different sites) and BuddyPress has caused a multi-site to not properly register new sites within the network.

    #122930
    JackVD
    Participant

    just find out that It doesn’t work together with the plugin: buddypress share it

    #122928
    JackVD
    Participant

    Hi CJ, unfortunately the plugin is not working with my site. I’m using buddypress 1.5.1

    #122927
    prionkor
    Member

    is there any buddypress filter reference page? The funciton that prints the group description is `bp_group_description()`. Which filter i should use to nofollow links?

    #122873
    @mercime
    Participant

    Many who help out are volunteers, aside from a possible time differences, a topic can get overlooked if not bumped after 24 hours or so. In many cases, some topics are not bumped because OP found answers via Google search etc.

    Free Gallery: https://wordpress.org/extend/plugins/bp-album/
    Premium Gallery: http://buddydev.com/plugins/bp-gallery/

Viewing 25 results - 35,551 through 35,575 (of 69,109 total)
Skip to toolbar