Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 52,326 through 52,350 (of 69,016 total)
  • Author
    Search Results
  • #78626

    In reply to: New to buddypress

    Aditya Singh
    Participant

    @ray
    I have created an excel parser/loader, that enables a user to import data directly into the table they want to from excel….as long as a user customizes the code-fragment depending on the fields present in the table, it is good to go…Will try to frame this into a plugin after 21st of this month…trying to get my site live by 21st…

    re#4 (extra items in group header)
    what i meant was : lets say I want to add “description2”, “description3”, “description4” besides the default “description”, and I want all of them appear on the group header page….now, I have modified the table structure so that it now has few more fields, i.e. “desc2”, “desc3” and “desc4”.
    Here are my follow-up questions on this:
    a. would it be a bad idea to do this way…i mean i have done it hoping that whenever buddypress is updated, my database will be left untouched…wouldn’t it?
    b. I tried creating the functions for fetching desc2 etc based on function bp_group_description() in the bp-groups-templatetags.php, and calling it finally in group-header.php, but it does not work….am i doing something wrong??

    Now this may be asking a lot but could you tell me what possibly could be going wrong here, or may be show be how this should be done, assuming a person has to
    “fetch the details of a field XYZ in the table bp_groups”
    OR
    in case altering with the table bp_groups is a bad idea, I could create a second meta-table with my parameters that has the group_id of the group whom the values of these fields correspond to….but in this case also, how do i fetch the results?

    #78620
    r-a-y
    Keymaster

    @mistercyril – Add bp_is_directory() to the bp_is_register_page() line.

    #78619

    In reply to: New to buddypress

    r-a-y
    Keymaster

    @stuffsone

    re: #1. Auto-joining a group when posting in a forum already exists by default! Try it out on your test install.

    #78615
    nickhammond
    Participant

    @jens this line:
    bp_core_load_template("/registration/login",true);

    Is the reference to the file that you would like to load for the login page. For instance, this file would be wp-content/themes/YOUR_THEME/registration/login.php.

    Also, if this file doesn’t exist then it will always redirect the user to the homepage.

    #78614
    mistercyril
    Participant

    @Travel-Junkie: Hey, your solution works great on my setup (WP MU 2.9.2 & BP 1.2.3).

    I was wondering if you could help me take this one step further…

    I would like my buddypress pages to be accessible only to logged-in users as they are now… but in order to get people to want to log in I think a “teaser” would be a plus. So my question is : How can we make the main BP directory pages accessible to everyone and restrict single groups, profiles, forums… ?

    Thanks again for the great help so far!

    bradpalmore
    Participant

    Nevermind, I found a total_friend_count table for each user.

    bradpalmore
    Participant

    That table holds my friend count (user_id 1), but what about the friend count for other users?

    #78610

    In reply to: New to buddypress

    Aditya Singh
    Participant

    @r-a-y
    Thanks. I did have a look at the auto group join plugin. I have a few follow-up questions though. As I saw on buddypress itself, it did not need me to “join” any group anywhere… The moment I posted on any group, I became a part of it…That would also serve the purpose to a large extent…
    from the extra sections in the user’s profile section i meant -> there are some extra features that i am providing in my website…things that I have hard coded…I wanted to hard code them into the user’s profiles…

    about everything else, i will do the needful and get back if there are further doubts…Thanks a lot…
    and thanks about the plugin by manoj…i will have a look…and if i can code the plugin, I will share it here….

    #78608
    nig3d
    Participant

    https://buddypress.org/community/groups/buddypress-real-names/

    the link is broken, somebody knows how to contact the author?

    Hugo Ashmore
    Participant

    And as r-a-y suggested have you tried disabling all other plugins?

    Ozcar
    Participant

    oh yeah, i have no problem running WP at all! It’s just that I can’t activate BP.

    #78601
    absticles
    Participant

    Yep I’m using a child theme. It’s bizarre that it doesn’t work.

    I have the following plugins activated:
    ‘Buddypress’
    ‘Remove BuddyPress Admin Bar’

    They’re the only ones activated!

    r-a-y
    Keymaster

    Are you able to access the WP admin area?

    If not, disable every single plugin you have except for BP, then attempt to disable some BP components.

    #78598
    r-a-y
    Keymaster

    @nig3d – What questions do you have? I’ll try to answer them. But it’s always best to dig through the code yourself to find out which functions do what.

    rich! @ etiviti
    Participant

    friend count is stored in the wp_usermeta table ‘total_friend_count’ so you may need to manually reset those

    there is a function friends_get_total_friend_count( $user_id = false ) { – maybe a quick loop over your user_id(s) to update the wp_usermeta table. Unless something already exists for a better recount (maybe a plugin idea) – for which i’ll wait for @r-a-y to correct me on ;)

    #78596

    In reply to: New to buddypress

    r-a-y
    Keymaster

    Here are some short answers to your questions:

    1. A custom plugin is needed for this. Or you could use an auto group join plugin.

    2. Could try modifying the group template in your child theme to add a forum loop.

    3. Read this – https://codex.buddypress.org/how-to-guides/changing-internal-configuration-settings/

    4. Requires a custom plugin. Look at the Groups API – https://codex.buddypress.org/developer-docs/group-extension-api/

    5. What do you mean by this? Adding member information? If so, use BuddyPress’ xProfile setup located in the WordPress admin area.

    6. You’ll have to code one yourself. There was an old plugin by Manoj Kumar that you could use as a reference point. Will need updating.
    http://manojkumar.org/user-import-for-buddypress/

    #78594
    kagliostro
    Member

    I don’t know why, but WP-FB-Autoconnect (also this update version) doesn’t work for me: and there is only one other person that seem to have my same problem.
    It’s a tragedy :((((

    #78591
    @mercime
    Participant

    Yes. In fact, those can be already done on WP/MU end.
    – set role of members as contributor so that nothing will be posted until you approve it – https://codex.wordpress.org/Roles_and_Capabilities#Contributor
    – install membership plugin – e,g, http://www.primothemes.com/post/s2member-membership-plugin-with-paypal/
    – create customized custom fields – https://codex.wordpress.org/Custom_Fields

    #78590
    @mercime
    Participant

    What @r-a-y gave you works for me in bp-default child theme. What theme are you using? Do you have any plugin relating to navigation or pages installed in your WP?

    #78585
    paulhastings0
    Participant

    try @r-a-y

    Ozcar
    Participant

    Thanks r-a-y hadn’t heard of Mingle before, looks allright but not as cool as BP though, besides I wanna replace my Phpbb board with bbpress and that comes along with BP if i understood it correct? We’ve been looking for solutions like wp-united.com and even tried that once but couldn’t make it work, too many bugs… if i can run a forum and administer it within wordpress like everything else, that’s what I’d like to do.

    How do you mean disable futures in setup? The problem I’m having with 32MB memory limit is that I can’t even start the setup, if i could get through it, there’s a chance the installation would work anyhow…. at least that’s what we (me and my programmer) think…

    rossagrant
    Participant

    Page Navi only works with wordpress and doesn’t alter the standard bP navigation unfortunately. If someone could make it work with BP too then that would be awesome.
    @andy any chance of the naviagtion being improved in this way?

    #78577
    paulhastings0
    Participant

    I’ve got another question along the same lines for educational groups. Let’s say that we’ve got a bunch of groups on our site but we want to restrict creating forums for only certain groups.

    E.g. I want the “Biology” group to have a group forum and to use the “Buddypress Wiki Compnent” plugin and “Group Documents” plugin. But I don’t want the “X-box Lovers from India” group to have these options.

    How would I go about doing that?

    #78573
    graphility
    Participant

    wp-content/plugins/buddypress/bp-themes/bp-default/_inc/css/default.css

    I’m running buddypress 1.2.3 on WordPress 2.9.2, and I’m pretty sure the install shouldn’t matter much… Keep looking.

    #78571
    r-a-y
    Keymaster

    This is probably because you have a folder called “register” in the root of your website.

    If you do not have anything under this folder, please delete it.

Viewing 25 results - 52,326 through 52,350 (of 69,016 total)
Skip to toolbar