Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 51,526 through 51,550 (of 94,538 total)
  • Author
    Search Results
  • #25525

    Topic: Gifting system

    in group forum Requests & Feedback
    Davidof
    Member

    Hello

    I am looking for a plugin : that I can use for gifting system. For example one user can send a gift image to another user . but to send that gift user need a points .
    I found one but it doesnt work ( http://buddypress.org/community/groups/buddypress-gifts/ ) similar to this but for the latest version of buddypress.

    thanks :)

    #123879
    AmesEla
    Member

    @danbutcher I read your input . I have a project where we are collecting stories about youth experiencing the outdoors. I would love to invite you to participate either as a professor or to highlight student work that applies. Please take a look intooutside.org.
    :)

    #123878
    AmesEla
    Member

    @johnjamesjacoby Hi John, I am reading your comments and appreciate your knowledge and skills. I am about to also try to find your plugin. (I am not a programmer so most of the instructions went over my head – I do the design/art direction part).

    I have a project I took on as a probono to develop an mu site for a National Park Service Collaborative http://www.intooutside.org. I created a wordpress site with Buddy Press, and we are finishing the content integration and signing up users. There are a lot of ways I could use your savvy and help…as I am limited in my coding skills. The project is to inspire kids to get outside into the wilderness and to create a forum for them to share their stories.

    Are you available to talk about the site I am making and struggling with? If so, how may I contact you? You may send me an email via creative-entity(com)/contact.html
    MANY THANKS!
    ~ :) Amy

    PS @mikepratt @apeatling If any of you other guys have a desire to help, I would REALLY appreciate. This is a non-profit project and I am in need ….I can offer some design trade, music, dance..

    #25524
    spadora
    Member

    I would like to install buddypress into my theme without corrupting/ruining the site/theme which already exists.

    I have Agentpress 1.0 Theme on spadora.net
    How do I install your plugin without ruining the site/changing the theme?

    #25523
    MJ
    Participant

    Hi everyone, Buddypress groups directory displays as list. I want to have several columns say 3. Can anyone help me with some css code or where to change. Thanks a lot in advance.

    #123870
    meg@info
    Participant

    You can try SeoPress plugin (not seoPress for buddypress), the last version support buddypress.

    #123869
    aces
    Participant

    If your website email doesn’t work at all you may need an extra plugin. The codex suggests one here: https://codex.buddypress.org/troubleshooting/frequently-asked-questions/

    I use https://wordpress.org/extend/plugins/wp-mail-smtp/ which has a useful debugging feature….

    #123868
    candy2012
    Member

    I guess that was not the question …
    The issue is general and it applies to the fact that any user can see the activity stream of any other user, regardless if friend or not ..
    Maybe we should wonder why would they “make friends” in the 1st place? Is this the way a social network works? How is Facebook solving it? LinkedIn etc !??!

    None of these networks gives access to non-friend streams, only buddypress …. :(

    So having this issue solved once and for all, after having people pointing out to this issue for longer than one year with NO ANSWER would be really a big step forward for buddypress.

    Anyone having the solution!??!

    I have a site with BuddyPress installed: http://www.iqmindware.com

    I have about 50 people showing up as users in Admin, but only 2 show up as registered users in BuddyPress!

    1. How do I get the e-mail confirmation to work? It doesn’t work at present.

    2. How do users subscribe to the different groups (which I’ve called ‘Apps’)? I can’t figure out how these groups get subscriptions – and obviously my users can’t. They have been set up as ‘public’.

    I’d really appreciate any help here as there are a lot of users who want to participate in a forum!

    Mark

    #123864
    ntula_base
    Member
    peeld
    Participant

    I had the following code working in my theme’s functions.php file BEFORE I upgraded to buddypress 1.5, but since the upgrade, it doesn’t work. It doesn’t throw any errors, just doesn’t work :( Can somebody take a look and perhaps tell me why? I’ve been working with Christian in the s2Member forums and he suggested I post here.

    Thanks,
    Daisy

    /** s2member code */
    
    add_action ("template_redirect", "my_custom_capabilities", 1);
    
    function my_custom_capabilities ()
    
    {
    
    if (bp_is_groups_component() && bp_current_item() == 'goal-setting-and-mental-management' && !current_user_can('access_s2member_ccap_goalsettingworkingfall2011') && !current_user_can('access_s2member_ccap_goalsettingauditingfall2011')) {
    
    header('Location: ' . S2MEMBER_MEMBERSHIP_OPTIONS_PAGE_URL);
    
    exit;
    
    }
    
    else if (bp_is_groups_component() && bp_current_item() == 'runningcontacts-i' && !current_user_can("access_s2member_ccap_runningcontactsiworkingfall2011") && !current_user_can('access_s2member_ccap_runningcontactsiauditingfall2011'))
    
    {
    
    header ("Location: " . S2MEMBER_MEMBERSHIP_OPTIONS_PAGE_URL);
    
    exit ();
    
    }
    
    else if ( bp_is_groups_component() && bp_current_item() == 'agility-foundation' && !current_user_can("access_s2member_ccap_foundationclassworkingfall2011") && !current_user_can('access_s2member_ccap_foundationclassauditingfall2011'))
    
    {
    
    header ("Location: " . S2MEMBER_MEMBERSHIP_OPTIONS_PAGE_URL);
    
    exit ();
    
    }
    
    else if ( bp_is_groups_component() && bp_current_item() == 'hooligans' &&
    
    !current_user_can("access_s2member_ccap_hooligan"))
    
    {
    
    header ("Location: " . S2MEMBER_MEMBERSHIP_OPTIONS_PAGE_URL);
    
    exit ();
    
    }
    
    }
    
    /** end s2member code */
    #25518
    henrybcn
    Member

    What’s a good SEO plugin for BuddyPress 1.5.1? I am using All in One SEO, but it does not seem to work on BuddyPress pages. For example, on a BuddyPress page (admin/pages/) I add page title, description and keywords into the fields provided by All in One SEO, but these have no effect.

    #123856
    meg@info
    Participant

    Hi, see here

    http://bp-tricks.com/featured/give-every-buddypress-component-dedicated-sidebar/

    and you can use the functions is_XXXXX__page() to test for page

    https://buddypress.trac.wordpress.org/browser/branches/1.5/bp-core/bp-core-template.php

    bp_is_user_friends_activity()
    bp_is_user_groups_activity()
    ….

    … hope this help u:

    #123855

    I got the same issue. Buddypress is completely slowing down all my multisite network.

    Somebody can help here?

    #123854
    Paulie2012
    Member

    Hi mercime,

    I tried it with the discussion forum enabled and created different groups trying to post from each one from the groups forum page and the forums main page. Also tried the directory pages with the group name category selected in the dropdown each time.

    It’s the same symptoms as on here: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/what-the-heck-is-wrong-with-my-forums/

    I also tried uninstalling and re-installing the buddypress plugin and disabling all other plugins in case of conflict but no luck.

    Here is a link to my site: http://democracycommunity.com

    Have you heard of this problem before?

    Thanks

    #123850
    @mercime
    Participant

    == i have incerted the code to get the buddypress to display properly with my theme weaver 2 ==
    Are you referring to this weaver theme http://wpweaver.info/themes/weaver/?
    And if by “inserting code” you meant you installed BP Template Pack plugin and went through the BP compatibility process, did you use the second method for making the theme BP-compatible? like this https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/#compatibility

    == the members show up fine but when i add pluging to buddy press to give more features to buddypress 1. Links 2 Albums the pages when these are clicked in the member bar puts the sidebar below the content cant seem to find where to fix this ==
    If you use the second method (header-buddypress.php and sidebar-buddypress,etc) for BP compatibility process per link I posted above, then you won’t have to make further change to templates provided by Links/Albums plugins

    #123847
    @mercime
    Participant

    == When a topic is posted from a group this message is displayed in a red bar: “This group does not have a forum setup yet.” ==
    Go to that specific Group’s Admin > Settings and click “Enable discussion forum”

    == When a topic is posted and a group is slected from the Forums page this message is also displayed in a red bar: “Please pick the group forum where you would like to post this topic.” ==
    Not quite sure what you mean. Did you post the topic from the specific Group’s > Forum page > New Topic or did you post from Forum Directory page > New Topic page where you should select the group from dropdown provided?

    #123846
    kkradel
    Participant

    That works! Not exactly the way I want it, but the spacing between words is correct even if they are in a backwards breadcrumb looking way. I can live with it. Better than what it was!

    (Oh, yes, I realize I could flip it, but I’m just going to leave it : )

    Thanks @mercime !

    #25516
    Suzi Wilson
    Participant

    I am using WordPress 3.2.1 and Buddypress Version 1.5.1 along with s2member Pro Version 111029. The BuddyPress registration process seems to work fine until it comes to activation.

    The user gets the email they are supposed to get which send them to the Activate/key=? page with a key. That screen says: “Account Activated: Your account was activated successfully! You can now log in with the username and password you provided when you signed up.”

    However when the user log’s in they are sent back to the Activate page which says:
    “Activate Your Account Please provide a valid activation key.”
    Typing in the key gives the user an error message.

    Can someone tell me how to get the user out of this loop?

    #123843
    Paul Wong-Gibbs
    Keymaster

    Several ways, but check out this plugin: https://wordpress.org/extend/plugins/unconfirmed/

    To disable activations (I would strongly recommend against this – it’d let spammers access your site much more easily), put this code somewhere, maybe in bp-custom.php:

    `add_action( ‘bp_core_signup_send_activation_key’, ‘__return_false’ );`

    #123841
    Martins Igbinovia
    Participant

    Hello ppl,

    I have tried and followed the instructions as given above but my forum turns blanc …
    I was wondering if there is any techy around thats willing to help give it shot.

    The scenario is, I am trying to import a bbPress forum into buddypress.

    Thanks in advance.

    Paulie2012
    Member

    Hi,

    When a topic is posted from a group this message is displayed in a red bar: “This group does not have a forum setup yet.”

    When a topic is posted and a group is slected from the Forums page this message is also displayed in a red bar: “Please pick the group forum where you would like to post this topic.”

    Everything else works fine.

    I really don’t understand whats wrong, please help me fix this for my members.

    Thanks,

    #123840
    @mercime
    Participant

    Hello,

    I was reading a lot of things about buddypress and this is fortunately a lot of things to learn. But there its something I couldn’t figure out and maybe someone can bring some light into my darkness.

    I want to create a website that has general content and local content. I want to have a domain like gettoknow.com and a subdomain for every city. The FAQ, About and some other things are general and should inherit the content from the parent site. The child site should add some additional stuff. The theme should be the theme from the parent site. I would like to have a central user administration. The people should be able to use the other sites with the same login.

    Is this possible with buddypress in an easy way?

    In the forum there should be a part with the location specific stuff and one for the national things.

    Greetings, Vanessa

    #25510
    Eva Dillner
    Member

    I set up a new site with WordPress and BuddyPress. It’s for really non technical types, so really important that it be simple. I’m absolutely amazed that the profiles don’t cross link between WP and BP. I don’t know how many hours I’ve spent tweaking it so users only see one profile to fill out and update, the BP one. I hope I’ve succeded at http://shentherapies.org/wp/

    Not sure if it’s a WP or BP issue but I’m posting the request in both places: One profile please, with the ability to add fields and photo.

    Thanks!

Viewing 25 results - 51,526 through 51,550 (of 94,538 total)
Skip to toolbar