Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 5,751 through 5,775 (of 32,560 total)
  • Author
    Search Results
  • #254336
    Henry Wright
    Moderator

    buddypress.org is open source so feel free to check out the theme’s code.

    Open Sourcing BuddyPress.org

    David Cavins
    Keymaster

    Hi Ben,

    You are correct that it’s best to leave the bp stylesheet in place so that you get updates to that file. You can add a custom stylesheet, though, and increase the selector power of the rule, so that it overrides the bp.css rule, like .site #buddypress #item-body { border-left: none; }

    Here’s the basic concept.
    https://developer.mozilla.org/en-US/docs/Web/CSS/Specificity

    Adding a stylesheet:

    Including CSS & JavaScript

    #254329

    In reply to: who’s online widget

    danbp
    Participant

    @rblea24,

    sorry, but we can’t assist you as you use a premium theme for which we have no access.
    See if this X support topic can help you.

    #254320

    In reply to: who’s online widget

    ckchaudhary
    Participant

    With twentysixteen theme active, i can already see those images in horizontal alignment. Maybe the theme you are using, has a css rule which is affecting it. In any case, you can always write some custom css to make those images ‘float’.

    #254313
    Henry Wright
    Moderator

    You could be using the thumb sized avatar. Check your theme to make sure the full sized image is being used. bp_core_fetch_avatar() is the function used by BuddyPress to display avatars but there’s also get_avatar() so check for that too (it’s a WordPress function).

    Ben Riga
    Participant

    I’ve been trying to customize the member pages for the site I’m working on by removing the member nav menu on the left. I was able to do that by removing the <div id=”item-nav”> from bp-templates\bp-legacy\buddypress\members\single\home.php

    The works fine to remove the left hand menu but then leaves a 1px border-left on the item-body div (looks like it’s on a media query for when the width is over 783). I’m currently using the Twenty Fourteen theme.

    I was able to customize by copying the entire css file over and removing that style but doesn’t seem right. If other styles are changed in future BP updates I’ll never see those updates, right? Isn’t there a way to customize by overriding just that one style?

    This is the style that was causing me issues:

    /*  Remove the line from the left hand side of the Member Navigation Menu  */	
    /*	#buddypress #item-body {
    		border-left: 1px solid #bebebe;
    	}  */

    I’d appreciate any help or nudge in the right direction.

    Thanks,
    Ben

    #254302
    gustheghost
    Participant

    Hello, I am using standard Buddypress v. 2.5.3
    Wordpress v.4.5.2
    http://www.ghostideas.com

    The problem I’m running into is that I can use the comment section, but when I click to post a comment, the comment disappears. When reloading the page, the comment is not there. It also doesn’t appear in comments on the back end. I’ve tried to enable manual approval of comments too, to see if they would appear on the back end, however that didn’t work either.

    I haven’t tried to change themes, as I’m afraid something on my site may be screwed up when switching back.

    I’m not sure what to do. Comments were working a few weeks ago. It may be a plugin conflict error, but I’m not sure how to diagnose that other than disabling my plugins and reactivating them.

    Thank you for you help.

    #254282
    tatufrancis
    Participant

    Thank you guys,

    I deactivated all the plugins, and changed the theme to Twenty, then activated all the buddypress components, Now it works Perfectly FINE!!!! Now again switched back to Venedor theme !!! Happy coding Ninjas!! 🙂

    Thanks @danbp

    #254277
    danbp
    Participant

    Could it be that your theme has some specific CSS for avatars ?

    #254271
    danbp
    Participant

    Be carefull, it’s not recommanded to modify original files as they will be overwritten at next update. And you will have to redo all your customization.

    Prefer best practice and use a child-theme, especially if you modify CSS.

    #254266
    sharmavishal
    Participant

    Get wc4bp plugin by sven…get a theme which supports woo+bp+wc vendors…

    #254264
    danbp
    Participant

    … and a premium one, so we’re unable to help you for it here, as we have no access to the code.
    Before asking for help on your theme support, activate one of WP’s Twenty theme and ensure you configured BP correctly. Deactivate also all other plugins while testing. Once the install is correctly showed on Twenty, you can activate your theme.

    If something goes wrong after that, you can be sure it’s a theme issue. And if it’s ok, you reactivate plugins one by one. And again, if any issue, you will know if a plugin is failing.

    #254260
    tatufrancis
    Participant

    Its a custom theme for Woo commerce.

    #254259
    sharmavishal
    Participant

    Does your theme support buddypress?

    #254257
    tatufrancis
    Participant

    I have checked everything in my knowledge,

    Is my theme has the problem? My theme is venedor.

    edermen
    Participant

    WordPress 4.5.2
    BuddyPress 2.5.2
    Theme: Twenty Sixteen

    I try sorting memberl list in certaine papameters:

    • Is online;
    • Is custom field;
    • Is user friends first.

    Fist & second params is done.

    Thirds condition i try to resolve with this method
    Me class variant
    In a wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/members-loop.php

     
    $user_id = bp_loggedin_user_id();
    $friends = friends_get_friend_user_ids($user_id);
    function display_friends_online($friends){
      $result = [];
      foreach ($friends as $friend_item) {
        if ( bp_has_members( 'type=online&include='.$friend_item)) {
    	  $result["$friend_item"] = $friend_item;
    	}
        }
        if (count($result) > 0)
        {
         return count($result);
        }
        else
        {
          return 0;
        }
    
    }
    $class_members = new BP_Custom_User_Ids(display_friends_online($friends));
    

    I debugged code in xDebug and found that sorts by default its output system kernel.

    Friends not first in list.
    Please help!

    ineedyou
    Participant

    Sorry my english, is topic about that you are publishing new post (wp default) or custom post type and adding embed video to this post but not display on buddypress activty? I am searching solution everywhere…

    My Buddypress activity (and filter) show all kind post or cpt. BUt only text, text+image or text+featured image. Never show embed videos if added these post… Any solution did you find?

    I am using latest BP, WP and other pluging. Also if i use default theme dont show still…

    I reaaly need this solution. If no solution, do you have any idea, when activity will show “Mrx published new Food (my cpt), member will click Food link but will open popup or lightbox (you know rtmedia do this, if click image open lightbox).

    Thanks..

    #254246
    Kookidooki
    Participant

    This is the solution:

    go to your child-theme > functions.php (create one if you don’t have this).
    Add this code to your functions.php file:

    define ( ‘BP_AVATAR_THUMB_WIDTH’, 150 );
    define ( ‘BP_AVATAR_THUMB_HEIGHT’, 150 );
    define ( ‘BP_AVATAR_FULL_WIDTH’, 150 );
    define ( ‘BP_AVATAR_FULL_HEIGHT’, 150 );

    And you’re all set!

    #254240
    Kookidooki
    Participant
    #254229
    tatufrancis
    Participant

    Dear Dan,

    I have Pretty permalinks activated, Created all the components, pages required.

    Also updated theme with buddypress templates and buddypress.css also Still unable to activate all the components.

    Regards,

    Tatu

    #254221
    ineedyou
    Participant

    Dear @danbp

    Maybe i should explain more detail. And what i want to do…I really must solve this future of my project 🙂 Sorry long sentences really sorry

    BP update via what’s new form and add embed is working. No problem.
    Our members can create new post (food) with toolset types on frontend. They can add image or video or custom fields. when anyone visit abc.com/foodarchive and click food 1 and open new window and Ok can see everything. At the moment, this published new post displaying on buddypress activity (also can added filter with bp-custom.php)… Buddypress activity display all kind food post body such as if there is only text show text, if there are text+image, ok BP activity show this also… At the moment, if only text and no image but author add featured image, well BP also show text+this featured image on activity stream… But never show video on activity stream if its in post body…

    I dont undestand (because i am copypaste coode user) how can BP update via add form can show embed video but not display video from custom post embed? No way to solve this?

    Why? Because my member want to see video on activity stream before visit this post. BP just show MRx Published new Food..

    If i use Visual composer (extension add on pluging) features add youtube video to post, yes this is showing embed video on buddypress activity.But this is problem because when anyone click bp show filter and turn back another filter (comment to post, or post to updates or group updates), visual composer short codes broken and display like this [vc]textblock[vc]. If refresh page, yes eveything normal, so my theme remove shortcodes from visual composer.

    Thanks for giving your time…

    #254220
    jim.sharp
    Participant

    Hello,
    My site (lr417.com) is under construction, and I am a total newbie to all of this, so please forgive my ignorance.

    I am using the Customizr theme with WordPress 4.5.2 and BuddyPress 2.5.3. What I am trying to accomplish is setting up a social site to compliment a group page I manage on Facebook. For now, I’d like my site to allow users to contribute blog posts. I would like them to be able to Register as well as Log in using their Facebook account (for users that have one).

    I have installed Nextend Facebook Connect, but all I can get it to do is allow someone to register/login through the wp-admin page. Like I said, I’m new here, but I don’t think this is what I’m looking for it to do. I want users to register for blogging. (This plugin is still activated)

    Next I activated WP-FB-AutoConnect and filled in the same App ID/Secret that I successfully used for Nextend. Now I am seeing Login and Register links at the top of my page. The Login link goes to a page that is once again some sort of WordPress login. The Register link take you to the BuddyPress page for registration.

    I’m really at a loss for understanding how to achieve the registration/login process that I am looking for, and I do not know of any sites using the same or similiar theme/plugins that I am using that I can look at to see how they work.

    Please be patient with me while I learn all this, and thank you in advance for your help.
    Jim

    #254212
    ineedyou
    Participant

    Dear @danbp

    My english is not good so i hope you are talking about my problem that buddypress display default wordpress post on activity stream with image or image + text… But when i add (attach isnert with url) embed video to post on backend admin side, buddypress do not display this video. Just display “Mrx wrote a new post, ABC (Post Title)”. if i click post title open in new window and i can see the embed video there…

    Why my buddypress activity do not display embeded video post on activiy…Only text or image can be display…. All my WP and BP version latest, also test it default wordpress themes.

    Very import for me… I am searching this topic last 7 days and askink forum but no reply…

    Thanks…

    Strothi
    Participant

    Dear all,

    first of all, this forum is absolutely amazing and has helped me enormously so far! Unfortunately, I’m more of the “I read the code and somewhat understand it” and less so much the “I can code it myself” type… 😉 So I’m currently trying to distinguish private and public member fields. I’ve found lots of great solutions, but now I need your help:

    What I would like to achieve is that for example here: https://fslci.org/members/philip-strothmann/ the two entries which appear under the profile pic if you click on the plus:

    1) Membership type (in this case “NGO Employee”)
    2) Public Status

    are only seen by my members, not by the public. I guess it can be achieved with

    if( !is_user_logged_in() ) {

    But I’m not sure how to get the call to the two elements right. I guess this isn’t too complicated, but I’ve searched a bit and haven’t come up with a good solution, so any help would be highly appreciated!

    Thank you very much in advance 🙂

    BTW: Using latest WP, BP and KLEO as the theme.

    #254190

    In reply to: Permalinks Problemes

    danbp
    Participant

    Seems not to be a BuddyPress question. BuddyPress doesn’t use categories. Permalink is a WordPress setting.

    Avada is a premium theme framework. We have no acces to his code and can’t help you here. Check Avada support.

    bbPress is a separate plugin. Check bbP support.

    What could i do ?

    – read the documentation
    – review all your settings
    – ask for help on the appropriate support forum.

Viewing 25 results - 5,751 through 5,775 (of 32,560 total)
Skip to toolbar