Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 18,476 through 18,500 (of 68,966 total)
  • Author
    Search Results
  • #173476
    @mercime
    Participant
    #173475
    Neo
    Participant

    I sended him this topich, I hope fix this bug becouse I love him plugin 🙂

    #173474

    In reply to: Profile and Settings

    @mercime
    Participant

    @robg48 BuddyPress links in Appearance > Menus will be default in BP 1.9. So if you’re adventurous …
    https://buddypress.trac.wordpress.org/changeset/7427

    #173473
    @mercime
    Participant

    @neocsatornaja thank you for posting what the conflict was.

    As for fixing the bug, best person to do that would be the plugin author https://wordpress.org/support/plugin/wp-open-graph

    #173472
    Neo
    Participant

    My datas:
    Wp:3.7
    Ifeature latest version
    Plugin Url if you whant fix this bug:
    https://wordpress.org/plugins/wp-open-graph/

    #173470
    Neo
    Participant

    Okey i gess founded the reson.
    Conflict with WP Open Graph-plugin.
    If you check my site now in here, you can see the correct visual:
    http://www.neocsatblog.mblx.hu/members/admin/
    So orginal on my site the banner is the first,under the menu and under the content.
    This very intersting, I don’ know what is the cnflict with this 2 plugin…

    #173469
    RiGoRmOrTiS_UK
    Participant

    and additionally adding a member with “participant” role in the forums to a hidden group does grant them full access to the group’s forum however the widgets don’t show any of it’s recent topics.

    honestly its really pretty messy and I’m kinda starting to lose hope in using group forums in buddypress 🙁

    #173468
    @mercime
    Participant

    somehowe the first on my profil page


    @neocsatornaja
    I see the picture of a full-width profile page but I don’t quite get what you’re asking. What “first” was removed – first sidebar, first header (per tag below)?

    WP/BP versions? Theme used? Plugins activated? Site URL?

    #173466
    @mercime
    Participant

    @neocsatornaja you already started your own topic, please keep to that post https://buddypress.org/support/topic/the-buddypress-slide-up-for-my-header/

    Closing this old topic.

    #173463
    Neo
    Participant

    The buddy press slide up for my header on ifeature:
    http://i40.tinypic.com/335480n.png
    So how can I slove this?

    #173455
    Robert
    Participant

    Right now only people who have signed after I installed Buddypress show up as members.

    All of my users – about 2500 of them – that signed up prior to my installing BuddyPress do not show up under “members”.

    Can you tell me how I get them to show as “members” on my site?

    Thanks!

    #173446
    willandmae
    Participant

    You Are correct! When I deactivated this I got it confused with another plugin. The Group Extras is working fine. The culprit one was with bbcodes (30) for forums GD BBPRESS TOOLS. When I finally got to remove this one everything came back to working. I am sooo excited to have control over this website again. Hehe kind of scared to add anything else. But, there are a few desired needs still. Maybe you could suggest working plugins for me.

    1) For the forums it would be nice to have breadcrumbs for easier navigation. It seems most breadcrumb plugins cannot keep up with buddypress groups and bbpress forums.

    2) These were the things I liked for the forum tools

    BBCode shortcodes support
    Quote Reply or Topic
    User signature with BBCode and HTML support

    3) Also, it seems the buddypress-default theme login in the right hand corner of the screen sidebar — isn’t working. If I try to login there it fails everytime. It then brings me to wordpress login and sucessfully login everytime. Any Suggestions?

    Thanks for your help.

    William

    #173445
    auch07
    Participant

    Sorry code I posted back was outdated.

    <?php
    $bpProfileField = xprofile_get_field_data( 'Services Required', $user_id_from_email, $multi_format = 'comma' );
    if ( empty ( $bpProfileField) ):
    ?>
    <div class="profile_fields"><b>Services Provided:</b> <span><?php bp_member_profile_data( 'field=Services Provided' , $user_id_from_email ) ?></span></div>
    <?php else: ?>
    <p><b>Services Required:</b> <?php echo $bpProfileField; ?></p>
    <?php endif; ?>
    <br>
    #173442
    auch07
    Participant

    Thanks for the reply Shane. My apologies for the delay in responding myself but I just got back on working on this issue this weekend here.

    One field I am working on right now involves displaying either Services Required or Services Provided as you can see in the code below. Depending on the type of user you are will determine which field you have filled in thus which field will display on the user profile. Unfortunately my PHP is pretty weak thus the foreach loop you mentioned has me scratching my head. The code below does what I want with the exception of it displaying horizontally instead of vertically. I am hoping you would be able to give me some detailed direction in what way to go for the PHP challenged guy that I am lol.

    <?php
    $bpProfileField = xprofile_get_field_data( 'Services Required', $user_id_from_email, $multi_format = 'comma' );
    if ( empty ( $bpProfileField) ):
    ?>
    <div class="profile_fields"><b>Services Provided:</b> <span><?php bp_profile_field_data( 'field=Services Provided' );?></span></div>
    <?php else: ?>
    <p><b>Services Required:</b> <?php echo $bpProfileField; ?></p>
    <?php endif; ?>
    #173441
    jaxdestroyer
    Participant

    The only way I know how to hide it currently is through css. BP will give your sub group a class name based on what you sub group is called. For example, my sub group is About Me. The class name is about-me.

    To make sure you are getting the right class name I suggest you use Firefox firebug or chromes built in element inspector. You should also see another class name of bg-widget when using either tool.

    To make the css specific for that particular snippet all you need to do in your Themes or BuddyPress child themes style.css

    .bp-widget.about-me{
        display: none;
    }

    This will hide the whole sub group when someone is viewing the profile. It makes sure it has both class names before making it no longer display so the user can still see it when editing their profile.

    If you want to only get rid of specific rows that contain this information then BP still has you covered. They also make a class based on your input field name. Using Facebook as an example again the class is field_facebook. To be as specific as possible without going too overboard in your Themes or BuddyPress child themes style.css put in

    table.profile-fields tr.field_facebook{
       display:none;
    }

    This will only get rid of the one row, however, there is a caveat. If you alternate colors between rows it will still count the hidden field. I suggest that if you are going to use this make sure that the fields are at the bottom of the group so they no longer break flowof alternating colors.

    If you want to do multiple fields just seperate them via a comma as shown below

    table.profile-fields tr.field_facebook,
    table.profile-fields tr.field_twiitter{
       display:none;
    }
    #173438
    RiGoRmOrTiS_UK
    Participant

    Hi @mercime

    I appreciate all the help 🙂 .. however!.. (sorry!) I’ve updated to WordPress 3.7, Buddypress 1.8.1 and bbpress 2.4.1 and also ran the repair tool mentioned above and still hidden topics in group forums are showing in the bbpress recent topics and replies widgets, even to logged out people 🙁

    #173435
    samm8158
    Participant

    @shanebp

    Its nice to hear from you that’s possible in buddypress..Actually I am not a programmer…I know little bit of php and a plugin contains so much functions that I cannot write or understand such codes…So please tell me the code it would be a great help..I am just tired of finding a solution…You are the first one who gave me the solution

    Warm regards,

    #173433
    VenturaVan
    Participant

    When my users want to upload a video it would automatically be uploaded to the sites YouTube Channel and would then automatically be available in either the WordPress default video player or a custom video player. Is there such a plugin?

    #173429
    Marj Wyatt
    Participant

    I read this thread with some interest and see that there are recommendations to use a Premium Plugin to accomplish this.

    I have a development in progress. I have developed a custom child theme using the Genesis Framework. I’ve successfully integrated buddypress with this theme. I am using X-profiles and registration is handled and managed by Wishlist Member. I have since determined that WooCommerce is the best tool for my client and the software slid right into the mix with no problems at all.

    The above mentioned premium plugin does not appear to function with X-Profiles, and X-Profiles was the method that I used to secure details of the profile at the member’s choice.

    What I’m wondering is maybe something I should be asking at Woo but why haven’t any of you tried the “simple” solution of using the wordpress do_shortcode function to add the shortcodes to the templates where you want that code to show? I added the [woocommerce_my_account] shortcode to the general.php template which was copied into the child theme folder (bp-legacy template) and it works just fine. Am I missing something?

    #173428
    @mercime
    Participant
    #173427
    @mercime
    Participant

    @willandmae first time I’ve heard about BP Group Extras causing this kind of issue. Have you tried deactivating all plugins except BuddyPress, bbPress and BP Group Extras to confirm that BP Groups Extras is causing the issues? If it is, please post at https://wordpress.org/support/plugin/buddypress-groups-extras to report it to the plugin author.

    #173426
    modemlooper
    Moderator

    In the buddypress/bp-templates/bp-legacy/buddypress/activity/entry.php file add the argument to bp_activity_avatar

    <?php bp_activity_avatar( 'type=full&width=275&height=275'); ?>

    #173424
    willandmae
    Participant

    Just tried and Shucks it doesn’t seem to be doing the trick this time.

    #173423
    workinclasshero
    Participant

    You dont need to wrap these with a div. To make YouTube responsive just use the same styling you would to make images responsive.

    Here’s what I used on the default theme for buddypress

    iframe, video, img {
      max-width: 100%;
      min-height: auto;
    }

    The “min-height:auto” which is usually just “height:auto” for images I used because the videos were being pushed really flat. This fixed that problem and the videos don’t look the best on small phones but at least now they are viewable.

    #173422
    willandmae
    Participant

    I have tried several times to install Buddypress group extras, for I wish to get the pro and do polls. But for some reason it keeps breaking the theme and I need to uninstall. Well, I tried the default buddy theme and it looks nice but its not so easy to uninstall and reinstall the theme.

    Thank you trying it now…

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