Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 18,501 through 18,525 (of 68,966 total)
  • Author
    Search Results
  • #173418
    @mercime
    Participant

    @rigormortis_uk glad you were persistent and resolved the group forums issue šŸ™‚

    I’m running WordPress 3.5.1, bbpress 2.3.2 and buddypress 1.8.1

    I suggest updating your bbPress installation to version 2.4.1 as I remember that issue was fixed in the bbPress Trac sometime after bbPress 2.3.2. Also, I recommend updating your WP installation to the latest version as well. Of course, please back up before updating.

    #173417
    @mercime
    Participant

    @willandmae download BuddyPress https://wordpress.org/plugins/buddypress/
    unzip in your hard drive and upload via s/FTP to your plugins directory folder in server

    one of the plugins I wish would work just doesnt but when I deactivate it still must leave something behind because certain things like the submit button and other things gets messed up.

    Which plugin was it?

    #173414
    RiGoRmOrTiS_UK
    Participant

    Hi @mercime , thanks for trying to help earlier, I’ve managed to fix all the issues I listed, I was stupid enough to enable the legacy forums component in buddypress along side my bbpress plugin; removing that fixed the group forums.. however! one problem remains.. the bbpress widgets!

    I have a group setup with its own discussion forum which is set to hidden! the forum works fine but any topic posted in it is shown in the bbpress ā€œrecent topicsā€ or “recent replies” widget which defeats the purpose of the group forum being hidden or private.

    Is there a way to fix this? I’ve tried running the repair tools located at:

    http://……/wp-admin/tools.php?page=bbp-repair
    ā€œRepair BuddyPress Group Forum relationshipsā€

    However this says nothing has been repaired or changed and the problem persists.

    I’m running WordPress 3.5.1, bbpress 2.3.2 and buddypress 1.8.1 (problem happened in 1.7 as well)

    #173408
    carmeetsroad
    Participant

    Any buddypress wizards know how I can make the thumbnail of the activity stream bigger without making it distored?

    RiGoRmOrTiS_UK
    Participant

    Wow, I typed that like I have a head injury.. sorry

    I have a hidden group setup with its own discussion forum; the forum works fine but any topic posted in it is listed in the bbpress “recent topics” widget even though they are hidden/private.

    Is there a way to fix this? I’ve tried running the repair tools located at:

    http://……/wp-admin/tools.php?page=bbp-repair
    “Repair BuddyPress Group Forum relationships”

    However this says nothing has been repaired or changed and the problem remains.

    I’m running WordPress 3.5.1, bbpress 2.3.2 and buddypress 1.8.1 (problem happened in 1.7 as well)

    #173405
    shanebp
    Moderator
    #173400
    modemlooper
    Moderator
    #173398
    Hugo Ashmore
    Participant

    Please don’t open duplicate threads, you have one running and a response.
    https://buddypress.org/support/topic/what-to-use-when-and-how/

    Closing this post.

    N.B The reason for the response you got on your initial posting is that your asking for quite a lot of ‘functionality’ and some moves into developer expertise rather than providing explanations on how to do something, also requesting ‘detailed’ descriptions is a little off on a volunteer help forum, people will help and give advise where they can and to the depth they are able, but be patient s it is the weekend šŸ™‚

    #173390
    Henry
    Member

    I need the post list to stay updated e.g when a member updates a post, WP Query will display the updated title in the post list. With activity, the old entry will remain in the list and a new item will be written to the list as well.

    #173386
    modemlooper
    Moderator

    Why not just create a custom activity feed for only blog posts?

    #173384
    Henry
    Member

    A couple of reasons but mainly to keep everything on one page. A load more button for posts is also consistent with the activity feed load more approach.

    I was thinking the same about a fallback so I’ve added plain pagination to the page too – it gets hidden via the js so falls back nicely when js is disabled.

    #173383
    modemlooper
    Moderator

    why ajax? you will need a fall back if its disabled.

    #173382
    Henry
    Member

    OK got it down to the built in WP function next_posts() not taking into account the current component and current action parts of the URL.

    The URL getting passed to the script is this username/page/3 whereas in BuddyPress we need username/current_component/current_action/page/3

    Now my next problem is how to modify the link returned by next_posts() to add in the additional bit of the URL?

    #173380
    Marc
    Participant

    When you update an profile field, it is first deleted, then re-created. I’m sure of that, after looking the BuddyPress code.

    Why the BuddyPress works like this ? How to prevent this issue, to keep the same ID when the field is updated ?

    I just realise that I didn’t say Hi, to the community! Mistake fixed! I’m sorry.

    #173377
    RiGoRmOrTiS_UK
    Participant

    i changed the permissions on the file and the error is fixed; so back to the original issues.

    Still can’t view topics in “Group Forums”. They show blank in the browser when clicking on them; but topics in the regular site-wide bbpress forums are fine. I’ve tried a different theme and disabling all plugins and still happens šŸ™ also tried updating buddypress to the latest version without success.

    #173376
    shanebp
    Moderator

    Take a look at:
    \buddypress\bp-templates\bp-legacy\buddypress\activity\index.php

    You’ll see the link markup there.
    So you can over-ride that template and add some markup.

    Or you can leave it alone and use one of the many hooks, such as:
    do_action( 'bp_activity_type_tabs' );
    To insert your link via a function.

    #173373
    Asynaptic
    Participant

    thanks @tse11 but that’s not what I was asking :).

    I’ve already seen the tutorial you linked to and btw, that tutorial has nothing to do with S2member or the private plugin @bp-help developed so I’m rather confused

    #173367
    jaxdestroyer
    Participant

    I have Actually done this on my own site that I am developing. I at first Used Buddypress Facebook, Buddypress Googleplus and Buddypress Twitter and they work well enough but I wanted to be able to add some other sites as well as use my own icons. So I figured out what they did and updated it for my needs.
    Here is what I came up with. The following code will go into your themes functions.php.

    <?php
    //Social Media Icons based on the profile user info
    function member_social_extend(){
    		$dmember_id = $bp->displayed_user->id;
    		$fb_info = xprofile_get_field_data('facebook', $dmember_id);
    		$google_info = xprofile_get_field_data('googleplus', $dmember_id);
    		$twitch_info = xprofile_get_field_data('twitch', $dmember_id);
    		$twitter_info = xprofile_get_field_data('twitter', $dmember_id);
    		echo '<div class="member-social">';
    		if($fb_info||$google_info||$twitch_info||$twitter_info){
    			echo 'My Social: ';
    		}
    
    		if ($fb_info) {
    		?>
    		<span class="fb-info"><a href="https://www.facebook.com/<?php echo $fb_info; ?>"  title="My Facebook" target="_blank"><img src="<?php bloginfo('wpurl'); ?>/wp-content/themes/your_theme_name_here/images/facebook.png" /></a></span>
    	<?php
    	}
    		?>
    		<?php
    		if ($google_info) {
    		?>
    		<span class="google-info"><a href="https://profiles.google.com/<?php echo $google_info; ?>" title="My Googleplus" target="_blank"><img src="<?php bloginfo('wpurl'); ?>/wp-content/themes/your_theme_name_here/images/google-plus.png" /></a></span>
    	<?php
    	}
    		?>
    		<?php
    		if ($twitch_info) {
    		?>
    		<span class="twitch-info"><a href="http://www.twitch.tv/<?php echo $twitch_info; ?>" title="My Twitch" target="_blank"><img src="<?php bloginfo('wpurl'); ?>/wp-content/themes/your_theme_name_here/images/twitch.png" /></a></span>
    	<?php
    	}
    		?>
    		<?php
    		if ($twitter_info) {
    		?>
    		<span class="twitter-info"><a href="https://twitter.com/<?php echo $twitter_info; ?>" title="My Twitter" target="_blank" class="twitter-follow-button""><img src="<?php bloginfo('wpurl'); ?>/wp-content/themes/your_theme_name_here/images/twitter.png" /></a></span>
    	<?php
    	}
    	echo '</div>';
    }
    add_filter( 'bp_before_member_header_meta', 'member_social_extend' ); ?>

    I will explain the code to you so that you can use it for more than just these 4 sites.
    First the Variables

    $dmember_id = $bp->displayed_user->id;
    $fb_info = xprofile_get_field_data('facebook', $dmember_id);
    

    $dmember_id grabs the currently displayed user id.
    $fb_info gets the data that was placed the facebook text box I created in extended users profiles.
    The same goes for $google_info, $twitch_info, and $twitter_info all you need to do is change 2 simple things.
    $your_variablename_here = xprofile_get_field_data('your_textbox_field_name_here', $dmember_id);

    That textbox field name can be anything you want it to be as long as it is the same as the extended profile field name. For each different site you will need to do that line.

    echo '<div class="member-social">'; All this does is start a div with a class of member-social so you can box all the different icons in one place.

    The below code is optional but may be important if you want to prefix the icons with something.

    if($fb_info||$google_info||$twitch_info||$twitter_info){
    			echo 'My Social: ';
    		}

    This asks if any of the variables have data in them. If so then prefix the icons with “My Social: ” if not then show nothing. You will need to add your new variables each seperated with the horizontal bars as shown. So that it will show as long as any of them have one field filled in.

    if ($fb_info) {
    		?>
    		<span class="fb-info"><a href="https://www.facebook.com/<?php echo $fb_info; ?>"  title="My Facebook" target="_blank"><img src="<?php bloginfo('wpurl'); ?>/wp-content/themes/your_theme_name_here/images/facebook.png" /></a></span>
    	<?php
    	}
    		?>

    This asks if $fb_info has any data then show the icon.

    The Below code can differ based on your preference.
    <span class="fb-info"><a href="https://www.facebook.com/<?php echo $fb_info; ?>" title="My Facebook" target="_blank"><img src="<?php bloginfo('wpurl'); ?>/wp-content/themes/your_theme_name/images/facebook.png" /></a></span>
    I wrapped each icon in its own span HTML tag. Then create the link.
    <a href="https://www.facebook.com/<?php echo $fb_info; ?>" title="My Facebook" target="_blank"><img src="<?php bloginfo('wpurl'); ?>/wp-content/themes/your_theme_name/images/facebook.png" /></a>
    In this example I am linking to facebook.com with the $fb_info data. Here is where the preference comes in if you want them to just put their whole social profile link in the profile field then all it needs to look like is
    <a href="<?php echo $fb_info; ?>" title="My Facebook" target="_blank"><img src="<?php bloginfo('wpurl'); ?>/wp-content/themes/your_theme_name/images/facebook.png" /></a>
    the title=”put_hover_text_here” is what you want to show when hovering over the link the target= “_blank” makes the link open in a new tab.

    <img src="<?php bloginfo('wpurl'); ?>/wp-content/themes/your_theme_name_here/images/facebook.png" />
    This is where you placed the image of the icon. Currently this will point to the images folder of your theme and the image name of facebook.png as long as you updated the theme name.

    <?php
    	}
    	echo '</div>';
    }
    add_filter( 'bp_before_member_header_meta', 'member_social_extend' ); ?>

    this closes the if statement and closes the div that I made earlier. Then adds the function to the buddypress profile.

    here is an image of the results:
    social Results

    The Twitch icon I made myself but the others are free here http://icondock.com/free/vector-social-media-icons along with many more social sites. I used the 32px images.

    If you have any questions or need some extra explanation of this or want to add these social icons to the group header,or even add them to a users authorbox(this will require you to change your themes code) just PM Me or reply. I hope this helps anyone else looking to do something similar Note this will only send people to their respective social media profiles not allow them to follow or friend straight from your site.

    #173366
    shanebp
    Moderator

    Try posting here:

    BP Jobs Board

    #173361
    @mercime
    Participant
    #173357
    @mercime
    Participant

    I’ve noticed under permalinks wordpress is complaining about access to the .htaccess file


    @rigormortis_uk
    Did you change to a new theme or add any new plugins recently? Revert to old theme or Twenty Twelve theme and deactivate all other plugins except BuddyPress and bbPress then run Settings > Permalinks again.

    #173352
    tse11
    Participant
    #173349
    AntonyC
    Participant

    Hi @mercime, you are right. Sorry I haven’t replied sooner as have been away.
    My theme designer had a couple of forum template pages (archive-forum.php and forum.php) that I added to my buddypress child theme – it’s fixed both my forum issues and my blog.
    Really appreciated your support with this one – a big thank you!
    Cheers,
    Antony

    #173344
    Asynaptic
    Participant

    @bp-help can you pls describe what the difference is between your plugin and S2member (the free edition)?

    Not that your plugin isn’t great, I’m just trying to understand things a bit more šŸ™‚

    thanks!

    #173341
    strangechild
    Participant

    *head desk*

    That was EXACTLY IT. Thank you @modemlooper for asking me the right question. I knew I was looking in the wrong place.

    The solution is here: http://forum.graphene-theme.com/graphene-support/all-website-page-titles-showing-in-buddypress-pages

Viewing 25 results - 18,501 through 18,525 (of 68,966 total)
Skip to toolbar