Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 5,251 through 5,275 (of 22,651 total)
  • Author
    Search Results
  • #246093
    Paul Bursnall
    Participant

    @yespapa This plugin will do exactly what you’re looking for – https://wordpress.org/plugins/jonradio-private-site/

    #246091
    mc9625
    Participant

    Hi, actually I’ve already added
    add_post_type_support( 'recipe', 'buddypress-activity' );

    to bp-custom.php in /wp-content/plugins. The recipes are counted in the “member activity stream”, but only the ones posted directly in the parent site, not the ones posted in the member’s blog.

    I think it’s a pity you can’t use a “blog” as the user profile page, or at least give the user profile page, the same kind of customisation as a full blog install. I think this is more a “Facebook” kind of approach, everyone will have more or less the same kind of page, with minimal customisation option (I guess the header profile). But since WordPress already has a multisite option, and Buddypress already support multisite environment, have the chance to use the user’s blog as if it were his “user profile” would have been a huge facility.

    #246090

    In reply to: Help loop activities

    William
    Participant

    @RafVin Here’s how to hide “All Members” tab with CSS.

    Find a file called “style.css” in the wordpress active theme, add the code below and re-upload the file.

    #buddypress div.item-list-tabs ul li.selected a {
        display: none !important;
    }
    

    Warning! When you update your theme, you’ll loose these CSS changes so try doing this in a child theme if you’d like to retain the changes when you update your theme.

    Showing custom tasks under personal? Well that requires some custom PHP coding or probably a plugin. Hopefully, someone will help you with this.

    #246089
    William
    Participant

    @konberg find a file called “style.css” in the wordpress active theme, add the code below and reupload the file.

    #buddypress .standard-form div.radio div label {
        text-transform: lowercase;
    }

    Warning! When you update your theme, you’ll loose these CSS changes so try doing this in a child theme if you’d like to retain the changes when you update your theme.

    Let me know if that works.

    shanebp
    Moderator

    The filter call is:
    apply_filters_ref_array( 'bp_get_activity_content_body', array( $activities_template->activity->content, &$activities_template->activity ) );

    Your function expects 2 parameters. Your add_filter call states there is only one.

    And there is only one – an array.
    Read about that kind of filter https://codex.wordpress.org/Function_Reference/apply_filters_ref_array

    Try something like this:

    function cshp_add_thumbs_to_activity( $array ) { 
         $post_id = $array[1]->secondary_item_id;
        //etc
    
        $array[0] = // new content
    
        return $array; 
    
    }
    add_filter( 'bp_get_activity_content_body', 'cshp_add_thumbs_to_activity', 15, 1 );
    #246080
    webguru13
    Participant

    Thanks for the reply on this and sorry just now getting back…life got in the way…can you explain in newbie elementary terms exactly what you were discussing in regards to having me show up as admin and not just looking like a logged in user on buddypress…what is happening is…when I log into my wordpress I show up on my webpage as like a logged in user..doesn’t say admin or anything…I want to be displayed as a admin/moderator for the site…how do I do this…in elementary terms please as I am new to WordPress although I have learned so much and have actually almost put up a complete website…but I am even newer to buddypress although I have it up on my site…these little kinks such as this one are getting in the way…thankful for this buddypress support forum….if you could help I would greatly appreciate it!! Rhonda

    #246062
    mrjarbenne
    Participant

    We had WordPress Multisite up and running on Windows Server 2008 for a few years before switching over to NGINX (we could never get the MS box to run quickly enough, and it needed to be restarted a fair amount when there was heavy traffic.)

    Before we made the switch, we hired Ruslan Y to look over our configuration and make suggestions for optimizing. They were some great suggestions. I’ve copied the document he shared with us here. I’m not sure if he still does this, but you could try.

    https://drive.google.com/file/d/0B9yl4no9k_c2eFdDNlU2dnNnNTA/view?usp=sharing

    Regardless of what plugin you end up using, it might be worth a few dollars to have someone look at your set up and optimize it. The biggest issue of running WP on IIS is that most support forums won’t have what you are looking for, and when you run into problems, you will be immediately dismissed because developers love to blame IIS for bugs when they hear you aren’t running on LAMP.

    #246043
    mrjarbenne
    Participant

    Just taking a guess here, but depending on your setup, you may not have the URL ReWrite module active. You need Pretty Permalinks to make BP work. Here’s a tutorial: http://www.iis.net/learn/extensions/url-rewrite-module/enabling-pretty-permalinks-in-wordpress

    #246042
    mrjarbenne
    Participant

    It doesn’t work like that. In a multisite instance, your users can all have their own blogs (think wordpress.com). What BuddyPress does is allow you to see all of the activity from those subsites in one Activity feed (among other things).

    I have set up the categories in the main site, and I expected to see the same categories on every site, but it doesn’t work.

    Although this isn’t a BP feature, there is a plugin that does this. It hasn’t been updated in a while, but you could test it out, or purchase support from Brajesh and request a fix if you run into issues:
    http://buddydev.com/plugins/mu-global-terms/. There’s a write-up on the plugin here: http://wptavern.com/wordpress-multisite-global-terms-plugin-share-taxonomies-across-a-network

    Also in the user activity stream I cannot see the posts the user has written in his own blog.

    That SHOULD work. You mention a custom post type though: is that the activity you are hoping to see? By default BP only shows posts and comments, not custom post types. You can register custom post types: https://codex.buddypress.org/plugindev/post-types-activities/

    If the subsite that you are hoping registers activity is set to discourage search engines in Settings/Reading then it won’t register on the main site.

    You may also want to try one of the default themes (twentyxx) to see if it’s your theme screwing things up. Many themes that tout themselves as BuddyPress-Ready, are doing some funky things best left to plugins in their functions.php file.

    #246040
    mrjarbenne
    Participant

    Check out this page, specifically option B: https://codex.buddypress.org/getting-started/installation-in-wordpress-multisite/

    If you Network Activate BP, but then change what BP considers it’s “home” by adding this constant as described in that codex article: define ( 'BP_ROOT_BLOG', $blog_id );

    Then bbpress activity from your main/root domain should populate the activity stream of your BP subdomain.

    #246011
    Paul Wong-Gibbs
    Keymaster

    Wonder if this is related to https://buddypress.trac.wordpress.org/ticket/6685 ?

    #246002

    In reply to: Welcome e-mail

    Henry Wright
    Moderator

    You could try Paul’s Welcome Pack plugin. It’s listed as not been updated in 2 years but it should still work.

    #246001
    Henry Wright
    Moderator

    Which theme is that? BuddyPress doesn’t ask for 2 usernames. The WordPress username and the BuddyPress username are one and the same. It looks as though your theme is asking for it twice

    #245986
    jasonqw1
    Participant

    http://162.208.8.170/wordpress/register-2/
    Here is the link to the registration form.

    As you can see, the Username under “Account Details” apparently is the wordpress defauly username. And the Username on the right side is the Buddypress one. Did I configure something wrong?

    #245977
    Paul Bursnall
    Participant

    The ‘active’ theme should always be the child theme. That’s not my opinion, that’s fact. And you don’t need to be a developer to use, or create one. Most premium themes are packaged with a child theme, and if you don’t have one, just add a plugin and create one. Then activate it. You will find no WordPress developer that doesn’t recommend the use of a child theme.

    Maybe this will help – https://www.elegantthemes.com/blog/resources/wordpress-child-theme-tutorial

    #245971
    Paul Bursnall
    Participant

    @william_oneb Please stop giving members advice to edit their active theme. All changes of this nature should always be made in a child theme. Check the codex – https://codex.wordpress.org/Child_Themes

    #245963
    William
    Participant
    #245955

    In reply to: Like Button

    Venutius
    Moderator

    If the go to the GitHub for this plugin, there is a development version you can download from there that works. Not sure why the author has not updated the version on WordPress.

    #245934
    Venutius
    Moderator

    What I did was to set the content pages and posts as private in WordPress and then I gave the member role the ability to view private content using a user role editor plugin

    #245913
    Venutius
    Moderator

    One plugin that might help with this is BuddyPress Group Extras

    https://wordpress.org/plugins/buddypress-groups-extras/

    #245905
    Venutius
    Moderator

    Have you tried PRivate Content?

    https://wordpress.org/plugins/private-content/

    #245895

    In reply to: Features and Requests

    Michael Bryner
    Participant

    Sorry, but I have to disagree there on the closing threads. I have not been here that much at all except for the styling only requesting and I don’t any deeper than half of the first page and that is not old threads and they are closed after just one response from the moderator that says get something done from the theme author. Is that good support? To me that is not even giving hardly any support and just closing it before we even can say another word.

    I am not even in here every day and still that is the way buddypress, wordpress, and bbpress sites support works. It is not old threads getting closed only. You say my threads are not what should be put in the support. All them been pretty much exactly where they should be request and features is where I asked for features and Ideas is an idea given for the features and the only post that is really out of place, which is not really that far out of place was the survey thread but really if you are this way with a business with normal customers. I would of been gone the first response to my thread being closed and never been back ever again.

    Telling someone that something should be done with a 3rd party theme over the plugin implementation is the wrong way to take it, especially when asking the theme author already and they give a rats *** about adding it to the theme. So to me to go somewhere else and get it done will not do a thing but waste out time. Not saying you did that Paul but your moderator does that. He basically tells us to get it done from something that really is not with the plugin at all and theme authors are not just going to add that feature because you won’t.

    I know you said that it will be and would be foolish not to but talk to you moderator about this because he is the one that is acting like there is no reason in this world that this plugin should not have styling at all.

    I feel sorry for this guy that wants to stay basic. I giving up on this forum if closing a thread after first reply is the way it works here. That is terrible support and surprised you think that is the way it should be, especially if someone is having the same question or issue and they search for that, they won’t be able to do a thing because those threads are never resolved and no answers and closed before they even do get them.

    All those renewed threads about the same exact thing all over again because of it, using all the database is pointless to me. I would never do that to my visitors on my own website on bbpress. I am this close to just uninstalling buddypress and only keeping bbpress on my website. Not all people are made out of money to buy or pay extras for things. I guess I will only get the right answer from Paul and I am either going to have buddypress or not by the time that finally updated buddypress with the so called promise that it will be done.

    Not trying to be an jerk here but telling me that old threads are closed and I open a thread that is not even a day old and says the thread is closed to new replies, is not an old thread. This kind of support in a forum is really bad to me and I would never want unlimited amount of the same threads about the same thing all over my website using up space for no reason. I think I am going to just say goodbye and probably never going to come back to this support forum ever again.

    I already never do anything on WordPress support because they just tell you to go somewhere else when it isn’t another company to ask about WordPress issues. I even don’t go to bbpress support anymore either. Now buddypress is going to be not anymore.

    Goodluck with future releases! Maybe I will stick with buddypress and maybe I will just say heck with it and take it off.

    This is not all towards you Paul but your moderator acting like this plugin needs no styling at all and getting it done through someone that has nothing to do with this plugin is really the most annoying thing someone would do. He acts like there is no other person in this world wants anything on this plugin but left the way it is. A person like that sounds just like the people stuck on Windows XP even with the support gone and just complains that there is no reason to even upgrade to get support.

    Sorry, I am pissed about this and now I am debating so hard whether to keep buddypress or not for his bad attitude towards others about this plugin.

    Henry Wright
    Moderator

    @paragbhagwat You could always submit a request on Trac to ask that the extra argument(s) you need be passed.

    Ref: https://buddypress.trac.wordpress.org/

    The username and password you use here in the forums will work there too.

    #245832

    In reply to: Problems with TopBar

    Paul Bursnall
    Participant

    From what I can see on a clean install of Kleo/Buddypress, the Top Bar has a menu location assigned to it in WP admin called ‘Top Menu’. This works the same as any other WordPress menu meaning you can add or remove items from that menu.

    In WP admin go to Appearance > Menus and select Top Menu. Under Screen Options (top right) ensure the Buddypress box is ticked (allows you to assign Buddypress links to any menu). You should be able to remove the links you don’t want to show from that menu, then save it.

    If you installed Kleo with the demo data it might be the case that these links were automatically added. But you should be able to remove them to your liking. There’s nothing going on here that Buddypress is automatically doing itself when it’s enabled.

    #245818
    Adalinka
    Participant

    @Masterpef- I really like how your profile page looks like.Would it be too much if I ask you how did you create it? Do I create a new page in wordpress and give it a profile name.And than Plugin works the magic? Or is there some code,I need to place in html editor? Or add to theme.php or sth? I am trying to understand how it works.. :-/ Thank you.
    Ps. How much do I actually need to know to build a membership site with BUddyPress? I mean how much of coding? How technical is it? Is there a step,by step detailed tutorial that maybe you have used?

Viewing 25 results - 5,251 through 5,275 (of 22,651 total)
Skip to toolbar