Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 23,451 through 23,475 (of 68,948 total)
  • Author
    Search Results
  • #152468
    Asynaptic
    Participant

    great video! one thing that I’m not clear on is caching. why can’t buddypress use a caching plugin like say, W3’s Total Cache?

    can someone please break this down for me?

     

    thanks

     

    #152462
    @mercime
    Participant
    #152458
    alphablossom
    Participant

    Thanks for posting the video. As a new user to Buddypress, it definitely helped give me a better understanding.

    I’ve been working with the trunk as well, currently working on a genesis child theme with buddypress and so far so good.

    I’ve found a few small bugs and I’ll report them when it goes to beta if they’re still around.

    Thanks for the great work!

    #152454
    Hugo Ashmore
    Participant

    What didn’t work? All you can do or need to do is deactivate the BP plugin then activate the theme you wish to use, you might though want to unpublish the BP specific blank pages.

    #152453
    msmithwisedu
    Participant

    Beautiful
    I installed trunk and have been having a blast with it. It is not immediately obvious that you have to install BBPress. Maybe put something in the setup wizard about recommending the install?
    Other than that, havent found any bugs except activating accounts doesnt seem to work. I had to WP Activate Users to manually activate my userbase

    #152446
    Ben Hansen
    Participant

    ya i guess you’re right probably something to create a trac ticket for but i’m not sure if that would be bbpress trac ticket or buddypress. maybe create a ticket for buddypress if they reject it then submit to bbpress.

    #152445
    Mitesh Patel
    Participant

    Thanks @ubernaut. Yes, that’s a nice idea, but I do want to use site-wide forums.

    The page structure is like this, but with more pages

    Home
    About
    Community
    -Forums
    -Groups
    -Activity
    Contact

    Anyway, I don’t think it’s going to be possible without some devine intervention :), as I noticed in testbp.org site, the ‘discussion’ menu is highlighted only when you select it (the page is forum-index). When you go any deeper (select a forum or a topic), the highlight get’s lost, so the issue is, the custom menu is not able to acquire/implement the hierarchy info, which may or may not have been provided by bbpress itself.

    The same problem is there with the link you posted as well. On the other hand, all the buddypress menus and sub-menus and sub-sub-menus can correctly highlight the parent ‘community’ page. So, it’s a bbPress/forum specific issue.

    #152444
    Famous
    Participant

    Thank you modemlooper.

    #152442
    Ben Hansen
    Participant

    sorry i’m not sure maybe someone else has a better answer but maybe try re-installing buddypress?

    #152440
    Ben Hansen
    Participant

    i could be wrong but i don’t think you actually want to create a page for site wide bbpress forums only for the group forums if you are using them. As you can see here:

    http://gotgame.com/forums/

    the parent menu item should be highlighted on that page as it should be for all sub menu items none of our buddypress pages are children of our community “page” which is actually just our members page.

    #152437
    member-wp
    Participant

    Hi, I tried that prior to the above. Tried it again when I received your guidance. Didn’t work.
    Any help is appreciated.

    #152434
    intimez
    Participant

    Can someone point me to the plugin used for the @ mention on buddypress.org shown below the person’s avatar?

    #152433
    indirakrishna
    Participant

    The present profile field visibility settings are not at all good and not working also.

    When we allow users to change the visibility it is changing the default visibility to ANYONE which is not at all useful.

    We cannot expect a user to change each and every fields visibility while he is filling up the registration form.. I hope the owners of buddypress look into this BUG which is seriously a issue for privacy of users,, and if there is some other plugging which can add some privacy strictly please do mention them here.

    And I am expecting @boonebgorges reply for this Bug as I guess he is one of the most best plugin developer in buddypress

    #152432

    In reply to: Missing ADD MEDIA

    @mercime
    Participant

    @pjfbncil If you deactivate BuddyPress, does the media button show up?

    #152429
    @ChrisClayton
    Participant

    I assume the errors in your div html are because of the forum software and they are fixed in your code?

    The only things I can think of are…

    1. it doesn’t like the iframe
    2. another filter is messing with it

    I’ll have a closer look at it in an hour or two and play around with it and get back to you.

    On a sidenote: BuddyPress provides something out of the box for what you require… if you paste in the url to the youtube video in the activity content – it should automatically embed it. Are you certain you require the shortcode?

    #152427

    In reply to: Missing ADD MEDIA

    pjfbncil
    Participant

    uploaded wordpress 3,5.1 zip downloaded from wordpress. unzipped manually installed mysql installed buddypress with default buddypress theme manually created pages. contributor does not have add media. author does so will use author. thanks for your time i give up.

    #152426
    linish
    Participant

    Hello all,

    I solved the issue by using the hook `wpmu_activate_user`

    Thanks for the tips 🙂

    #152413
    linish
    Participant

    Hello,

    I had created the paste of the code i had tried both in profile-loop.php and in

    functions.php

    `http://pastie.org/6050342`

    The code is working fine in profile-loop.php but showing blank result in

    functions.php

    #152412
    Ben Hansen
    Participant

    nice one thanks for sharing!

    #152404
    mischiefwizard
    Participant

    and now it seems the REPOST has disappeared, so here’s a better version:

    Hi guys,
    I just upgraded WP to latest version, and then after a long search found the CP 1.5 files and overwrote my 1.2.8 installation. Now to get it all working with my custom child theme Would love some help.

    I’m trying to implement the article at https://codex.buddypress.org/developer/releases/developer-and-designer-information/, and

    1) it says:

    >>>>>>
    You’ll also need to modify the following file in your WP theme:

    /wp-content/themes/YOUR-THEME/members/single/home.php
    Open up /members/single/home.php in your editor and add:

    <<<<<<<>>>>>In your functions.php declare the function like this:

    function bp_dtheme_enqueue_styles() {
    // Bump this when changes are made to bust cache
    $version = ’20110804′;

    // Default CSS
    wp_enqueue_style( ‘bp-default-main’, get_template_directory_uri() . ‘/_inc/css/default.css’, array(), $version );

    // Right to left CSS
    if ( is_rtl() )
    wp_enqueue_style( ‘bp-default-main-rtl’, get_template_directory_uri() . ‘/_inc/css/default-rtl.css’, array( ‘bp-default-main’ ), $version );
    }
    add_action( ‘wp_enqueue_scripts’, ‘bp_dtheme_enqueue_styles’ );
    <<<<<<

    But then I get a "Call to undefined function add_action() " error

    3) How do I ensure it will enqueue the .css file in my child theme directory?

    4) Do I need to find the developer notes for upgrading to buddy press 1.4 and 1.5 as well and make other changes to my child theme? Where would I find these? The above link just talks about BP 1.5 and 1.5.2

    5) I get undefined function error from my child them header calling

    a) "bp_dtheme_page_on_front()" function.:

    b) Call to undefined function bp_is_page()

    It seems these functions aren’t deprecated, so how can i ensure they get loaded properly?

    Thanks in advance

    David

    Mitesh Patel
    Participant
    #152397
    Mitesh Patel
    Participant

    I finally yielded, and messed up (so to speak) the function messages_screen_compose, adding conditional custom redirects with if else statements like…

    `
    if(wp_get_referer()){//to check origin of form submission, returns false for self submission
    bp_core_redirect(wp_get_referer()); //custom redirect, as this isn’t self submission
    } else {
    bp_core_redirect( bp_loggedin_user_domain() . $bp->messages->slug . ‘/view/’ . $thread_id . ‘/’ );// this was originally there, for submission from original php file
    }
    `

    As I think the issue is ‘resolved’, for time being, I should document the solution here.

    I intended to use buddypress private messaging as feedback form, with various feedback options like Question, Suggestion, Feedback etc. Thus, I created corresponding users (Question, Suggestion, Feedback etc.) who will receive the feedback. The idea is super-elegant from my purpose, as not only the submissions be automatically segregated and stored in database, but responding to the feedbacks would be as simple as responding to PM, all without the hassle of email, spam etc. An added benifit is, users can draw attention to various issues site wide by @mension, like :@question What about this?”

    So I tried to imitate the buddypress compose form, and I succeeded, except the redirect problem as described here.
    https://buddypress.org/support/topic/create-a-feedback-form-using-buddypress-messaging-functionality/

    What I was doing was, creating a duplicate form, but calling the original form action (fooling buddypress 🙂 ). I did so, because, I don’t even know how to submit the copy-pasted form I created, and get the same thing done as the original compose.php was doing when it called itself (self submission).

    Anyways, this hack with unforgivable modifications in buddypress files works beautifully. I feel I’ll have to go through the plugin route finally though, as this is make-shift arrangement (but will work as long as I don’t update the buddypress plugin 🙂 ).

    Thanks shane for your help.

    #152393
    shanebp
    Moderator

    A plugin can be very simple.
    For example, maybe all it does is over-ride a pluggable function.

    You can try it in bp-custom.php – which I believe is loaded with all the plugins.
    So it might be loaded before pluggable.php is loaded, therefore it might work.

    #152387
    Mitesh Patel
    Participant

    Never mind, the $location refers to the url of the page where we will be redirected afterwords.

    Will post back, If I ever get it done.

    #152382
    Mitesh Patel
    Participant

    Thanks @shanebp. A couple of questions before I mark this thread resolved one way or other.

    It seems a whole lot labour to write a plugin (which I’ll have to learn first 🙂 ) for a solitary redirect, but can I not do it in bp-custom.php, which seems to be for the same type of purposes, and conveniently resides in plugins directory?

    Secondly, $location refers to the url of the page from which action originated as opposed to the location where the page will be redirected afterwards, right? I checked the referred wp codex page before I asked the earlier question, but couldn’t figure out what it meant.

Viewing 25 results - 23,451 through 23,475 (of 68,948 total)
Skip to toolbar