Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 32,976 through 33,000 (of 69,210 total)
  • Author
    Search Results
  • #130238

    In reply to: Multiple Account Types

    jaimebib
    Participant

    Anybody got that code to work? I tried to impliment it but cant seem to figure it out… Is there a plugin in progress? @dtay1984 Did it work for you?

    Paul Wong-Gibbs
    Keymaster

    Because that plugin hasn’t been updated since September 2010? https://wordpress.org/extend/plugins/buddypress-private-community/

    #130234
    Lethality
    Member

    You install it just as you would without BuddyPress. No difference. At least in my experience :)

    Tux Kapono
    Participant

    Actually, I did. She was wondering if there were more obvious solutions than what she could think of. Though she mentioned that the listed solution only works if you don’t ever have a different field name.

    Attached is a screenshot of what I really was hoping BuddyPress would have, a standard Ning feature, which allows you to select ‘private’, so the answer will only be visible to you and other administrators: http://csplacemaking.com/images/profile-questions.png. This is the ideal solution.

    #130227
    abysshorror
    Member

    @ChrisClayton you are a genius, man !
    It worked out of the box :D

    Quick question:
    I’ve added your code to functions.php and it loaded perfectly, but I’d like to turn it into a function (so it’s a little less messy :)). What hook should I use ? (I mean which `add_action()` )

    Thabk you so much again !

    #130220
    Hugo Ashmore
    Participant

    @Dope-Sheet as was mentioned on another thread please start a new topic on your issue it’s not good forum nettiquette to tag onto other peoples unrelated posts.

    Closing this thread.

    #130219
    aces
    Participant

    @dope-sheet

    Please start a new topic for new or different issues?

    https://buddypress.org/community/groups/buddypress-private-community/home/ is listed as incompatible with 1.5+ in Aug 2011 on https://codex.buddypress.org/releases/plugin-compatibility/ (although the error there is wrong) and doesn’t appear to have been recently upgraded

    #130218
    Dope-Sheet
    Member

    Can anyone tell us why this message appears after install in plugins>>>> Fatal error Call to undefined function bp_core_redirect() in /home/*******/public_html/*******wp-content/plugins/buddypress-private-community/mm-buddypress-private-community.php on line 386 ?? also crashes whole site…Thanks

    #130215
    Paul Wong-Gibbs
    Keymaster

    Lots.

    #130214
    pskmaster
    Member

    To add to that, when I use the normal/default BP template the groups section does display however the groups forums don’t display and are inaccessible via direct URL, clicking on new topic etc. doesn’t work either.

    #130079

    In reply to: Mobile status updates

    re: buddystream – brilliant, that should enable members of a BuddyPress use a phone to update stuff.

    Many thanks Chris for your fulsome and prompt answer to my questions.

    @mercime
    Participant

    You’re welcome. And, you are right, my bad. I’ve corrected the code above. Do add the less than symbol “

    #130209
    pskmaster
    Member

    Paul,

    Thanks for your reply.

    When I upgrade the BuddyPress this is the error I receive in the groups forum section:

    Fatal error: Call to undefined function groups_total_forum_topic_count() in /usr/local/apache2/htdocs/wp-content/plugins/buddypress/bp-forums/bp-forums-template.php on line 157

    Also, the gravatars in the members section also stop to display anymore. We’re using WordPress 3.1.2, I don’t want to upgrade WordPress due to compatibility issues with other things that are running.

    Thanks for your help.

    #130207

    In reply to: Mobile status updates

    @ChrisClayton
    Participant

    Firstly, As Modemlooper (the author of BP mobile) stated here
    https://buddypress.org/community/groups/creating-extending/forum/topic/using-bp-content-api-to-create-an-iphone-app/

    “BuddyPress has no API for external communication. It was created before the mobile scene took off and now apps have become the norm. You could load web pages in a native app that were optimized but it wouldn’t be 100% like a native app. You could also create your own json API.”

    Secondly, since when has StatusNet supported SMS’? SMS’ are very difficult to do and will need to be done on a site-by-site basis by yourself… it really is impossible to do properly as an opensource thing as you will need to have mobile address’ in all sorts of weird countries and some way to distinguish between sites.

    eg. i sms 0445493509485 with what i’m doing, but where does it go? I cant see how sms would work in an opensource project. Even twitter has trouble supporting every carrier…

    RE “StatusNet (and kin) has excellent client support – could it be used as a middleware to BP? Or could Twitter be used?”

    Nothings around for statusnet, is their license even compatible with wordpress’ gpl? but you could use twitter via https://wordpress.org/extend/plugins/buddystream/

    #130206
    cblack42
    Member

    Oh. Ha. That’s what I get for staying up too late last night. But yes, it is http://thereisnoeasterbunny.com. Thanks @mercime!

    (and sorry if that news made anyone cry!)

    #130205
    neodoxa
    Participant

    Thank you SO much for the reply! Here are the codes…

    Header: http://pastebin.com/eHZER4us
    Index: http://pastebin.com/9Z8xxqGe
    Page: http://pastebin.com/niyjCMJF
    Sidebar: http://pastebin.com/w29NwLh4
    Footer: http://pastebin.com/hcEqrCps

    #130204
    Hugo Ashmore
    Participant

    This isn’t really a question for BP, Users and DB is WP stuff; BP just rides on the back of so to speak.

    I have run across sites that have a user base running into the tens of thousands so I don’t think there is a huge issue, but check over on WP support.

    #130203
    caveman92
    Member

    Here’s the code I used; It worked somehwat, but was giving me the same view count for each topic post. I got the sense that buddypress topics all have the same post id… that’s probably why it was giving me the same count for all… any thoughts?

    THIS WENT IN FUNCTIONS.PHP
    function getPostViews($postID){
    $count_key = ‘post_views_count’;
    $count = get_post_meta($postID, $count_key, true);
    if($count==”){
    delete_post_meta($postID, $count_key);
    add_post_meta($postID, $count_key, ‘0’);
    return “0 View”;
    }
    return $count.’ Views’;
    }

    function setPostViews($postID) {
    $count_key = ‘post_views_count’;
    $count = get_post_meta($postID, $count_key, true);
    if($count==”){
    $count = 0;
    delete_post_meta($postID, $count_key);
    add_post_meta($postID, $count_key, ‘0’);
    }else{
    $count++;
    update_post_meta($postID, $count_key, $count);
    }
    }

    THIS WENT IN THE INDIVIDUAL FORUM-TOPIC FILE
    Note that I put open/close bracket for triangular brackets:

    open bracket
    ?php
    setPostViews(get_the_ID());
    ?
    close bracket

    AND THIS GOES WHERE I WANT THE NUMBER OF VIEWS TO SHOW:
    open bracket
    ?php
    echo getPostViews(get_the_ID());
    ?
    close bracket

    #130202
    snowlas
    Participant

    Okay, something else I just noticed.

    If I go into BuddyPress in the Dashboard, and go to Pages, I can individually click view on each option and I can see the pages. They build fine.

    I cannot get my buddy press header links to work. I.E. Going to My Account>Activity or My Account>Profile. Those pages end up white.

    #130201
    snowlas
    Participant

    Bump. I need help with this. Right now buddypress is broken on the site and I want to get it back up and running.

    #130195

    Oh, I found on the plugins page, under Network, buddypress listed there

    #130194

    I downloaded the version 1.2.10 on a try to recover from the problem, well, the issue got fixed, but than Im back to the same point.. not able to register new user…

    I did another try on register a new user from the form on the frontend, it generated a code, but I never got the email, not wordpress shows there is a new user request. even a query to the database shows the info I added to the new user.
    I sent an email on the contact form to check if I may have issues on my email side on the host, but the email was sent successfully…
    Any idea what may be happening here?

    Is it possible to remove db tables from buddypress, uninstall the plugin, install a new one and than, restore the old tables?

    #130188
    Hugo Ashmore
    Participant

    @DJPaul Interestingly?

    in my browser output:
    `

    `
    width/height attributes having been set in functions.php:
    `
    define ( ‘BP_AVATAR_FULL_WIDTH’, 450 );
    define ( ‘BP_AVATAR_FULL_HEIGHT’, 450 );
    `

    So it seems as the call for the avatar is a function with params in membere-header.php `bp_displayed_user_avatar( ‘type=full’ )` we are actually forcing conditions to be re parsed and thus picking up my constants in functions.php? however I expected to see somewhere in ‘bp-core-avatars.phh or ‘bp-members-template.php’ a point at which we check for the constants again after the initial setting of them but failed to work out how the function ‘bp_displayed_user_avatar( ‘type=full’ )’ is actually reading the constant. Either I am mis-understanding what’s happening here or I scanned code too quickly and missed what I was looking for.

    Ok solved 90%. Can I send an image to show the imperfection?
    …..because I do also the modification of style.css …I have copy the block on the website and paste at the bottom of the duotive-three style.css ….but nothing happen!!
    Another thing is …when I go for example to “My Account” > Setting > General ….I can’t see the page Member, but before my avatar image it is write:
    `

    `

    Maybe because I paste on the 16 files:

    `div class=”page”> without < `

    Let me know
    (Thank you so much you can’t image how your replies are important for me)

    #130184

    Hi folks. thanks for the answers!

    I did rename the folder (did back up of files and db) and installed new BP. but I got the following error

    `buddypress Fatal error: Call to undefined function show_admin_bar() in /home/storage/5/4c/0d/cnastrologia/public_html/site/wp-content/plugins/buddypress/bp-core/bp-core-buddybar.php on line 585`

    I’m not running multisite also…
    So guys any idea? am I holding a bomb? :-p

Viewing 25 results - 32,976 through 33,000 (of 69,210 total)
Skip to toolbar