Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 18,726 through 18,750 (of 68,969 total)
  • Author
    Search Results
  • 3rdaxis
    Participant

    Thanks for your reply @bphelp I tried both codes and the second works to a point at where i need to be.

    The thing im trying to do is call the xprofile field which would be where the author would place their twitter, google+ or facebook id and show it as a link.

    The second code you gave me give the result Twitter:(and the user name i placed in the xprofile field) and as you would know takes me to twitter but not to the profile.

    Is there a way that you know that would replace “username” with that actual username?

    much thanks.

    bp-help
    Participant

    Or:

    
    <?php 
        if ( $string = xprofile_get_field_data( 'BIO', get_the_author_meta('ID') ) ) { ?>
           <a href="https://twitter.com/USERNAME" target="_blank">Twitter:&nbsp<?php echo $string; ?></a> <?php
        }
    ?>
    
    bp-help
    Participant

    @3rdaxis
    Untested but maybe something like this would work, in this example you would need to change “USERNAME” at the end of the URL to the persons twitter name. To get other URL’s to work you should just change the URL etc.

    
    <?php 
        if ( $string = xprofile_get_field_data( 'BIO', get_the_author_meta('ID') ) ) { ?>
           <a href="https://twitter.com/USERNAME" target="_blank" alt="twitter"><?php echo $string; ?></a> <?php
        }
    ?>
    

    As @henrywright-1 already stated “Replace BIO with your field name.”

    3rdaxis
    Participant

    I really appreciate your help. Thats the first bit of code that has worked to display the xprofile fields and iv tried allot.

    Im not sure if you could help me with this one aspect. I would like to also call something like google+, twitter or facebook links that I created in the xprofile fields.

    I can call those fields with the code posted here, but im wondering if @henrywright-1 or anybody stopping by this post could help with the code needed to make the called data as a link with alt text so it looks like Twitter, Google +, Facebook.

    Thanks for any help or pointers

    #172444
    protechs2
    Participant

    This was all that showed on the Theme Check run:

    Notice: Undefined index: page in /home/xyz/public_html/blog/wp-content/plugins/advanced-category-excluder/advanced-category-excluder.php on line 15

    Notice: register_widget_control [x 7 exact occurrences of this line] & register_sidebar_widget [x 6 exact occurrences of this line] is deprecated since version 2.8! Use wp_register_widget_control() instead. in /home/xyz/public_html/blog/wp-includes/functions.php on line 2900

    Notice: Use of undefined constant ace – assumed ‘ace’ in /home/xyz/public_html/blog/wp-content/plugins/advanced-category-excluder/advanced-category-excluder.php on line 310

    Notice: Use of undefined constant ace – assumed ‘ace’ in /home/xyz/public_html/blog/wp-content/plugins/advanced-category-excluder/advanced-category-excluder.php on line 310

    Deprecated: Assigning the return value of new by reference is deprecated in /home/xyz/public_html/blog/wp-content/plugins/bp-moderation/classes/bpModeration.php on line 118

    Notice: Undefined index: action in /home/xyz/public_html/blog/wp-content/themes/fusion/functions.php on line 120

    Notice: has_cap was called with an argument that is deprecated since version 2.0! Usage of user levels by plugins and themes is deprecated. Use roles and capabilities instead. in /home/xyz/public_html/blog/wp-includes/functions.php on line 2998
    ————–

    I don’t know which one would cause the problem in BuddyPress Users/Friends page.

    #172443
    @mercime
    Participant

    @sooskriszta https://make.wordpress.org/core/handbook/submitting-a-patch/
    instead of downloading https://core.svn.wordpress.org/trunk/ via SVN, you’d need to download via SVN client https://buddypress.svn.wordpress.org/trunk/

    Then after you’ve tested the changes you’ve made in your test installation, log in and create a new ticket in https://buddypress.trac.wordpress.org/ and upload that patch.

    #172442
    SK
    Participant

    What @danbp said. Select “sitewide forums”

    #172440
    tse11
    Participant

    Got it working now, thanks anyway. In case anyone is wondering how, I changed the log in to /wp-admin instead of /wp-login.php in the user email when a user creates a new site and this page will not redirect anyone to a buddypress page.

    #172439
    @mercime
    Participant

    @politiclear Since we don’t have access to this premium theme, pending the response of someone who has used Headway theme with BuddyPress, I recommend that have you check Headway theme forums if the theme is compatible with BuddyPress and/or if you need any modifications in the theme to make it compatible with BuddyPress. I have changed the title of this post to include Headway.

    #172437
    tse11
    Participant

    My site is not yet live, @bphelp I am using a post page as homepage. I don’t know if this will help but as I stated earlier, my site is an MU and I am using sub-domains. So when a user logs in from theirsitename.mysite.com/wp-login.php with any redirect codes I’m using, they too are redirected to a buddypress page which is confusing for the user since they are logging in to edit their site. I basically just need a condition that works properly where I can add if_user_is_admin DON’T redirect or if_user_is on subdomain login page don’t redirect. 😉

    #172435
    danbp
    Participant

    Actually you can use BP 1.8.1 with bbPress 2.4 to get what you want.

    Since BuddyPress 1.6, bbPress is no more attached to BP groups and can be installed as a standalone full, complete, forum
    3 types of install are possible: goup-forums only, single forum only or both.

    Read here please.

    Installing Group and Sitewide Forums

    bbPress

    #172431
    protechs2
    Participant

    I’m having the same problem on a fresh install today onto WP 3.6.1.
    bbPress 2.4 has been running successfully for a long while.

    http://xyz/blog/members/ This is the url that is returned whenever you click > or a page number under the search box. It is blank.

    Clicking the Members menu tab gives you the 1st page of Users with Add Friend buttons to the right. I chose one and it now says in that spot, Cancel Friendship Request button. The person never received a Friend request, but they are now listed in the Member count display.

    I cursored over other pages we should be able to search and got the proper URL that it should go to: http://xyz/blog/members/?upage=2 (When I use the exact URL manually, they work correctly it appears.)

    But direct clicking it only goes back the http://xyz/blog/members/ and displays blank below the Order by: box.

    Pressing on All Members (with count to the right) returns a completely blank page below that All Members link.

    Can’t use BuddyPress without this on a mature site.

    3rdaxis
    Participant

    Thanks.. the second code you gave me works perfect.

    #172428
    martinbeaulne
    Participant

    No one knows where this string is located ( in which file ? ) ?

    #172427
    rpatwall1206
    Participant

    I want a forum that is not attached to groups. I want a regular normal forum. When I installed buddypress bbpress was came as the forum. It was not until I tried to set up a forum without groups that I realized I couldn’t. I need another forum that works like a forum.

    Thanks

    #172426
    SK
    Participant

    Not sure exactly what issue you are facing with bbpress.

    SK
    Participant
    #172417
    bp-help
    Participant

    @pelaso
    It is really only so much we can do with the info provided, and as @hnla stated it is a guess as to what could be wrong. Maybe you should consider hiring a developer. If you decide too then you can leave your job and contact info here:

    BP Jobs Board


    As well as here:
    http://jobs.wordpress.net/
    Good luck!

    Henry
    Member

    You have to give the field a title when you add new profile fields via WP Admin > Users > Profile Fields. Whatever you’ve chosen as your field title is what you should use

    3rdaxis
    Participant

    Is the information for the bio going to come from one of my extended profiles i made when I replaced the field name in your code or is the info coming from the default wordpress bio section?

    Henry
    Member

    you’re right, I just tested myself and it doesn’t do the job. This will work – I just tested it out on my dev install:

    <?php 
        if ( $string = xprofile_get_field_data( 'BIO', get_the_author_meta('ID') ) ) {
            echo $string;
        }
    ?>

    Note: Replace BIO with your field name.

    Henry
    Member

    @3rdaxis did you change the field name to the name of your bio field?

    3rdaxis
    Participant

    Thanks. I tried to put that code multiple places in my themes single.php and even the default buddypress theme trying all my field names with no results.

    jamesdonegan
    Participant

    Found where to create a Trac and have done that.

    jamesdonegan
    Participant

    I am having this exact problem, too, @hnla. The same thing was happening awhile back, and somehow it was resolved… but now it’s back.

    I am using WordPress 3.6.1 and BuddyPress 1.8.1
    I have created a custom child theme to the bp-default. I have tried disabling my child theme, and the same issue persists.

    I am unable to find a download for 1.8 to revert the registration.php page. (Found lots of information about 1.8, but not an actual download.)

    THank you for your help.

    (I am also happy to create a Trac ticket, but I’m not sure where/how to do that.)

Viewing 25 results - 18,726 through 18,750 (of 68,969 total)
Skip to toolbar