Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum Replies Created

Viewing 25 replies - 1 through 25 (of 85 total)

  • Korhan Ekinci
    Participant

    @korhanekinci

    is there no one with such interest?


    Korhan Ekinci
    Participant

    @korhanekinci

    @JordashTalon, how did you get it to work? I have wp 3 and latest bp with default bp theme. I am working on this for the past 3 days and no success!


    Korhan Ekinci
    Participant

    @korhanekinci

    Thanks @el_terko. It worked for the first login and never after.

    When i login it through wp-facebook, it logs in and then after 3 seconds automatically logs out.


    Korhan Ekinci
    Participant

    @korhanekinci

    Thanks for your help @r-a-y.

    I will try to contact Justin Klein and hopefully he can help me. I will post here if something new comes up.


    Korhan Ekinci
    Participant

    @korhanekinci

    when i try to login using fb, i get “page not found” for: “/wp-content/plugins/wp-fb-autoconnect/_process_login.php”

    Yes, all files of the plugin are uploaded.

    I checked the box in plugin settings: “Show full log on error”
    there is nothing shown


    Korhan Ekinci
    Participant

    @korhanekinci

    Actually, i do use the bp default theme.

    It directs to:
    /wp-content/plugins/wp-fb-autoconnect/_process_login.php


    Korhan Ekinci
    Participant

    @korhanekinci

    Thanks @r-a-y.

    I tried working on this plugin and could not get it to work on my website. I get “page not found” when i try to login through fb-autoconnect. I have a single blog with activity stream only (no groups, no forums). I use “fb like” plugin and just in case disabled it and still did not work.

    Justin says he is not giving support with the plugin.

    Any ideas?


    Korhan Ekinci
    Participant

    @korhanekinci

    @nuprn1 thanks so much! I tested it and works!

    Just one thing though, activity stream now shows comments of registered users only (which is ok), but for example anyone can post comment to my blog, is there a possibility that anonymous users comments also appear in the activity stream?


    Korhan Ekinci
    Participant

    @korhanekinci

    Any ideas please?


    Korhan Ekinci
    Participant

    @korhanekinci

    And to hide the dropdown filter box here is what i added in my child theme’s style.css:

    #activity-filter-select { display: none; }


    Korhan Ekinci
    Participant

    @korhanekinci

    Hello,

    Thnx Roger. I did make some research and found this post:
    https://buddypress.org/community/groups/creating-extending/forum/topic/how-to-add-per_page35-without-messing-up-load-more-link/

    Since I also have this code in my activity-loop.php:
    php if ( bp_has_activities( bp_ajax_querystring( ‘activity’ ) ) ) :

    Thanks to @Boone :
    https://buddypress.org/community/groups/creating-extending/forum/topic/how-to-add-per_page35-without-messing-up-load-more-link/#post-45733

    I did this in my child theme’s function.php file:

    function my_custom_query_filter( $query_string ) {
    $query_string .= ‘&action=activity_update’;

    return $query_string;
    }
    add_filter( ‘bp_dtheme_ajax_querystring’, ‘my_custom_query_filter’ );

    It seems to work! I now just need to get rid of the dropdown filter boxes!


    Korhan Ekinci
    Participant

    @korhanekinci

    This is an interesting question, I also wonder the answer.


    Korhan Ekinci
    Participant

    @korhanekinci

    Jeff, you are right, I wanted to change full name of the person not username. I went to the dashboard and edited his name and chose the edited name in the dropdown as well.

    In site wide activitiy and in his profile there was no change, I also thought of editing the database but to be honest I was too lazy, so I just deleted him.

    I was expecting an easier solution but I guess we have to do it the hard way!


    Korhan Ekinci
    Participant

    @korhanekinci

    Great news! Thanks, Jeff.

    We all know bp 1.1 is coming out sometime this month, what is the best estimate for bp 1.2?


    Korhan Ekinci
    Participant

    @korhanekinci

    @Erich73, Actually members do have their own blogs, I just created another blog at “wall.mysite.com”. I used the bp-community-blogs plugin, so that members of my bp site automatically became authors of “wall.mysite.com” blog. This blog uses P2 theme, so it does actually look like wall or wire whatever you want to name it. They can write infinite number of threads.

    If you wish you can disable blog creation feature for your members from the admin backend, it does not matter.

    @mikhailjon, to emove the blog authors link from the admin bar, go to:

    wp-content/plugins/buddypress/bp-core/bp-core-adminbar.php

    Open bp-core-adminbar.php file and delete these lines:

    // **** "Blog Authors" Menu (visible when not logged in) ********
    function bp_adminbar_authors_menu() {
    global $current_blog;

    if ( $current_blog->blog_id > 1 ) {
    $authors = get_users_of_blog();

    if ( is_array( $authors ) ) {
    /* This is a blog, render a menu with links to all authors */
    echo '<li id="bp-adminbar-authors-menu"><a href="/">';
    _e('Blog Authors', 'buddypress');
    echo '</a>';

    echo '<ul class="author-list">';
    foreach( $authors as $author ) {
    $author = new BP_Core_User( $author->user_id );
    echo '<li>';

    echo '<a href="' . $author->user_url . '">';
    echo $author->avatar_mini;
    echo ' ' . $author->fullname;
    echo '<span class="activity">' . $author->last_active . '</span>';
    echo '</a>';
    echo '<div class="admin-bar-clear"></div>';
    echo '</li>';
    }
    echo '</ul>';
    echo '</li>';
    }
    }
    }

    And this line:

    add_action( 'bp_adminbar_menus', 'bp_adminbar_authors_menu', 12 );


    Korhan Ekinci
    Participant

    @korhanekinci

    I am using it here at: http://duvar.fenerbook.com

    I had to get rid of the “blog authors” link from the adminbar, because of too many authors and also page loading was slow.

    I have the wordpress video plugin (enabled site wide) which works well with p2 theme and member blogs as well!

    http://www.daburna.de/blog/2006/12/13/wordpress-video-plugin

    Hope it helps.


    Korhan Ekinci
    Participant

    @korhanekinci

    Nicola, yesterday, I read a post in wp forums that made me laugh for minutes. I want to share it with you, this also summarizes my skills:

    Not really a coder but I’m a star at cut and paste

    :)


    Korhan Ekinci
    Participant

    @korhanekinci

    Ok, I have a main blog (blog id 1), which I use it for news purposes. So I created a new blog at wall.mysite.com subdomain and activated p2 theme.

    I uploaded bp-community-blogs plugin (big thanks to Burt) from

    https://wordpress.org/extend/plugins/bp-community-blogs/ and activated it in the wall.mysite.com blog account.

    It is working as I want but the only problem is that when members enter the page first time the post box (from post-form.php) does not appear, it appears when they refresh the page or re-enter.

    How can this be solved? Any ideas?


    Korhan Ekinci
    Participant

    @korhanekinci

    Thank you for all the advices. I also think that I should just wait for a while as well.


    Korhan Ekinci
    Participant

    @korhanekinci

    Thanks Mohit, I will give it a try, and post the results here.


    Korhan Ekinci
    Participant

    @korhanekinci

    Rogercoathup, you can read the roadmap here:

    https://buddypress.org/about/roadmap/

    and new comings for 2009 here:

    https://buddypress.org/about/ (at the bottom of the page)


    Korhan Ekinci
    Participant

    @korhanekinci

    Just was starting on tdo mini forms plugin (uploaded and activated), my forum page disappeared! :)


    Korhan Ekinci
    Participant

    @korhanekinci

    Is there an option for the admin to globally change the rights of new and existing Members-Blogs (e.g. change “Administrator” to “Author”)?

    This is also what I am looking for…


    Korhan Ekinci
    Participant

    @korhanekinci

    yes RAY, ok, I understand, working on bp for hours each day and get confused with silly things sometime, sometimes solutions are very easy.

    I actually deleted the links manually from the theme files, but yes, I do see it now. Thought by disabling bp component setup would disable forums all together :)

    And thank you Gerikg!

    Yes, I think it is much more clean to have forums and groups separated. Let groups do what they want there, right? They have the wire and the group blogs (with bp 1.1 hopefully).

    It would off course be so cool to have wires supporting videos and images. Hopefully someone comes with a plugin for that soon!


    Korhan Ekinci
    Participant

    @korhanekinci

    I don’t think deactivating BP will be a problem.

    If you are in no hurry, within a few weeks there will be buddypress 1.1 and probably a new wpmu version. I would wait for that.

Viewing 25 replies - 1 through 25 (of 85 total)
Skip to toolbar