Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'questions'

Viewing 25 results - 1,001 through 1,025 (of 2,230 total)
  • Author
    Search Results
  • modemlooper
    Moderator

    Avatar upload is only after the user has activated their account. There is a trac ticket to add this function back but it might not get added.

    If you are wanting people to add an avatar when they log in. You can have the user get redirected to the change avatar page. This would have to be coded by you or a developer.

    You can add any profile fields to the members-loop.php go into that file and scroll down to this text:

    /***
    * If you want to show specific profile fields here you can,
    * but it’ll add an extra query for each member in the loop
    * (only one regardless of the number of fields you show):
    *
    * bp_member_profile_data( ‘field=the field name’ );
    */

    #143382
    WPwebbouw
    Participant

    Thanks for the reply. I noticed the search field in the top right corner but it seems to give no forum results. (I see no breadcrumbs btw.)
    So it is true, a forum with 28,000 topics and no search. I can imagine there must be tons of questions posted over and over again in different threads. I’m rather new to BP and have some questions that may have been posted before. I hope the mods won’t be too hard on me :-).

    #143113
    Hugo Ashmore
    Participant

    @forfurure Across all you posts to date it’s increasingly apparent that there is a real problem in being able to help you, I doubt now that this is really an issue with language translation, as I doubt that in any language translated or otherwise that this title makes any sense.

    Please stop and read you posts back before submitting and consider whether they make sense and present questions that we can understand and help with, and as mentioned on technical forums the title must reflect the nature of the problem / issue.

    garrickbs
    Participant

    @mercime links to the pages

    index http://pastebin.com/deCyBbCW

    header http://pastebin.com/BdHGeJ3d

    page http://pastebin.com/jF8TuVha

    footer http://pastebin.com/mv6VnWDx

    Post http://pastebin.com/Wmx06pm1

    I added ‘post’ because the theme does not have a sidebar file, theme description says it’s dynamic, the post file was the easiest to understand on how the sidebar works.

    the theme is too complicated, i’m only using it because the UI is superb and it’s responsive.

    this is the website i’m working on: http://inspire.org.ng
    theme page: http://themes.rubenbristian.com/?theme=ikaros

    thanks a million for your help, dedicating so much time and resources to questions, i salute sir/madam. Thanks again.

    @mercime
    Participant
    #142589
    @mercime
    Participant

    == you still are not taken to the registration page. Your redirected to your site’s home page. ==

    @laidir This happens when you go to the registration page while you’re still logged in. Log out first.

    Re: Forums set up -> Group Forums and/or Sitewide Forums. https://codex.buddypress.org/getting-started/installing-group-and-sitewide-forums/

    == She has not received the email follow-up ==

    @member-wp see Registration section https://codex.buddypress.org/troubleshooting/frequently-asked-questions/

    #142417
    oytamuah
    Participant

    Yes, check out this page:

    https://github.com/NoahY/q2a-flags

    It’s a script that’s suppose to do what I suggest (and they even have all the flag graphics in different sizes in the link) but I couldn’t activate the plugin on my site – I think you need to have this Questions2Answers thing installed…

    #141745
    Paul Wong-Gibbs
    Keymaster

    This is a bbPress question.

    There is a bug (or, perhaps more accurately, a missing feature) in the bbPress migration tool; it doesn’t properly keep track of what group the posts came from. If you did it today, it looks as though it works, but it doesn’t let you post new topics or reply. I’m not familiar with the roadmap for bbPress.

    I don’t know enough to answer all your questions, but I believe a goal is for Groups to eventually support multiple forums, but that time isn’t now.

    Asynaptic,

    We should set up something more formal then, perhaps you can put his contact information on here and anyone who comes across this post in the future can contact him.

    In the meantime, I think the best solution is as follows:

    1. Use a standard wordpress SEO plugin to modify the individual page SEO meta data.
    2. Install group forums.
    3. Utilize bbPress plugins and features for SEO.

    Then push the community to participate in group forum discussions for important questions and answers. It will allow more flexibility in posts anyways.

    #141316
    modemlooper
    Moderator

    Guys, this really is outside the scope of this forum as it pertains to a third party plugin. Someone may or may not answer these types of support requests. This support forum is for answering questions like “how do I set up the BuddyPress Pages”.

    s2member uses WordPress Roles and Capabilities: https://codex.wordpress.org/Roles_and_Capabilities

    Learn about how that works and then you can wrap any code you want hidden by s2member. Specificly user levels/roles. Google it ;)

    #141311

    In reply to: NING importer

    @mercime
    Participant

    There was a free plugin but it has not been updated for some time https://wordpress.org/extend/plugins/import-from-ning/ There have been many changes to BP since the plugin was released though.

    There’s a premium plugin http://premium.wpmudev.org/project/ning-to-buddypress-user-importer/
    which states it’s compatible with latest version. There’s a link to contact them on same page for any pre-sales questions.

    #141144
    newbie2011
    Participant

    Well, I tried to post to her group but, I think I posted to a normal forum. When I select forums the area is blank. Maybe I just don’t know how to use this site lol.

    #141143
    newbie2011
    Participant

    @Roger Coathup – sorry didn’t realized that I should have posted seperately, will do and ash other questions on the wordpress forums, thanks

    #141137
    Roger Coathup
    Participant

    You should ask these as separate questions – the first two issues are general WordPress (not BuddyPress), so best asked on the wordpress.org forums.

    Post issue 3 as sep question on here, and issue 4 you could ask to @pollyplummer on her group for the plugin

    #140915
    @mikey3d
    Participant

    I found the problem. When I change the theme to bp-default and the link in the Group Directory is working. But oh boy, it is not theme it was the function.php that I add @boonebgorges codes is not working:

    What’s the easiest way to change the default landing page for BuddyPress groups?

    It was working in BP 1.6 but not BP 1.6.1. I deleted it. It works.

    function bbg_set_new_group_default_subnav() {
    global $bp;
    
    if ( bp_is_group() ) {
    // Set up your new default
    $new_screen_function = 'groups_screen_group_forum';
    $new_default_slug = 'forum';
    
    $parent_slug = bp_get_current_group_slug();
    
    if ( $function = $bp->bp_nav[$parent_slug] ) {
    if ( !is_object( $function[0] ) )
    remove_action( 'bp_screens', $function, 3 );
    else
    remove_action( 'bp_screens', array( &$function[0], $function[1] ), 3 );
    }
    
    $bp->bp_nav[$parent_slug] = &$new_screen_function;
    
    if ( bp_is_groups_component() && !bp_current_action() ) {
    if ( !is_object( $new_screen_function[0] ) ) {
    add_action( 'bp_screens', $new_screen_function );
    
    } else {
    add_action( 'bp_screens', array( &$new_screen_function[0], $new_screen_function[1] ) );
    }
    
    $bp->current_action = $new_default_slug;
    }
    }
    }
    add_action( 'bp_setup_nav', 'bbg_set_new_group_default_subnav', 999 );
    
    function bbg_set_new_group_default_action() {
    global $bp;
    
    if ( bp_is_group() && !bp_current_action() ) {
    $bp->current_action = 'forum';
    }
    }
    add_action( 'bp_setup_globals', 'bbg_set_new_group_default_action', 999 );

    Mikey3D

    #140913

    In reply to: BP.org – Us vs Them

    @chouf1 It wasn’t victimization or moral harassment. It was a response to being called a d–k.

    This isn’t about me. I can afford to hire developers, etc. I have been working with BP since it was in beta. I have answered questions here. I have contributed where I can etc etc.

    I am calm.

    I went out of my way to write this post in a productive way. It just seems I was talking on a completely different level. This isn’t about mods, locked posts or any of that other stuff. It was about the BIG PICTURE.

    #140911

    In reply to: BP.org – Us vs Them

    danbpfr
    Participant

    @FIQ, i believe i understand what you’re saying here and on other treads in the past days, but i’m affraid you use the wrong maner.
    “The hostility expressed just underlines my point.” sounds like victimization of yours, a kind of moral harassment against the BP users simply coming here for help or questions.

    Rome wasn’t buit in one day. Learning how to use BP needs time, try outs and heavy headaches in some situation. And similar to other situations in the real life, you can’t go faster as the lowest BP user.

    “My point” is your’s. Everybody here has his own point of view i guess. ;-)
    If you want to help on this forum, write answers.
    If you want to express your personal opinion, write on your own blog or elsewhere you want.
    If you haven’t the time or the skills to do so, read only.

    So what happens to you appened also to other i guess
    – discovering buddypress
    – learning the software
    – enjoying it
    – becaming familiar
    – viewing the dark side
    – burning down the idol (your actual statement ?)
    – taking back
    – viewing global
    – acting local

    So please, calm down, you’re not alone. :D

    #140834
    9087877
    Inactive

    @fiq I have to disagree. There has been plenty of occasions where non-developers pass down knowledge they have got from forum post to there support questions by non-developers as well as developers. If anyone has a solution to help someone out on the forum then by all means take the initiative to help. It doesn’t mean you have to be a developer to have a solution that was answered previously. It also doesn’t mean others won’t post a more practical solution. Basically what I am saying is most folks do a good job of paying it forward on the forum.

    #140832
    TWC01
    Participant

    Thanks guys, it does not have to be free :)

    #140819

    Of course they can and should be Googling that stuff, but we both know that is rarely the issue. The goal isn’t to educate the masses. The goal is to reduce the time it takes to answer those people by just posting a link.

    For example. Someone recently asked how to change the color of the buttons. Yes they need to know how to adjust BP css, but they also need to know how to use tools like Firebug etc. Perhaps some feel the second part is beyond the scope of these forums (and I tend to agree), but the goal is to reduce the time it takes to reply to each. By providing them with links to non-BP tutorials it would reduce the amount of follow up questions.

    As BP is made easier to develop you will be getting a lot more questions by people that don’t even know what css stands for. You have one of two choices, either try and help the helpless or turn them away frustrated by their ignorance.

    You are going to have to deal with these issues as BP turns from being a a plugin mostly for developers into more of a consumer assessable plugin.

    #140818
    Ben Hansen
    Participant

    looks like they have something for Q&A at wpmudev.org but most of those aren’t free.

    http://premium.wpmudev.org/project/qa-wordpress-questions-and-answers-plugin/

    #140804
    Aron Prins
    Participant

    Welcome to the BP forums ;)

    Firstly, I would like to know if I already have a wordpress site up and running and with a template that is not buddypress. If I install buddypress on that site, would it fit in with the current template or would I have to change my look?

    Answer: You will need to integrate the new BP templates with your current theme. The plugin BP Template Pack guides you through this process and is available fro FWEE! in the plugins directory ;).

    I am still finding my way around plugins/ addons but would normal wordpress plugins still work with buddypress?

    Answer: This depends on the plugin and it’s functionality – to my knowledge, trial and error is the bestway :P

    My site would be a Christian portal with community features. Where is best to get buddypress plugins from?

    Answer: https://buddypress.org/extend/plugins/

    News – This would import news from other sites via rss feed. : Use WordPress :)
    Ecards: Find a plugin or someone to make it for you.
    Directory Mod: Maybe you can modify the Portfolio plugin to do this :O?
    Q&A: Sorry, no idea
    Amazon Store: Run a search with our best friend, im sure he’ll hit you up with a good plugin ;)

    You’re welcome for as far as it helped :)
    Cheers,
    Aron

    #140433
    Roger Coathup
    Participant

    It’s purely voluntary – with reasonably regular input from one of the core developers.

    People will answer questions that take their fancy, or where they can provide useful feedback (and sometimes when they can’t) — most reasonable questions will get a response within 24 hours or so.

    I’ve given a little feedback on your other question [tbh — including all that info about your setup tends to distract from your question — I know it’s in the forum guide, but just sticking to a minimum stops your post looking intimidating! Don’t tell anyone I said this]

    #140315
    synergywp
    Participant

    Well… I’m running a site that the members would like to know the admin is active on… responding to questions, posts, etc. It would be like coming here and finding the developers never talk on the forums. So, it’s simple… Someone knows 1/2 of the equation to enter my admin account. Just like on here, I know 1/2 the equation to get into your account. I’m not a hacker by any means, but there are others out there who like to do malicious things to sites just for the hell of it. I have customers involved, so if someone hacks my site, that makes me look very bad. That’s all. I just thought I would ask.

    I know in a response you mentioned googling methods to help secure WP. Well, I know from several years ago about making a database edit to the username for the original admin. This was before you could choose the first admin’s username. This made very good sense to me now because now its like you almost need 2 passwords. But now, with the way this is all implemented in BP, and without a work around, changing “admin” to something else is useless.

    The only other thing I can think of would be to just make another account that is an Editor or similar role and only do posts on that. This way they won’t be able to access things like user info, etc.

    Didn’t mean for this to blow up, just thought there might be a simple function to call. thats all :) Thanks for the interest.

    #140254

    In reply to: Remove the Themes Page

    PS
    I don’t mean to be negative, but you all know what I’m talking about. Far too much developer time is spent answering questions by people that think installing a plugin will make them the next Facebook. BP should still be focused on developers, not people looking for shortcuts. Perhaps one day it can become a plugin for the masses, but we are far from it now. Sorry for the rant, but I think it’s the truth.

Viewing 25 results - 1,001 through 1,025 (of 2,230 total)
Skip to toolbar