Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 48,126 through 48,150 (of 68,969 total)
  • Author
    Search Results
  • #89092
    Roger Coathup
    Participant

    @jamieea – you might want to check this one out:

    http://www.dnxpert.com/2010/06/11/mark-blog-post-as-favorite-in-buddypress/

    For it to work, you’ll need to have control over the themes being used for the member blogs (as it requires some code adding to single.php to create the favourite / unfavourite button.

    Possible thoughts on enhancing this into something really special, borrowing ideas from del.icio.us: creating and sharing lists of favourites, annotating them with notes, and perhaps even allowing for links from outside the site to be added.

    PJ
    Participant

    There seems to be some sort of error. The badge preview is only a broken image icon. Has anyone else had this issue?

    #89089
    @mikey3d
    Participant

    When I have installed WordPress 3.0.1 and I clicked the “Hello world!” post and the title tag is fine like…

    Hello world! | My blog

    When I have installed BuddyPress 1.2.5.2 and I clicked the “Hello world!” post and the title tag is WRONG like…

    My blog | Home

    Who is the responsible the core of BuddyPress title tag that has no headlines every posts and pages? Did Matt Mullenweg know that your BuddyPress altered the title tags of WordPress?

    #89088
    PJ
    Participant

    I’m sorry but I I’m unable to install the plugin. It doesn’t seem to be a plugin… buddypress doesn’t recognize it at all. Any help?

    #89087
    Thorsten
    Participant

    Hi … more information I need, because I wrote above that the problem still exists.

    See my first Buddypress http://www.unitedcasting.de/ please. BuddyPress did not created directories or files for ‘acitivity’, ‘members’ or ‘groups’. I use Windows 2003 R2 Server in English with MySQL 5.1.46, PHP 5.2.13, WP 3.0.1 and BP 1.2.5.2. All WP Blogs work fine without any problems. Why does Buddypress do not work as it should? Where are the files behind the directories of BP? Does the BP plugin need special rights?

    Thanks for help!!!

    #89077
    pcwriter
    Participant

    @hnla

    I’m just very grateful that someone knowledgeable is investing the time and effort to help out a motivated noob :-)

    Thanks!

    #89073
    pcwriter
    Participant

    @hnla

    I may have found some clues here:
    http://adambrown.info/p/wp_hooks/hook/wp_get_nav_menus?version=3.0&file=wp-includes/nav-menu.php

    And from here:
    http://svn.automattic.com/wordpress/tags/3.0/wp-includes/nav-menu.php
    … there are these nifty tidbits:

    function wp_get_nav_menus( $args = array() ) {
    $defaults = array( ‘hide_empty’ => false, ‘orderby’ => ‘none’ );
    $args = wp_parse_args( $args, $defaults );
    return apply_filters( ‘wp_get_nav_menus’, get_terms( ‘nav_menu’, $args), $args );
    }

    function get_registered_nav_menus() {
    global $_wp_registered_nav_menus;
    if ( isset( $_wp_registered_nav_menus ) )
    return $_wp_registered_nav_menus;
    return array();
    }

    Looks like these functions should call whatever nav menus are set in the backend in 3.0 but, as I’m still VERY wet behind the ears when it comes to understanding what functions can actually do… :-(

    #89072

    In reply to: Hide profile field

    Anton
    Participant

    thanks @r-a-y

    #89068

    In reply to: Age and Gender

    Roger Coathup
    Participant

    This article shows you to calculate the age:

    http://code.hyperspatial.com/all-code/buddypress-code/buddypress-age/

    If you want to display the gender as an image, you can do it with a simple PHP if clause that checks your gender field and inserts the correct tag appropriately (or marks the field up with a class identifier), and style as a background image in your CSS.

    I suggest posting your “check for online” query as a separate forum post, so that it doesn’t get overlooked

    #89067
    imjscn
    Participant

    @hnla, I said “Click it” because it’s on the blog’s main navigation menu. If a visitor click this menu, it will go to the Introduction page.

    What you said is exactly what I want— “simply have the text/content you want with a simple link to the registration page and also a simple login, registered users will login and be directed to their profile pag”, but the plugin you mentioned does not perform like this. It works on the action of a user log in(click the log in page) and then redirect.

    #89064

    I need a Catholic version of this. How difficult is it to add a translation to this?

    #89062
    Thorsten
    Participant

    I’ve the same problem. After I changed the permalinks to ‘/index.php/%category%/%postname%/’ for running buddypress there is nothing behind ACTVITY, MEMBERS, GROUPS. I run a complete new WP 3.0.1 with buddypress 1.2.5.2. There is no Guide after the installation of the buddypress plugin. What’s wrong?

    Thanks for help!

    #89059
    Roger Coathup
    Participant

    @faisalmajeed – we have a similar need.

    Facebook allows this type of attachment for Photos, Videos, Events, Links and others.

    In our case, we want to allow users to attach PDFs and URLs. URLs can be typed directly into the update (although, the Facebook approach of making adding a link explicit is perhaps easier for the novice user – additionally the FB solution does clever things liking sourcing text and thumbnail options from the URL).

    Perhaps what’s stopping this in BuddyPress is that most of the attachment types we’d want are media related (images, videos), and BuddyPress doesn’t have core components to handle these.

    Is this a challenge for the developers of media plugins / components ( @foxly) to also augment the activity update boxes to allow attachments?

    Does the core system need to provide hooks / api that allows plugins to add attachment handling to the update boxes ( @johnjamesjacoby)? Perhaps it already exists, and I’m missing something obvious.

    Has anyone else addressed / thought about the issue of adding attachments to status updates in BuddyPress?

    #89056
    imjscn
    Participant

    @hnla, let me try if my understanding about the codes are correct or not:
    BP Redirect to Profile = force user to go profile page on log in. It’s not what I want to achive;
    Travel-Junkie’s code = Make all BP communit not accessable for outsiders, they can only access blog page. It’s not what I want;

    This is what I want: I have an Introduction page for outsiders. I name is “MySpace”. When logged in user click it, it goes to his/her profile. When outsiders click it, it shows the Introduction page and suggest him/her to signup.

    Now I see the “Redirects” not working because I need a dynamic URL(depends on user status) as the target URL.

    What to do?

    #89053
    imjscn
    Participant

    @hnla, logically, I can see his code leads to several posibilities, but coding is really an alien’s job for me :-)
    Since I got the plugin, I still need you help me figure out one critical answer– What’s the URL for a logged in user’s Profile?

    #89052
    Hugo Ashmore
    Participant

    @pcwriter oops sorry missed this post.

    That’s exactly what I was talking about and exactly what I had intended to implement but it probably got overlooked in the original thread, I spent a considerable amount of time reading through all the nav-menu files trying to see how these user added menu labels were referenced but couldn’t puzzle it out. I posted a topic on the WP support forums waited and waited re posted re phrasing the question but it was clearly too much for WP support to deal with ;-)

    I’m not happy with hardcoding the labels for custom menus it was never the real intention, I can try your code snippet but think I established that the menu name or slug isn’t available in that array, it’s more an admin dashboard object but I may be wrong. Just wish there was some serious documentation on the WP codex, at the moment two seemingly important functions are simply lacking any documentation

    #89050
    imjscn
    Participant

    @hnla, thanks for helping! This plugin doesn’t provide the function of redirecting to a welcom page for outsiders, but following the path, I found another plugin “Redirects” which allow for pointing a target page for outsider users. Many thanks!

    #89049
    Hugo Ashmore
    Participant

    Jenny a search of the forum turns up this thread, (always worth a quick search to see what’s been covered )

    https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/being-re-directed-to-your-profile-page-after-login/

    Give the plugin listed in the last post a go and see if it works for you, and just acknowledge back whether it worked for you

    #89047
    mvvspr
    Participant

    @mandy51
    @pjnu
    You can add your own custom avatar to your members and also to your groups by following using the code given here
    http://wpmu.org/how-to-add-a-custom-default-avatar-for-buddypress-members-and-groups/
    by sarah.

    Regards

    #89046
    pcwriter
    Participant

    Here’s an option:
    https://buddypress.org/community/groups/custom-profile-filters-for-buddypress/

    It turns any profile field into a clickable search term that brings up directory of all profiles matching that term. Could be useful… depends on how you want to use it.

    #89043
    imjscn
    Participant

    @Travel-Junkie, I’m totally new to this but I want a page to show signup page for outsidders and show user’s bp-profile page for logged in users. How to do this, please?

    #89034
    Chris O’Brien
    Participant

    @r-a-y Thanks. Do you mean I need to do the same thing I did to /pages and /posts? I did make the change in posts, but not pages. I didn’t see any reference to time in on pages.php or index.php. Any suggestion where I put it?

    #89032
    PJ
    Participant

    Agreed. I’m not keen on having a purple isosceles triangle for my avatar on Buddypress.

    I’m not sure if this is the option, but in the WP admin panel, go to Settings > Discussion. Try changing the default avatar radio buttons at the bottom of the page to Mystery Man or None. Hope this helps.

    #89030
    PJ
    Participant

    Since no codewarrior has stepped up, I’ve implemented a temporary fix. I modified the registration page to say “Is mine strong?” with a link to https://www.microsoft.com/protect/fraud/passwords/checker.aspx?WT.mc_id=Site_Link that opens in a new window. It would be nice to have a password strength meter to encourage strong password creation in future Buddypress versions.

    #89028

    In reply to: Group Activity Feed

    amahesh
    Member

    Hello @r-a-y…yes all I want to do is filter the main group home activity of every group so that only updates from the admin show, not everyone and not forum posts…I looked over the link and was confused as to what to do

    Thanks for taking so much time to help me out but if you could please just let me know where the AJAX $query_string is and what exactly I need to modify it I would greatly greatly appreciate it

    Thanks

Viewing 25 results - 48,126 through 48,150 (of 68,969 total)
Skip to toolbar