Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 18,876 through 18,900 (of 69,109 total)
  • Author
    Search Results
  • #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.)

    #172390
    Hugo Ashmore
    Participant

    I do hope they didn’t really say could only be fixed by buddypress support. Generally email issues are not BP problems, and currently BP has no issues I’m aware of in sending registration emails, which also is really a WP function.

    Easy check that should have been run first would have been and still ought to be tried is to disable BP and simply try registering an account under WP.

    Often email issues fall under the heading of ‘Domain Record’ issues i.e email servers rejecting an email as it can’t be verified as authorised on the sending domain or there’s no PTR record or SPF record, or simply that the server sendmail is at issue, these though are not really problems that lie with WP or BP which normally happily send out emails.

    Search this forum though as these issues have been discussed many times and you’ll find more info in the archives.

    #172386
    Hugo Ashmore
    Participant

    @icepin while I write all my code as text domain translatable and if a plugin provide for a languages file lookup I would hardly ever really call the above ‘easy’ when a user simply needs to change one little character and where we’re not talking about a distributed theme or plugin.


    @idavidson

    The file that contains that translatable string is register.php if your theme is running bp in theme compatibility mode then the file being used lives in /bp-templates/bp-legacy/buddypress/members/

    However you are NOT advised to edit theme files residing in the core plugin, if you wish to directly edit a template file you must make a child theme of the theme you are using and copy the template files over and edit in the child theme.

    instruction for that may be found in the BP codex, and child theme creating guides in the WP codex.
    https://codex.buddypress.org/theme-development/theme-compatibility-1-7/a-quick-look-at-1-7-theme-compatibility/

    N.B. Any criticism of the above grammar or general syntax will be ignored! 🙂

    #172379
    Pin
    Participant

    the easiest way would be to create a folder called “languages” in your wp-content folder and put a copy of buddypress.pot from wp-content\plugins\buddypress\bp-languages.

    – Rename the new buddypress.pot from “languages” to “buddypress-en_US.pot”
    – Download Poedit – http://www.poedit.net/download.php – and install it
    – Open “buddypress-en_US.pot” with Poedit
    – Press Ctrl + F and search for “Registering for this site”. The string should appear.
    – In Translation field put any text you want. It will simply replace the original text.

    This is pretty much the best way to use your own words in your BP installation rather then modifying the core files. It might sound complicated but it’s actually pretty easy once you get the hang of it.

    Cheers

    #172377
    Henry
    Member

    It all very much depends on where exactly you want to display the bio info.

    $user_id is the key variable you need, but obtaining this value is done differently depending on where you are on your website.

    If you want to display bio info in a member’s blog post footer then add this to your theme’s single.php file:

    <?php
    $user_id = get_the_author_meta('ID');
    echo xprofile_get_field_data('field=BIO', $user_id); 
    ?>

    Note: You will need to change BIO to whatever you’ve called your bio field when setting it up.

    #172371
    ashlaw
    Participant

    Hi, I also do have the issue.
    Tired two method, one is what you have suggested, instead the code into theme.css

    #buddypress .standard-form div.submit input {
    color: #000 !important;
    }
    It does not work.

    I have a also come across a post stating about the height under” what-new-option”. Currently it is state 0px, so I change it to 40px first using firebug to try, and it actually appear, so I ask my friend to change it in my theme css(I do not know coding actually), and save the file. It doesn’t reflect again. Now I know it is actually visible, but it wont allows any changes in the less theme css.

    Any help in this? Really appreciate.

    #172370
    bp-help
    Participant

    @tse11
    Patience please! Deactivate the plugin you was using for redirecting and try this in bp-custom.php https://codex.buddypress.org/plugin-development/bp-custom-php/ :

    
    function bphelp_redirect() {
      if( is_user_logged_in() && is_super_admin && is_home) {
        // redirect to dashboard code
        bp_core_redirect( get_option( 'home' ) . '/wp-admin/' );
      }else {
          if( is_user_loggedin() && !is_super_admin  && is_home) {
        // redirect to activity code
        bp_core_redirect( get_option( 'home' ) . '/activity/' );
          }
       }
    }
    add_action( 'template_redirect', 'bphelp_redirect', 1 );
    
    #172367
    excesscaravan
    Participant

    Thanks Rishikant.

    Could I create a Buddypress group that only shows up on one post?

    For post A, only certain Buddypress groups are displayed on the post.

    For post B, another set of Buddypress group is displayed.

    i.e. if I have a post “Cooking Class on Sunday” – I would like my users to be able to create groups under this post and invite other users to join.

    “Cooking Class on Sunday” groups will only display on the page, and not another page such as “Music Class on Sunday”

    THANKS SO MUCH!!!

    #172366
    tse11
    Participant

    @bphelp
    Thanks! I have scoured the forums and have not found the exact thing that I need, but I guess it’s all in the wording of search terms 😉

    This is the code I have for the plugin I am using:

    function buddypress_login_redirection($redirect_url,$request_url,$user)
    {
    	global $bp;
    	$selected_option = get_option('blr_select_redirection');
    	if($selected_option == 'one')
    	{
    		return bp_core_get_user_domain($user->ID);
    	}
    	elseif($selected_option=='two')
    	{
    		$activity_slug = bp_get_activity_root_slug();
    		$redirect_url = $bp->root_domain."/".$activity_slug;
    		return $redirect_url;
    	}
    	elseif($selected_option=='four')
    	{
    		//$activity_slug = bp_get_activity_root_slug();
    		//$redirect_url = $bp->root_domain."/".$activity_slug;
    		$redirect_url = $_SERVER['HTTP_REFERER'];
    		return $redirect_url;
    	}
    	else
    	{
    		$activity_slug = bp_get_activity_root_slug();
    		$friends_activity = bp_core_get_user_domain($user->ID).$activity_slug."/friends/";
    		return $friends_activity;
    	}
    }
    function buddypress_login_redirection_menu()
    {
    	add_options_page(__('BP Login Redirect Settings','blr-menu'), __('BP Login Redirect Settings','blr-menu'), 'manage_options', 'blrmenu', 'blr_settings_page');
    }
    function blr_settings_page()
    {
    	if (!current_user_can('manage_options'))
        {
          wp_die( __('You do not have sufficient permissions to access this page.') );
        }
    	$opt_name = 'blr_select_redirection';
    	$hidden_field_name = 'blr_submit_hidden';
    	$data_field_name = 'blr_select_redirection';
    	
    	$opt_val = get_option($opt_name);
    	
    	if( isset($_POST[ $hidden_field_name ]) && $_POST[ $hidden_field_name ] == 'Y' )
    	{
    		$opt_val = $_POST[ $data_field_name ];
    		update_option( $opt_name, $opt_val );
    ?>

    Any idea where I would add those conditions you mentioned?

    #172365
    bp-help
    Participant

    @tse11
    Search the forum. This has been covered before! You could create a conditional to do this. Basically an if and else statement. You would need to include is_super_admin in the conditional check and the user would be redirected appropriately. For instance:

    
    function bphelp_redirect() {
      if( is_user_logged_in() && is_super_admin ) {
        // redirect to dashboard code
      }else {
          if( is_user_loggedin() && !is_super_admin ) {
        // redirect to activity code
          }
       }
    }
    add_action( 'template_redirect', 'bphelp_redirect', 1 );
    

    This would go in bp-custom.php:
    https://codex.buddypress.org/plugin-development/bp-custom-php/

    @mercime
    Participant
Viewing 25 results - 18,876 through 18,900 (of 69,109 total)
Skip to toolbar