BuddyPress Test Drive

  • Community
    • Activity
    • Groups
    • Members
  • News
  • About
  • Support
Profile picture of Igor Developer

Igor Developer

@igorg active 2 years, 0 months ago
  • Activity
  • Profile
  • Friends 1
  • Groups 7
  • Forums
  • Personal
  • Mentions
  • Favorites
  • Friends
  • Groups
  • Profile picture of techkapil

    techkapil posted an update: 1 year, 8 months ago

    Testing activity feed

  • Profile picture of techkapil

    techkapil posted an update: 1 year, 8 months ago

    @sinoptik ;) test test

  • Profile picture of techkapil

    techkapil posted an update: 1 year, 9 months ago

    test oembed

    http://www.youtube.com/watch?v=Pm9L60YBj3s

    • Profile picture of techkapil
      techkapil replied 1 year, 9 months ago

      no bp-oembed plugin !?! ;)

  • Profile picture of techkapil

    techkapil posted an update in the group Group logoBuddyPress Testers: 1 year, 9 months ago

    test test

  • Profile picture of techkapil

    techkapil posted an update: 1 year, 9 months ago

    No limit to replying comment. Isn’t there any holy way to restrict the nested replies? Or should I control them thru child theme?

  • Profile picture of techkapil

    techkapil posted an update: 1 year, 9 months ago

    test

    • Profile picture of techkapil
      techkapil replied 1 year, 9 months ago

      test

      • Profile picture of techkapil
        techkapil replied 1 year, 9 months ago

        test

        • Profile picture of techkapil
          techkapil replied 1 year, 9 months ago

          test

          • Profile picture of techkapil
            techkapil replied 1 year, 9 months ago

            test

            • Profile picture of techkapil
              techkapil replied 1 year, 9 months ago

              test

              • Profile picture of techkapil
                techkapil replied 1 year, 9 months ago

                test

                • Profile picture of techkapil
                  techkapil replied 1 year, 9 months ago

                  test

                  • Profile picture of techkapil
                    techkapil replied 1 year, 9 months ago

                    test

                    • Profile picture of techkapil
                      techkapil replied 1 year, 9 months ago

                      test

                      • Profile picture of techkapil
                        techkapil replied 1 year, 9 months ago

                        test

                        • Profile picture of techkapil
                          techkapil replied 1 year, 9 months ago

                          test

                          • Profile picture of techkapil
                            techkapil replied 1 year, 9 months ago

                            test

                            • Profile picture of techkapil
                              techkapil replied 1 year, 9 months ago

                              test

                              • Profile picture of techkapil
                                techkapil replied 1 year, 9 months ago

                                test

  • Profile picture of techkapil

    techkapil posted an update: 1 year, 10 months ago

    test this url (plz ignore)

  • Profile picture of techkapil

    techkapil posted an update: 1 year, 10 months ago

    Back to BP again…
    Feeling like a home ;-)

  • Profile picture of techkapil

    techkapil posted an update in the group Group logoBuddyPress Testers: 1 year, 10 months ago

    Is there any way to tell the plugin(code) which is existing buddypress version?
    Or should I rely on bp-core-db-version meta_key???
    BP_VERSION seems not useful and bp_init is not there in older versions :-(

    • Profile picture of techkapil
      Andy Peatling replied 1 year, 10 months ago

      Why is BP_VERSION not useful? That will tell you the installed version.

      • Profile picture of techkapil
        techkapil replied 1 year, 10 months ago

        Opps , I guess I did some foolish mistake…
        Thanks Andy :-)

  • Profile picture of techkapil

    techkapil posted on the forum topic Can’t I create forum thread without posting it in group?? in the group Group logoBuddyPress Testers: 1 year, 11 months ago

    I was searching for the same and found following threads useful…

    http://buddypress.org/forums/topic/external-and-group-use-of-bbpress

    http://buddypress.org/forums/topic/how-to-create-a-forum-that-isnt-associated-with-a-group

    and…[Read more]

  • Profile picture of techkapil

    techkapil joined the group Group logo1.2 Theme Test Group 1 year, 11 months ago

  • Profile picture of techkapil

    techkapil posted on the forum topic How to redirect to the user profile page when user logs in (Not into the dashboard) ? in the group Group logo1.2 Theme Test Group: 1 year, 11 months ago

    function oci_login_redirect($redirect_to, $set_for, $user) {
    $new_redirect_to = bp_core_get_user_domain($user->id);
    return $new_redirect_to;
    }
    add_filter(‘login_redirect’, ‘oci_login_redirect’, 100, 3);

    • Profile picture of techkapil
      JOHN replied 1 year, 10 months ago

      Hi..

      Backend login(wp-login.php ) will redirects to the dashboard not to the front page. But in testbp.org is different. What Can I do for that?

      Could you please help me on this?

      I did not installed any plug-in to redirects or use any bp-custom.php file to redirects.

      How can I fix this issue?

      Thanks for your great help on this?

      Thanks,
      John

    • Profile picture of techkapil
      JOHN replied 1 year, 10 months ago

      Hi…

      Can we change the buddypress plug in child theme?

      For example:
      bp_core_new_nav_item(
      array(
      ‘name’ => __(‘Messages’, ‘buddypress’),
      ‘slug’ => $bp->messages->slug,
      ‘position’ => 50,
      ‘show_for_displayed_user’ => false,
      ‘screen_function’ => ‘messages_screen_inbox’,
      ‘default_subnav_slug’ =>…[Read more]

  • Profile picture of techkapil

    techkapil posted an update: 1 year, 11 months ago

    Any input on migration from 1.0.x to bp 1.2 ??

    • Profile picture of techkapil
      Ray replied 1 year, 11 months ago

      http://codex.buddypress.org/getting-started/upgrading-from-10x/

  • Profile picture of techkapil

    techkapil posted an update: 1 year, 11 months ago

    test

  • Profile picture of techkapil

    techkapil posted an update in the group Group logoBuddyPressDEV Developers' Community: 1 year, 11 months ago

    To add Custom component activity (like group), where should custom components activity be stored? in wp_bp_activity table with custom_component under ’component’ attribute OR a seperate table??
    Is there ’bp_wire_new_post’ kind of function (as it was in bp1.1.x) exist, through which I can send component name and table name??

    • Profile picture of techkapil
      techkapil replied 1 year, 11 months ago

      Ohh…
      Got it now :-)
      ’wp_ajax_post_update’ in ajax.php and ’bp_activity_add’ will do.
      If anybody looking for same, check out how groups activity is working.
      Cheers..! ;-)

  • Profile picture of techkapil

    techkapil joined the group Group logoBuddyPressDEV Developers' Community 1 year, 11 months ago

  • Profile picture of techkapil

    techkapil posted an update: 1 year, 11 months ago

    @amitks
    Welcome to Buddypress :-)

  • Profile picture of techkapil

    techkapil wrote a new blog post: This is test post 1 year, 12 months ago

    Great work by Andy and Team.

    • Profile picture of techkapil
      techkapil replied 1 year, 12 months ago

      Ohh…. Blog posts are also shown in activity…!!!

  • Profile picture of techkapil

    techkapil joined the group Group logoBuddyPress 1.2 Bug Reports 2 years, 0 months ago

  • Profile picture of techkapil

    techkapil posted an update: 2 years, 0 months ago

    Just finished my basic skeleton component for BP 1.2 RC…!

    • Profile picture of techkapil
      Tom replied 2 years, 0 months ago

      Tom posted a new activity comment: %s Would you be able to produce that skeleton component for download? The BP Skeleton Component plugin no longer works, and while I’m sure it is going to be updated soon, I need to start on something quickly!

      • Profile picture of techkapil
        techkapil replied 2 years, 0 months ago

        techkapil posted a new activity comment: %s @Tom , follow http://buddypress.org/forums/topic/code-snippets-storing-plugin-theme-files-in-the-plugin-dir-12

  • Load More

Please create an account to get started.

Who's Online

There are no users currently online

BuddyPress Test Drive

Welcome to the BuddyPress Test Drive. The purpose of this site is to let you try BuddyPress before you decide to use it.

Anything you post here is for testing purposes, and is subject to moderation and/or removal at any time. Don't post important stuff here. :)

Check out all the great plugins you can use to add new features to your own install.

Contact the Developers

If you have questions, ask: @johnjamesjacoby, @andy, @boonebgorges, or @djpaul.

Status

This site is running the most recent nightly development versions of BuddyPress and WordPress and should be considered mostly stable with a chance of rain.

WordPress 3.3-aortic-disection
BuddyPress 1.6-bleeding
bbPress 2.1-bleeding

Proudly powered by WordPress and BuddyPress.

    • WordPress.org
    • Documentation
    • Support Forums
    • Feedback
  • Log in
  • Register