Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 6,376 through 6,400 (of 32,678 total)
  • Author
    Search Results
  • 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

    #254334
    David Cavins
    Keymaster

    Hi pckelly123: WP Better Emails works well for applying a template to all mail sent via the function wp_mail(), which is what the group email subscription plugin uses.
    https://wordpress.org/plugins/wp-better-emails/

    #254333
    danbp
    Participant

    You say nothing about how the administrator will give a score/badge!
    Perhaps you could use one of these plugins ?

    https://fr.wordpress.org/plugins/badgeos-community-add-on/ + badgeOs
    https://wordpress.org/plugins/buddypress-compliments/

    #254327
    danbp
    Participant

    @graemebryson5,

    you need a function to fetch the activity_comment type in bp_activity table. For the count itself, we use mysql count. Here it goes:

    function bpfr_get_activities_comment_count() {
         global $wpdb;
         $user_id = bp_displayed_user_id(); 
    
    	if ( bp_is_active( 'activity' ) ) {
    
    	   // DB query 
    	   $total = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(id) FROM {$wpdb->prefix}bp_activity WHERE user_id = '%d' AND type = 'activity_comment'", $user_id ) );
    									  
    	   return $total;
    	
    	}
    }

    Now you can echo bpfr_get_activities_comment_count wherever you need it on your profile template.

    Here an example to get it on profile header.

    function bpfr_total_comments() {
       echo 'My comments: '. bpfr_get_activities_comment_count();
    }
    add_filter( 'bp_before_member_header_meta', 'bpfr_total_comments' ); 

    If you need more member activities counts, try Buddy Member Stats !

    #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).

    danbp
    Participant

    @gettingdownunder,

    did you asked on WP Job Manager support forum ? If you didn’t receive any response here, it’s probably because you’re on a BuddyPress forum.

    Untill somebody use the same plugin with BP and know also the same issue, it’s better to ask first the authors of the plugin you try to integrate to BP.

    Meanwhile, have you made some tests and tried to debug your install ?

    #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.

    alibong0
    Participant

    ok so im on the newest wordpress and buddypress.
    ive had a look through the following posts and pages:

    https://buddypress.org/support/topic/adding-new-order-by-on-members-loop/

    https://buddypress.org/support/topic/creating-a-new-order-by-filter-in-groups-loop-with-custom-sql/

    Add custom filters to loops and enjoy them within your plugin

    Im trying to make ‘Order By’ sections that find users who have ticked a specific profile field in their profile. The first thing im confused about is am i editing the..
    /bp-templates/bp-legacy/buddypress/members/index.php OR
    /bp-templates/bp-legacy/buddypress/members-loop.php ?
    i thought it was member-loop but that last help page suggests index?

    Im just not succeeding lol, could you help me please?

    #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.

    danbp
    Participant

    Profile, groups and cover iages are in a custom path.

    The complete directory when a user uploads an avatar is /wp-content/uploads/avatars/35/ where 35 is the user_id. Same architecture for groups and covers. So each user as only access to his avatar, and each group has only access to his logo or cover.

    Adding avatars in media library is not recommanded, as any author can access to such image. Aside, BP members are usually (except if you have a multi author blog) not going to media library to handle pictures.

    And if you already googled a bit, ie. wordpress+change+avatar+upload+path, you may noticed that they are not much results.

    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!

    #254255
    Paul Wong-Gibbs
    Keymaster

    It’s not really a Mailgun support problem. It’s just that BuddyPress requires a different email interface to what WordPress needs. I hope in time people will build these for BuddyPress, but for now, you’ll need a developer to build it out for you.

    If you know PHP and the basics of how to build with WordPress, I can give you hints.

    #254250
    Paul Wong-Gibbs
    Keymaster

    Use the Repair Tools under wp-admin Tools > BuddyPress. There’s one to reinstall emails.

    Emails not sending in HTML means you probably have some plugin active that redeclares the wp_mail function — this doesn’t make sense to non-developers, I admit, but if you have any plugins that do things with emails for WordPress, that’s the likely candidate.

    #254247
    LavishDhand
    Participant

    @henrywright

    Thank you very much 🙂 I installed BuddyPress on a fresh WordPress install and yes there are defaults emails available. Since there is no export / import option, I am copy pasting and creating them one by one on my production site.

    For some reason, sent mails are not HTML. Only plain text mails are being sent. I will be thankful for any help on this too.

    #254245
    Henry Wright
    Moderator

    I doubt you’ll find a folder with them in it; instead, they probably get added to the database as part of the BuddyPress install routine. Try installing BuddyPress on a fresh copy of WordPress to see if they suddenly show up.

    #254242
    LavishDhand
    Participant

    So if they show by default, they should be the part of the zip bundle of BuddyPress? Should I try to find a folder in a fresh zip download from here? https://downloads.wordpress.org/plugin/buddypress.2.5.3.zip

    #254238
    sharmavishal
    Participant

    I would like them to be able to Register as well as Log in using their Facebook account

    use plugin wordpress social login..works like a charm

    I want users to register for blogging

    you want your users to blog from the bp frontend? if yes you need to use the following paid plugin

    BuddyPress User Blog

    #254227
    r-a-y
    Keymaster

    Earl – If you want to use W3 Total Cache’s page cache, but want to whitelist the registration and activation pages, you should be able to do that within W3TC.

    This is an old guide that I found on Google to show you how to whitelist pages in W3TC:
    https://www.itsupportguides.com/wordpress/w3-total-cache-how-to-exclude-posts-and-pages/

    For your needs, whitelist the /register/ and /activate/ page slugs or whatever you have those slugs set to in BuddyPress.

    #254223
    danbp
    Participant

    As i already said: it’s not possible actually.

    Perhaps in BP 2.6 (release: June 22, 2016)… See #6177 for more details.

    Maybe @djpaul can tell you more about this.

    #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

    #254218
    danbp
    Participant

    @ineedyou,

    when embeding a video into a blog post, and this video is a file (ie. xyz.mpeg) stored in the media library, WP build a link to this file. You can choose between url to file or url to an attachment.

    The post is published and appears as excerpt in the site activity. The video is not visible and the link is inactive. That is how it is meant to work.

    When you embed a video coming from one of the allowed online services, ie. youtube, WP create an iframe in which you see the video like you could see it on youtube.
    When this type of post is on the site activity page, the video is visible. This video is also visible in the publish screen (in visual mode) of the post. That is how it is meant to work.

    If you publish a BP update via what’s new form and add a, ie. youtube video link, you’ll see the video in the activity stream.

    On admin’s dashboard, the BP activity page doesn’t show the videos. That is how it is meant to work.

    Hope it’s clear. 😉

    r-a-y
    Keymaster

    @kalico – You should post your question on the CBOX forums:

    About the Project

    If the problem is with Docs, do post a bug report here:
    https://wordpress.org/support/plugin/buddypress-docs

    You could also try upgrading to the latest version of BuddyPress Docs to see if that fixes your problem.

    #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…

    #254195
    danbp
    Participant

    @sharmavishal,

    hi captain Haddock, i’m not in charge of a plugin list. 🙂 And latest information about this missing page can be found here.

    Actually, the only place to get a list of BP plugins is the WP repository.

    If you don’t want to miss specifically imath’s plugins, you can subscibe to his twitter account(@imath), or for any other plugin author, a solution could be to subscribe to WP plugins feed.
    https://wordpress.org/plugins/rss

    #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 - 6,376 through 6,400 (of 32,678 total)
Skip to toolbar