Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 49,001 through 49,025 (of 68,969 total)
  • Author
    Search Results
  • #86710
    firetag
    Participant

    @roydeanjr the current way the plugin is designed allows the admin to create the categories for which the users can create their own sub groups under… The problem with doing the way you mentioned is that in the drop down all groups would be included this becomes a hassle when there is a few hundred groups. In my design it only includes the category groups that the admin creates in the drop down when selecting a parent category. And about someone being added to the upper level categories when they join a sub group is something I hope to implement in the future… The current implementation of the plugin is just a starting point it is not near close to having the functionality I need for quite a few websites I’m working on.

    #86708
    Pisanojm
    Participant

    Here is an unlisted plugin (that doesn’t work) but could give some braniac here on BP an idea of how to make a minimum password plugin for BuddyPress…seems like a great idea to me…

    http://www.itsananderson.com/plugins/minimum-password-length

    #86704
    Wythagy
    Participant

    @r-a-y I’ve actually already tried that exact SQL query (it seems to make logical sense at first glance) but it doesn’t work because the “AND” statement is trying to make 2 different rows with different values match…which, obviously they don’t. They share a common user_id, but not field_id or value…thus being the problem.

    r-a-y
    Keymaster

    If you’re feeling antsy, the fix by John is here:
    https://trac.buddypress.org/changeset/3142

    See if that works for you.

    #86701
    Philo Hagen
    Participant

    @cixxy you should try posting that in the bp album group: https://buddypress.org/community/groups/bp-album/

    #86697
    Wythagy
    Participant

    @r-a-y Actually the problem is that the data is on the SAME table…not a different one…if it were different tables this would be easier :(

    #86694
    Philo Hagen
    Participant

    @fennelandfern I have a three column site with customized column widths (www.hooping.org). Looking at the page you have linked it seems pretty clear to me that the content in your sidebar is wider than the default settings your sidebar are set for. Even looking at your index page makes this clear as you have ads that are hanging off over the edge. So this isn’t just a Buddypress issue, this is an issue for your doing with WordPress as a whole. It looks like your ads are probably 300k in width and I’m thinking that your sidebar is set to be something like 260k in width. Consequently you need to either a) change the size of your ads so that they fit in the space allotted for them, or b) change the size of your sidebar to make it wide enough for your content to be displayed – change the CSS width for your sidebar. If you don’t know CSS get someone to help you that does.

    #86686
    David Z
    Participant

    I had a similar problem. I spent a lot of time trying to edit the files under ../plugins/bp-template-pack/templates and nothing was changing! I browsed through my theme folder /wp-content/themes/ and saw that BP had inserted all of the BP template files within my theme folder — so I was making the edits to the wrong files! Are you certain you are editing the .php files under wp-content/themes/ or are you editing them in the bp-template-pack/templates?

    Also, you don’t put [HEADER] etc. anywhere. But you probably do have to change the HTML structure of the template files that BP placed within your theme’s directory.

    In order for BP to work, the BP templates need to have that structure. They default to:

    <div id=”container”>
    <div id=”content”>

    My theme had a php call for the header (that’s what they mean by “[HEADER]”) and then what followed was:

    <div id=”mainpage”>
    <div id=”content”>

    So I was able to go in to the BP templates that were placed within my theme directory, and change all of the “containers” to say “mainpage” and that resolved the problem. Of course your structure may be more sophisticated/complicated than that but it should be similar fix.

    #86683
    David Z
    Participant

    @caplain that worked like a charm for me, too. I run two sidebars and wrapped that to disable one of them on the bp pages. thanks!

    #86680
    Korhan Ekinci
    Participant

    @nuprn1 thanks so much! I tested it and works!

    Just one thing though, activity stream now shows comments of registered users only (which is ok), but for example anyone can post comment to my blog, is there a possibility that anonymous users comments also appear in the activity stream?

    #86674
    jordashtalon
    Member

    @kagliostro i’m having the same problem as you, I could get WP-FB-Autoconnect working before but with WordPress 3.0 and Later versions of BuddyPress i’m having no luck whatsoever. What is Gygia?

    r-a-y
    Keymaster

    It’s not recommend to make changes to the default theme because they will be wiped out when you upgrade BuddyPress.

    Build a child theme and then try to edit it via the WP Theme Editor and see what happens.

    If you continue to get the same problem after creating a child theme, reply back and let us know.

    #86665
    modemlooper
    Moderator

    Create a file in your plugins folder bp-custom.php

    Then follow these steps
    https://codex.buddypress.org/how-to-guides/modifying-the-buddypress-admin-bar/hiding-the-buddypress-admin-bar/

    #86664
    r-a-y
    Keymaster

    BuddyPress is not a forum script:
    https://codex.buddypress.org/getting-started/faqs/#forum

    Not sure why your boss cannot login, as you should be able to login via:
    http://www.yayteamblog.com/wp-login.php
    http://www.yayteamblog.com/wp-admin/

    Are you using any plugins that use redirection?

    #86663
    roydeanjr
    Participant

    Congratulations on your first contribution!

    While I love the idea of grouping groups into groups I wonder if you could answer a design question for me?

    Why did you not simply add a “parent” column and then provide a dropdown with all the groups in a “parent” selection option when creating any group?

    I would want to add someone to the bottom-most group and implicitly they would belong to all parent groups. This option would keep all the group functionality regardless and you would not have had to add extra code decyphering the group “type”. You could email everyone in a “country” group or just a “city” group if that was how they were “linked”.

    #86661
    guigoz
    Member

    @nuprn1

    In bp-groups.php, I’ve replaced :

    bp_core_new_subnav_item( array( ‘name’ => ( ‘Forum’, ‘buddypress’ ), ‘slug’ => ‘forum’, ‘parent_url’ => $group_link, ‘parent_slug’ => $bp->groups->slug, ‘screen_function’ => ‘groups_screen_group_forum’, ‘position’ => 40, ‘user_has_access’ => $bp->groups->current_group->user_has_access, ‘item_css_id’ => ‘forums’ ) );

    by

    bp_core_new_subnav_item( array( ‘name’ => sprintf( __( ‘Forum (%s)’, ‘buddypress’ ), groups_get_groupmeta( $bp->groups->current_group->id, ‘forum_id’ ) ), ‘slug’ => ‘forum’, ‘parent_url’ => $group_link, ‘parent_slug’ => $bp->groups->slug, ‘screen_function’ => ‘groups_screen_group_forum’, ‘position’ => 40, ‘user_has_access’ => $bp->groups->current_group->user_has_access, ‘item_css_id’ => ‘forums’ ) );

    But the fonction called catch the current group forum id instead of the current group forum topic count.

    Is it why you told me that : “you may also want to look at BP_Groups_Group::get_global_forum_topic_count but that is an overall general count – this function could be duplicated and changed to a per forum_id basis.” ? Because I don’t understand what you mean..

    Thanks.

    #86658
    Sofian J. Anom
    Participant

    @hnla, “each in a separate blog” meant the group on a blog, and forums on the other blogs.

    Actually, with WordPress Multisite, I want to make BuddyPress active across the entire site/blog, and I want to make the home page on every blog is different: blog posts on the blog 1; activity on the blog 2; groups on the blog 3, forums on the blog 4, etc.. On my site only me (admin) who can create blogs.

    I’ll try using a loop, though I have not quite understand how to use it.

    Thanks a lot.

    #86654
    tejinder
    Member

    Thanks alot for suggestion.
    But now i have another problem,
    Error: Your WordPress address must match your Site address before creating a Network

    Is there bybass or trick for this?

    #86648
    r-a-y
    Keymaster

    Hi Andrea, this isn’t true. A bug was fixed a few weeks ago in bp-blogs-classes.php that wasn’t correctly pulling a user’s blogs.

    @hnla – Just for sanity’s sake, I tried again. This time via “Super Admin > Blogs”. I clicked “Edit”, then added an existing user to the sub-blog that way. Works. Can you check to see your wp_bp_user_blogs table to see if it’s recording anything?

    #86647
    rich! @ etiviti
    Participant

    there are a few filters on the css class used in various components – for example: (for activity streams)
    http://etivite.com/groups/buddypress/forum/topic/quick-tip-highlight-friends-following-own-activity-stream-items/#topic

    you could change up the logic to include the site admin or other various roles/caps

    #86642
    Pisanojm
    Participant

    Rich this is already patched… if they want to patch it… VERY long/multiple file patch though… in the trac.buddypress.org site.

    #86639

    In reply to: Pay Site

    intimez
    Participant
    #86638
    Sofian J. Anom
    Participant

    Might as can be done with this plugin: https://buddypress.org/community/groups/bp-posts-on-profile/

    #86635
    firetag
    Participant

    @vshafer well I just released it now.. and no its not its not a premium plugin its a freemium… lol bad joke but heres the link https://wordpress.org/extend/plugins/bp-group-categoriestypes/ …. its my first upload to the repo so tell me if the download doesn’t work or something

    #86631
    rich! @ etiviti
    Participant

    the subnav is not setup for a string replacement on the “Forums” tab for a dynamic count

    bp_core_new_subnav_item( array( ‘name’ => __( ‘Forum’, ‘buddypress’ ), ‘slug’ => ‘forum’, ‘parent_url’ => $group_link, ‘parent_slug’ => $bp->groups->slug, ‘screen_function’ => ‘groups_screen_group_forum’, ‘position’ => 40, ‘user_has_access’ => $bp->groups->current_group->user_has_access, ‘item_css_id’ => ‘forums’ ) );

    vs

    bp_core_new_subnav_item( array( ‘name’ => sprintf( __( ‘Members (%s)’, ‘buddypress’ ), number_format( $bp->groups->current_group->total_member_count ) ), ‘slug’ => ‘members’, ‘parent_url’ => $group_link, ‘parent_slug’ => $bp->groups->slug, ‘screen_function’ => ‘groups_screen_group_members’, ‘position’ => 60, ‘user_has_access’ => $bp->groups->current_group->user_has_access, ‘item_css_id’ => ‘members’ ) );

    You could remove and re-add the Forums subnav and include the sprintf call and reference this function

    bp_forums_get_forum_topicpost_count( $forum_id ) will grab the count for all posts (including topics) for a given forum_id (but in buddypress the bbpress forum_id is stored in groups_get_groupmeta( $bp->groups->current_group->id, ‘forum_id’ ) )

    you may also want to look at BP_Groups_Group::get_global_forum_topic_count but that is an overall general count – this function could be duplicated and changed to a per forum_id basis.

Viewing 25 results - 49,001 through 49,025 (of 68,969 total)
Skip to toolbar