Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'questions'

Viewing 25 results - 1,551 through 1,575 (of 2,990 total)
  • Author
    Search Results
  • #129052

    @Chris If I could figure this out, I wouldn’t be here. I don’t have the skills to work this out on my own.

    I did not make a “silly” comment, and you saying “not my problem” is hardly helpful, and only proves that my comment was not silly, but true. I don’t mean to give you attitude, you haven’t done anything to me. It just gets really frustrating when everyone asks you the same questions over and over again. I realize that you don’t know that I have been asked to deactivate plugins countless times, and for that I’m sorry.

    I would just say if your going to take your time to try to help someone, having a laugh about their comments is the wrong way to start off.

    Thanks for trying, and have a good night yourself.

    #27342
    yooka
    Member

    Hi Guys,

    Few questions….. Sorry :(

    I have created a buddypress site on http://goo.gl/CZZ1j when I open it on Chrome, Safari and IE it is ok but when I open it on Firefox it goes to the right. Any idea why? I built my theme off using the Frisco one as a basis.

    Also is there a way to build an activity stream that shows yourself and just your friends like on fb? So far I just have my friends my posts don’t show up

    Any idea how to make the display picture enlarge when you click it so you can zoom in on the pic?

    #129008
    @ChrisClayton
    Participant

    Anytime, so – you can either enter what you want them to see between thoes lines, or; if you really want to redirect them you can use the bp_core_signup_user action

    Source: http://wordpress.stackexchange.com/questions/18301/redirect-after-registration-in-buddypress (untested)

    gary_mazz
    Member

    Hi,, I;m brand new to wp and bp. The first things I do is install the lastest and greatest and install group wiki and group chat, which don’t work. So, I decide to fix them and hope to return working versions to the community. As soon as I start, I find I’m in deep and drowning. I’ve looked at doc for days, most is out of date. I have four basic questions about bp.

    1) How are bp plugin HTTP POST requests routed to the plugin’s handler ? I’m not understanding how to define a handler, actions and filters on request dispatching.

    2) How is the url for the plugin constructed ? I seem there are at least 2 “root” methods. Which is correct to send requests to the plugin ? Is the the post handler appended to the url as an action ?

    3) Sending a POST to a plugin results in the web page returned in the result. Is that automatic ? How are responses generated ?

    4) I cannot seem to see any trace/debug/warnings anywhere, how Do I debug ? BTW>I’m on Win2008/IIS7. Not even php logs and I have all the php & wp debug and logging turned on.

    Cheers

    #27277
    marvc
    Participant

    Now that I have this site built I’m having a hard time wrapping my head around everything related to BuddyPress and how it should operate as a multi-network. So in my setup I have the following:
    WPMU, BP, BP Multi-Network, Networks+

    I have the following networks:
    Main Site: http://teamnu.net
    Network: http://active.teamnu.net
    Network: http://business.teamnu.net

    This continues for a current total of 6 more networks. What I need is for the following to be available:
    1. Multiple communities created to target areas related to that community. So the Active community will have groups which pertain to being Active. Same for business and the other network communities. So in other words I need for the groups to be isolated to that community.
    2. Each community provides the ability for users to register and purchase blogs, or groups, within that community. This will always be an option but I just want this feature specific to be available to that community.
    3. All user accounts are shared across the entire network resulting in a single sign-on.

    This is a totally new undertaking so bear with me as this is where things start to get a little hazy:

    1. The first thing I’m seeing is that when a user registers they don’t see groups from other communities in the registration form. So what I’m wondering is if there’s a plugin which will pull all groups from across the network and display them in the registration form regardless of which community the user registers with allowing for a true single sign-on? From the way things are looking now users would have to register multiple times to opt into the various network groups. Although I “think” I’m ok as I’m hoping to give users the option of picking what communities and groups within that community they’d like to join I just don’t know if this will become a annoyance. I know I want user dialog to be isolated to that community.

    2. If a user creates a new post on their blog by default it appears in their activity wall. I came across a Recent Network plugin which allows you to display the post on not only the blog but also within the community. The problem is that it pulls all info of the info which would normally be displayed on the wall. I just want the post to appear within the community. This way the post appears on the blog and within the community. Is there a plugin which allows this?

    This seems skittish but I’m trying to piece this together as I go along so again please bear with me as I do have more questions.

    notpoppy
    Participant

    I’m building a theme based on the Buddypress default theme.

    I would like to remove the ‘Home’ button from the navigation menu which is created using wp_nav_menu.

    I understand one way to do this is to replace the menu with a custom menu. However I would rather not use this solution as it would require me to manually build the entire menu on a site with a large and complicated page structure and alter it when I add or remove pages.

    The menus created using wp_nav_menu automatically reflect any changes in the hierarchy, which would be a preferable solution.

    I found a technique for removing the ‘Home’ button described here using this code in functions.php:

    `function page_menu_args( $args ) {
    $args = FALSE;
    return $args;
    }
    add_filter( ‘wp_page_menu_args’, ‘page_menu_args’ );`

    I have been unable to get this code to work although it seems others have had succes with it.

    I wonder if this is because of the additional arguments added to the menu through the Buddypress theme which calls the menu using this argument in header.php:

    `’fallback_cb’ => ‘bp_dtheme_main_nav’`

    And adds the following in the default functions.php:

    `function bp_dtheme_main_nav( $args ) {
    global $bp;
    $pages_args = array(
    ‘depth’ => 0,
    ‘echo’ => false,
    ‘exclude’ => ”,
    ‘title_li’ => ”
    );
    $menu = wp_page_menu( $pages_args );
    $menu = str_replace( array( ‘

    ‘ ), array( ‘

    ‘ ), $menu );
    echo $menu;
    do_action( ‘bp_nav_items’ );
    }
    endif;
    if ( !function_exists( ‘bp_dtheme_page_menu_args’ ) ) :`

    Can anyone suggest a solution to this?

    @ChrisClayton
    Participant

    i’ve never changed the ID of what blog buddypress runs on, but assuming it talks to wordpress the same way as having it on the root blog (which it should, and if it doesn’t it should be reported as a bug) then all your questions are a yes.

    1. Yes, activity stream tracks site-wide activity.
    2. yes, one username (it doesn’t modify the way WordPress Multisite runs much…)
    3. If you are using the bp-default them, then yes it does, if your using another theme then it wont by default. you will have to modify the theme (refer to bp-default theme for how it’s done their)
    4. I’ll leave the languages questions to someone else (i dont mess with doing things with different languages)

    #27191
    Volcomtoad99
    Member

    I have a couple questions relating to the Easy Albums plugin:

    1. Assuming a 5,000 member community, is it necessary to upgrade to a ‘pro’ Cincopa account? I would imagine the free storage provided will be rapidly filled by user uploads…

    2. Is there a way for a user to view another user’s music playlist and add a song/playlist to their featured albums? Essentially, say I like Joe’s running playlist, can I select to ‘add’ his playlist or a single song to my own? Or is there a way to include a link to itunes next to a playlist/song?

    I am thinking about using BP, but have some features I’d like my site to have.

    Thanks very much in advance for any feedback/info!!!

    David Veldt
    Participant

    Hello Everyone,

    I believe this topic has been asked before, and I’ve seen it on the WordPress forum but it hasn’t been resolved, so I wanted to bring it up again.

    I’d like to make my registration form a little more interactive. Meaning, different profile fields depending on which type of user you select at the beginning. On my site (an athletic site), users can indicate whether they are a player, coach, parent or instructor. If you are a player, I want questions pertaining to their position, for example, to show. If you are an instructor, you may be interested in displaying your company name or website and so on.

    Does anyone have any ideas on how to accomplish this? Currently, profile fields are heavily geared towards players and it seems awkward for other users. Any ideas would be much appreciated. Thanks in advance

    #27118

    Groups opening on the home (activity) tab is confusing as users write questions there rather than on the group forum. I’d like this to be deleted and the group to open on the forum tab. There were a couple of posts written about this that provide solutions that no longer work on 1.5. Does anyone have a simple solution for this?

    You’re help is very much appreciated.
    Guy

    #27107
    pickledlove
    Member

    I’m creating a site for a wedding company. They do weddings all over the world and have local stylists represent the company at the various locations. I’d like to use buddypress for the all the stylists to collaborate and post events and photos. So it would be more of a closed circuit community, not just anyone could join, the site admin would create the new user (stylist.domain.com). Questions: 1. How customizable is the users page? I’d like to make it look nice like it is their personal website. 2. The picture portfolio is very essential. I’d like there to be a photo gallery that a customer could filter down to location, type of wedding, or stylist. Also when a person clicks to view a stylists profile they have their own mini gallery with just their work. Is there is a gallery feature or plugin that handle something like that?

    #128330
    Haraldo88
    Member

    This a great discussion because I’m in Neononcon’s and Hysteriux’ shoes somewhat. I’m a web publisher who’s preparing to revamp an existing site to WP, and my potential devs are telling me I really need to incorporate BP as a major component. But I’m not clear about certain functionalities and if BP can really do what I need it to do. And I’ve looked at many of the examples from the links nicely given above (thanks!) and elsewhere, but still do not see my answers. So may I ask 3 very specific questions that can hopefully be answered by those here more experienced than me? Yes? Here goes…

    1. Can BP Groups have separate “discussions” (like forum threads) INSIDE the Group? Not one single thread but unlimited threads. Just like a Forum. Here’s a hypothetical situation: A Group called “Photo Critiques” where each User would submit photos in a separate thread within this group. And others can them comment and critique that User’s photos. In that thread. And there would be a Sticky thread at top explaining the instructions, etc. Doable?

    2. And each separate thread would have full photo uploading capability (or “side-loading” if photo is already housed somewhere). Doable?

    3. And there could be a dedicated Photo Gallery/Album for THAT Group as a whole. Doable?

    Is BuddyPress suitable this scenario?

    Many thanks for your valued input!

    #26995
    Haraldo88
    Member

    Hi! Three questions for anyone:

    (1) if I have a BP Group, can I have separate “discussions” (basically forum threads) INSIDE the Group? Not one thread but unlimited threads. The BP.org site says under User Groups: “Powerful public, private or hidden groups allow your users to break the discussion down into specific topics.” This sounds right but want to make sure before I make the move to BP.

    (2) And can EACH of these “discussions” or “threads” support robust photo/image submit functions? I’m talking about Browse/Local and external-URL link, both.

    (3) Can there be a dedicated Gallery for EACH Group (either at the Group level or at a higher level)?

    Thanks for your feedback, folks!

    H

    aces
    Participant

    The latest buddypress ( with bp-default theme ) can use the default wordpress menu, which is under appearance section of admin.

    Some web hosting requires an extra plugin for email. https://wordpress.org/extend/plugins/wp-mail-smtp/ has a useful feature that displays debugging information when sending a test email. Another plugin is suggested in https://codex.buddypress.org/troubleshooting/frequently-asked-questions/

    #127870

    lol…….I am a book of questions……but you’re right, this particular issue (I believe) is on the WordPress side, so I’m heading over to the WordPress forums to see if I can bang that one out……..

    SCNisHere
    Participant

    Colleagues,

    I have a large, complex site (thousands of articles, hundreds of authors and tens of thousands of users), built on DotNetNuke (a Windows-based CMS built with ASP.NET). I want to create its equivalent in WordPress. Badly. :-)

    I’ve just created a WordPress test site. However, being new to WordPress, I am having trouble making some key initial decisions about implementing WordPress, WordPress MU, and BuddyPress. My questions are laughably simple, I hope.

    I want the site to function as a social network, so I’ve installed BuddyPress. That part is easy.

    Here’s what’s tripping me up: On my DotNetNuke site, I have an article module (aka plugin) that is added to a page. The module let’s me have a roster of article contributors, all contributing their articles. I guess it’s analogous to a multi-author blog. I have set up the article module in three places on my site, each serving different purposes and having different sets of authors based on DotNetNuke security roles. When the author posts, his/her Profile page Journal is updated, and other social network things happen.

    So, what’s the best way to set this up in WordPress?

    Thanks for helping me with a basic question. Once I have more time with it, I’m sure I’ll be figuring this stuff out but right now, it’s tough to know the right way to go.

    #127419

    I am using Suffusion theme and have been all along.

    What I am trying to say is that when I used to go to my profile, there would be my avatar, my name, the answers to my profile questions a few tabs for settings, profile, changing avatar, etc. There used to be (unless I have entered the Twilight Zone) a tab there to go to the member directory page…which makes great sense to me. A member clicks over to someone’s profile via, perhaps, the “who’s online” avatar widget in the sidebar, they read that profile then they want to read more profiles, so they click the tab that used to be there to do so.

    I can make a menu link, but it just makes more sense for it to be in the profile section, doesn’t it? And wasn’t it there? The only place I’ve found it on these forums is on the forum index.

    Does that further understanding at all?

    #26706
    _td
    Member

    I’ve used the Group Extension API to store custom fields with my groups and these fields can be edited through admin through screens I’ve built. So that part’s done and working.

    So say I have a custom field called zip code. I want to have a custom form where you could enter a zip code and return all groups that have that zip code. But I want it to function the same way the Group search does on the default BuddyPress theme so it’s basically just altering the Group loop to output the list of groups (and it’s nice and AJAXy)

    I can build the form and front-end fine, but I’m not understanding where my backend code needs to go.

    So here are my questions:

    – Do I need to hook into groups_get_group to do this? I see in that function where I pass search terms, but I don’t know how to pass search terms if they’re custom database fields that I’ve created. So I’m assuming I need to write my own custom function to replace groups_get_group? I’m not sure where I need to start there.

    – I noticed the group search uses AJAX and calls wp-load.php and then somehow returns just the piece of HTML to replace the list of groups. Do I need to call a different action URL in my javascript?

    Basically, I think I need to write a hook into some function and I’m not quite sure where to start. I’m not afraid of writing code, and have written other small WP plugins, but I’ve never really done a hook like this before.

    Any help you could give me would be great. Thank you!

    #127350
    r-a-y
    Keymaster

    It’s important to know what you want to accomplish.

    Do you want to install both group forums and sitewide forums or just one of the choices?

    Try reading this tutorial:
    https://codex.buddypress.org/getting-started/installing-group-and-sitewide-forums/

    If you have any questions after reading it, please post them.

    #127275
    modemlooper
    Moderator

    JJJ you’re being too sensitize to the word “sucks”. I mean it sucks for ME.

    Yeah I was an admin in my plugin groups but 50% of support was posted in the general forums with now way for me to move or merge or close/resolve. This caused me to answer the same silly questions over and over because a user would go to that plugins forum and not find answer and instead of posting it would get posted in the third party general forums.

    My reaction is to Foxly stating that these forums are not so good for a serious support forum. Trolling through a bunch of garbage to get to serious issues is a waste of time that could be spent on development.

    Not a problem anymore, I’ve moved support and I’m using bbpress. Guess I’ll quit posting here then.

    nitinhemmady
    Member

    Yeah I saw that but I have questions with this. Which file do I put the code the author suggests in? There does not seem to be a mention of that.

    Thanks for posting.

    #26611
    abysshorror
    Member

    @modemlooper hi. First of all I’d like to thank you for this plugin :)

    I have a few questions tho:
    1) I have enabled privacy on my activity stream but if I mention an user who’s not a friend of mine he stills sees the mention and gets the notification. Also, the activity update shows up in `/activity`
    2) Could it be possible to adapt the plugin to use the bp-follow plugin ? I’d like to switch from friends to following/followers scheme

    Thank you very much again

    #126982
    Emily-G
    Member

    @simmonsstummer you should ask plugin-related questions in their plugin support group

    https://buddypress.org/community/groups/bp-album/forum/

    #126881
    aces
    Participant

    If the emails were not picked up by spam or junk mail filters, then your webhosting may need an extra plugin.

    See: BuddyPress isn’t sending out emails (eg. activation emails, email notifications) in https://codex.buddypress.org/troubleshooting/frequently-asked-questions/#register

    and / or: https://wordpress.org/extend/plugins/wp-mail-smtp/ (which has a useful debug feature)

    #26469

    I have installed the latest trunk of buddypress, and therefore I have the buddybar integrated in the wpp adminbar. And I have 2 questions, and hope anyone knows the answere.

    1. Do anyone know how to get the buddypress avatar to show up in backend too? Not only front end? Since in the dashboard, it is just the default wordpress avatar. Maby also the gravatar will show up there if the user is registered at gravatar (haven’t tested yet). But anyway, I would like to display the buddypress avatar here. Possible?

    2. The avatar images in the adminbar is bad quality. I know I had this problem for around a half a year ago, and got it fixed, but can not remember how. It was something about it used a tumbnail of the avatar, instead of resizing the full avatar. Someone know how to fix this?

Viewing 25 results - 1,551 through 1,575 (of 2,990 total)
Skip to toolbar