Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 16,751 through 16,775 (of 73,983 total)
  • Author
    Search Results
  • #245310
    Philosopher Rex
    Participant

    Note that this doesn’t just change tabs in groups, but in the profile as well. I had some issues ‘fitting’ in some words without making the text too small or resorting to wrapping the word (another CSS rule); so instead I used poedit to change the menu text.

    You can read about how to do that here: https://codex.buddypress.org/getting-started/customizing/customizing-labels-messages-and-urls/

    #245299
    Venutius
    Moderator

    Yeah I’m not aware of any that integrate with Buddypress, all of them seem to be their own variants on WordPress.

    #245297
    Venutius
    Moderator

    With Mediapress you need to save the settings at least once in order to get it to activate.

    After that you need to set a Gallery page in the Buddypress page settings.

    With that completed, users can create their own galleries and group admins can choose to have their own galleries too.

    Mediapress is still in Beta and changes pretty much daily so be sure you have the latest download.

    #245293
    danbp
    Participant
    #245290
    Venutius
    Moderator

    Maybe you could ask on the WordPress Forums? This is more a wordpress issue than Buddypress.

    #245275
    Venutius
    Moderator

    Think you need to raise this with the plugin forum

    #245270

    Got It!

    BuddyPress is one of the most amazing social network platforms you can have!

    Learning is amazing with Buddypress!

    Thanks a lot …Keep in touch!!!

    YOU ROCK!

    #245268
    mrsminkie
    Participant

    It sounds as though I’d be making the site much more cumbersome than it needs to be, and it already has a lot of plugins for functionality.

    I will test the multi-site with secondary BuddyPress blog one day, but for now, I’ve decided to just try and work within the theme as best I can.

    I do think that multi-site, although perhaps overkill, is what I needed to be able to keep my userbase constant and able to log into either site (area), while allowing content to be shared across the network.

    Thanks for your advice!

    #245262
    Henry Wright
    Moderator

    Do you mean BuddyPress users accessing the main WP site? BuddyPress users and WordPress users are the same, perhaps with different roles and capabilities but they all live in the users table. So two-way access shouldn’t be a problem.

    If you feel multisite is the way to go, then I’d suggest you set up a test install first to try it out. Creating a network will add lots of new tables to your install and rolling back won’t be easy.

    #245256
    mrsminkie
    Participant

    Also, this post tends to tell me that this is what I need: https://codex.buddypress.org/legacy/getting-started/install-buddypress-on-a-secondary-blog/

    Whereas WordPress says that multi-site is very separated and not for shared users. There is a lot of conflicting information out there.

    #245255
    mrsminkie
    Participant

    I understand what you’re saying about keeping things simple but unfortunately, the BuddyPress theme is very much orientated towards being a social network and isn’t suitable for standard pages, nor is it very easy to create custom templates for – I have already created quite a few to handle custom post types.

    Additionally, the main menu of the BuddyPress theme is an extension of the admin bar, and it doesn’t support a dropdown menu. I could only add choices to the profile dropdown (with profile, photos, friends etc.) which is far from ideal.

    #245253
    Henry Wright
    Moderator

    If I understand your requirements right, I wouldn’t use multisite for this. I also wouldn’t use separate installs.

    Considering you just need a main site area and a BuddyPress area, I would aim to keep things as simple as possible and address this problem with a custom theme. You can add a /your-theme/buddypress/ folder which contains all of your BuddyPress templates. Then it’s just a case of styling both the main area and your BuddyPress pages to look consistent.

    #245240
    AndyCEODigital
    Participant

    Why has this thread not been answered. I installed buddyPress yesterday, and I’m having the same problem on my Galaxy Not 3.

    #245239
    Henry Wright
    Moderator

    This all sounds feasible. BuddyPress is very developer friendly so building your own web apps and hooking into BuddyPress shouldn’t be a problem.

    The registration form is configurable and is fully customisable via the BuddyPress template hierarchy.

    Also, BuddyPress is free, so there’s no need to purchase.

    danbp
    Participant

    @jrunfitpro, thought BP Attachment is great, and MediaPress (files are on github) also.

    #245227
    William
    Participant

    @canadianmusicnetwork I don’t think you’re placing the code in the right place ( in a file called style.css). I tested the code on my buddypress site and changed the color to WHITE and it’s actually working.

    Here’s the code again:

    #buddypress #activity-stream p {
        margin: 5px 0px;
        color: #FFFFFF;
    }

    I logged in successfully.

    #245224
    William
    Participant

    Hi @canadianmusicnetwork

    Still can’t login but it’s OK. The below code was supposed to work if you cleared your browser cache and restarted it. If that wouldn’t work still you could have tried testing the site on another computer which you had not used to visit the site. If you had a browser that you hadn’t used to visit the site that could work too to help you see the changes made by this code.

    #buddypress div.activity-comments div.acomment-content {
        color: #FFFFFF;
    } 

    Also, make sure you’re placing that code in the right place “style.css”

    #245220
    William
    Participant
    #245212
    William
    Participant

    Please create a temporary buddypress user account for me so that I can log in and take a look.

    #245210
    William
    Participant

    @zabelator in that case, you’ll have to use jQuery and probably not CSS.

    Open “head.php” and add the following code.

    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
    	<script type="text/javascript">
    $(document).ready(function(){
    $("#buddypress .acomment-meta a, #buddypress .activity-header a, #buddypress .comment-meta a" ).click(function(oneb){
        oneb.preventDefault();
    });
    
    });
    </script>

    It should now work across the board. Note, this will be disabled even when the user is logged in so you might want to use php to load this script on home page only. Let me know if works.

    #245208
    William
    Participant

    @canadianmusicnetwork, Please remove the previous code and add this.

    #buddypress div.activity-comments div.acomment-content {
        color: #FFFFFF;
    }

    Lemme know if it works.

    #245200
    Henry Wright
    Moderator

    I suspected that might happen. The problem is here $willie = my_f();. In this particular case you can’t do that. I may have mislead you earlier so I’ve updated my reply here.

    #245199
    William
    Participant

    Hi @zabelator

    Try adding this to “style.css” in your active theme

    #buddypress .acomment-meta a, #buddypress .activity-header a, #buddypress .comment-meta a {
        text-decoration: none;
        pointer-events: none;
        cursor: default;
    }
    #245198

    William,

    Thanks for your answer, but unfortunately it didn’t work. Here’s the exact details of what I need done!

    IMAGE

    Thanks again. I’ll researching this issue until I can figure it out ..:)

    PS! The Canadian Music Industry Loves BuddyPress!

    #245194
    William
    Participant

    Hi @canadianmusicnetwork

    Try adding this to “style.css” in your active theme

    #buddypress #activity-stream p {
        color: #FFFFFF;
    }
Viewing 25 results - 16,751 through 16,775 (of 73,983 total)
Skip to toolbar