Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 56,026 through 56,050 (of 69,016 total)
  • Author
    Search Results
  • #69464
    Mariusooms
    Participant

    The updated version is currently ironing out bugs :)

    You can see and track the development here: http://sandbox.ywamcloud.com

    This site is using our new under development P2 BuddyPress theme. The plugin now uses a template page system which allows site admins to choose a blog layout for their group. Currently the Magazine style is set as default.

    We also added a lot of new option in the backend. In this group we share some more info and screenshots on that: http://sandbox.ywamcloud.com/screenshots/blog/

    Feel free to tinker around. I cleaned up some old groups and blogs, but don’t be afraid to break anything. I’d appreciate some testing as there are plenty bugs out there with this new development.

    @Anointed, I can actually honestly say I have no idea why the the_title would not show up, or the log errors. Can anyone confirm these errors in their logs as well? That would help localize. Hopefully upgrading in the future could help fix those issues.

    #69462

    In reply to: web.config TROUBLE

    takuya
    Participant

    BuddyPress nor WordPress doesn’t have such files called web.config

    Every file should be named as something.php. In WordPress, for example, wp-config.php

    I think it’s the smtp plugin you installed, which is causing the problem. Make sure the plugin is compatible with current versions of WordPress and BuddyPress.

    #69461
    jivany
    Participant

    First, fantastic plugin. I was planning to push my new site online this weekend but after seeing this plugin, I’m going to wait a little longer!

    I have one burning question though – Is there any way to grab the last X photos posted to the public activity stream? I want to put this on a “non Buddypress” landing page on my site as a quick photo stream to “entice” viewers to click into the activity stream, etc. I’m sure there’s a way, I’m just not seeing it.

    Thanks! I’m patiently waiting for Monday now!

    #69457
    3sixty
    Participant

    While this is an elegant hack, it just occurred to me that this is not optimal if you want to preserve an individual user’s ability to check blog comments in an activity stream. If I read the code correctly, it prevents blog comments from triggering an activity update in the database, so blog comments never get recorded as an activity.

    If that’s true, then it would be preferable to still RECORD the activity, but simply not DISPLAY it in the activity loop. Unfortunately, from this codex tutorial, it seems like the “filter” options only allow you to SHOW one type of activity (rather than filtering OUT one type of activity):

    https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-activity-stream-loop/

    #69450
    Paul Wong-Gibbs
    Keymaster

    This thread is going around in circles; I’m closing it. In a nutshell:

    If you want to offer your members their own blog, then you will need to use WPMU. The fact that each of your members has their own blog does not mean they have their own site. All the blogs are located on and served from your site.

    If you only want to have one blog but offer a social networking layer on top of that using BuddyPress, then single-version (solo-blog) WordPress is all that you need.

    You can use single WP and assign users a WP role of contributor or editor if you want users to post on the same blog.

    #69447

    In reply to: Admin Bar HTML File

    r-a-y
    Keymaster

    It’s not a HTML file, but rather a function that is located in /buddypress/bp-core/bp-core-adminbar.php.

    What are you specifically trying to do?

    If you’re trying to modify the BuddyBar, read this:

    https://codex.buddypress.org/how-to-guides/modifying-the-buddypress-admin-bar/

    Requires a bit of manual coding.

    Or you can also try this plugin:

    https://wordpress.org/extend/plugins/buddypress-admin-bar-mods/

    #69442
    kriskl
    Participant

    I had a quick test

    unfortunately it broke another plugin, ajax quote,

    :(

    has anyone else had the same problem maybe?

    #69441
    sueme
    Participant

    Sorted.

    You just need to insert !important in the CSS code just before the ; and it over-rides the original

    I created the child page as per https://codex.buddypress.org/how-to-guides/building-a-buddypress-child-theme/

    added an img folder and new image in that folder.

    in the css I put

    #header {

    background: url(full http url to new image.jpg ) !important ;

    }

    Thank you to both of you who pointed me in the right direction.

    muratk
    Member

    no I didn’t. If I do there will be 2 logins. this is not the case. Plugin should put the button under current login of BuddyPress default login.

    muratk
    Member

    I just tried this plugin. I don’t see any Facebook connect button… using BuddyPress 1.2.1

    #69419
    takuya
    Participant

    I think this “bp_core_get_username” is used only for one member. This doesn’t work on members-loop.php where it should list member names and avatars on the Members Directory.

    The function should be something equivalent to

    <?php bp_member_name() ?>

    But instead of member nickname it should return login ids of members.

    I just found the following custom function, but I wonder why this function is not built in by default.

    https://buddypress.org/forums/topic/display-username-in-members-directory#post-41928

    #69406
    PJ
    Participant

    Where can we download the theme? If it’s not out, what’s your estimated release date? Thanks

    nickrita
    Participant
    nickrita
    Participant

    Marius, I did exactly this, but it didn’t work, until I found another thread. The problem was, that the links were shown, but they didn’t give a result. To solve thist, here’s what Andy said: “You either need to write the AJAX function to handle this (you should be able to copy something from one of the core components) or put a class=”no-ajax” on the surrounding div. “

    So, using your funtion an adding the no-ajax class, my activity-loop.php in my child-theme now looks like this and it works. Thank you very much for your help!

    <?php /* Querystring is set via AJAX in _inc/ajax.php - bp_dtheme_activity_loop() */ ?>

    <?php do_action( 'bp_before_activity_loop' ) ?>

    <?php if ( bp_has_activities( bp_ajax_querystring( 'activity' ) ) ) : ?>

    <?php /* Show pagination if JS is not enabled, since the "Load More" link will do nothing */ ?>

    <div class="pagination">

    <div class="no-ajax"><div class="pag-count"><?php bp_activity_pagination_count() ?></div>

    <div class="pagination-links"><?php bp_activity_pagination_links() ?></div>

    </div></div>

    <?php if ( empty( $_POST['page'] ) ) : ?>

    <ul id="activity-stream" class="activity-list item-list">

    <?php endif; ?>

    <?php while ( bp_activities() ) : bp_the_activity(); ?>

    <?php include( locate_template( array( 'activity/entry.php' ), false ) ) ?>

    <?php endwhile; ?>

    <?php if ( bp_get_activity_count() == bp_get_activity_per_page() ) : ?>

    <noscript><li class="load-more">

    <?php _e( 'Load More', 'buddypress' ) ?>   <span class="ajax-loader"></span>

    <?php endif; ?></noscript>

    <?php if ( empty( $_POST['page'] ) ) : ?>

    <?php endif; ?>

    <?php else : ?>

    <div id="message" class="info">

    <p><?php _e( 'Sorry, there was no activity found. Please try a different filter.', 'buddypress' ) ?></p>

    </div>

    <?php endif; ?><div class="pagination">

    <div class="no-ajax"><div class="pag-count"><?php bp_activity_pagination_count() ?></div>

    <div class="pagination-links"><?php bp_activity_pagination_links() ?></div>

    </div></div>

    <?php do_action( 'bp_after_activity_loop' ) ?>

    <form action="" name="activity-loop-form" id="activity-loop-form" method="post">

    <?php wp_nonce_field( 'activity_filter', '_wpnonce_activity_filter' ) ?>

    </form>

    You can see it running on http://netzkritzler.de.

    The last page is not shown, I don’t know why, but that doesn’t really matter.

    #69401
    gewinncoach
    Member

    Hi there,

    I have just tried to install the plugin with a woo theme and cannot get it to work.

    1. I have modififes my .htaccess to:

    # BEGIN WordPress

    <IfModule mod_rewrite.c>

    RewriteEngine On

    RewriteBase /

    RewriteCond %{REQUEST_FILENAME} !-f

    RewriteCond %{REQUEST_FILENAME} !-d

    RewriteRule . /index.php [L]

    </IfModule>

    # END WordPress

    I have my permalink settings to: /%postname%

    The site is not showing an BP pages at all.

    I have tried the following links:

    http://leistungsakademie.com/blogs

    This gives me a 404

    also:

    http://leistungsakademie.com/wp-content/themes/coffeebreak/blogs/index.php

    The latter shows nothing…

    It´s not a server issue!

    Any idea?

    Thanks for your help!!!

    #69400
    idotter
    Participant

    is there already a possibility to vote ?

    #69394
    stwc
    Participant

    Awesome, Boone, and thanks. I’ll test it out as soon as I can.

    #69392

    In reply to: Introducing Gm3r.com

    user 510
    Participant

    Also,

    @dennissmolek

    We’re a little bummed that we didn’t get to launch with 1.2, but during full-blown development (we contracted a small firm to have this version developed) 1.1.3 was the only stable version. There’s a lot of custom work above-and-beyond WPMU & BuddyPress design-wise, so I’m pretty sure 1.2 would break the theme. I’ll have to install a clone soon to see exactly what will happen when we apply the upgrade to 1.2.

    We’ll be looking for a developer to join our team soon, but its slim pickings right now (how many people want to join yet another web startup with a barebones budget?). Hopefully we’ll get lucky and find someone passionate about our product!

    Down the line there are a ton of things we want to add, especially in the forums department (BP forums are severely lacking in comparison to offerings like IPB, etc). Even rich text options are missing right now, let alone the ability to insert images and embed video — there may be plugins out there but I’m not aware of any right now that work for 1.1.3.

    #69382
    xspringe
    Participant

    @Gpo1 That’s a great idea. Maybe they can work together with the MrMaz who already is working on a similar plugin that allows for not just photos but also other media attachments: https://buddypress.org/forums/topic/attachments-for-activity-items

    #69381
    Erlend
    Participant

    Thanks for the notice foxly. Still, I seem to not be getting it then. I have v0.1.6 installed on a WPMU BuddyPress install and all I can find is user albums. I expected group albums to pop up the same way the group wiki or group documents do, but no luck :(

    wandilly
    Participant

    Hello Ray, I hope you’re around

    I HAVE BEEN TRYING TO Follow:

    ” Making Your Theme BuddyPress Compatible”

    So, I can add support for BuddyPress to the existing “sliding door” WordPress theme that I have selected in marinprofessionals.com….they say it can be a straightforward process by following the setup instructions on the page…bellow is what I got:

    Step One : Move Template Files

    BuddyPress needs some extra template files in order to display its pages correctly. This plugin contains these extra templates, but right now they are in the plugin directory. They need to be inside your active theme directory to work correctly. First of all we can try moving them automatically, please click the button below to attempt to move the templates:

    Step Two : Templates moved successfully!

    The templates moved successfully! This is great news, BuddyPress templates are now in the correct position in your theme which means you can skip step two and move on to step three.

    Step Three : Templates moved successfully!

    Now that the template files are in the correct location, click through your site (you can come back to this page at any point). You should see a BuddyPress admin bar at the top of the page, try visiting some of the links in the “My Account” menu. You should find that BuddyPress pages now work and are displayed.

    BUT

    I don’t see the words buddypress on the website marinprofessionals… so I was hoping you help me see what I am doing wrong….

    #69379

    In reply to: BP Album vs BP Gallery

    Pedro Miguel
    Participant

    Its a little offtopic but the subscription at Brajesh Singh site (buddydev) really woth every cent/penny

    You can find support to many questions about buddypress integration and code snippets. Brajesh Singh is really a nice person.

    I’m/was a subscriber on several developer communitys, for instance incsub with wpmudev I consider the price is really really high for the kind of quality of plugins/templates. both are allways full of bugs, I feel like a paid beta tester there and if you read the foruns every time you make a question, wpmudev staff simple point to wp/bp codex. Even on premium foruns.

    Another example is gavaity forms plugin, I ask a question about a bug on the plugin at more than 24h and dont receive a single “we are looking on that”.

    So my main point here is $30 for 90 days subscription is nothing with the quality provided.

    #69378

    In reply to: bbpress and buddypress

    firetag
    Participant

    yeah I’m just going to have to them it seperately. lol I was just trying to save myself some work…figured i’d ask…anyway thanks for the great post man and that welcome pack plugin looks great.

    #69375
    Pedro Miguel
    Participant

    its safe to upgrade form ver 0.1 to 0.2?

    I’m already using this plugin on a live site and dont want to mess with user already defined privacay.

    btw. great job!

    #69373
    r-a-y
    Keymaster

    You should probably look at the “Auto Join Groups” plugin:

    http://brentandmary.net/2009/10/24/bn-auto-join-group-plugin/

    It does what you want it to do, but automatically from the admin area.

    Haven’t tested this in BP 1.2 though.

    Might want to contact the dev of that plugin if it doesn’t work.

    Also it is quite easy to modify DJPaul’s Welcome Pack plugin to auto-join groups as well.

    See my post here:

    https://buddypress.org/forums/topic/bbpress-and-buddypress-1#post-43925

    Update:

    Just came across a plugin called “BP Registration Groups”:

    http://hardlyneutral.com/wordpress-plugins/

    Purports to do exactly what you want, Bowe.

Viewing 25 results - 56,026 through 56,050 (of 69,016 total)
Skip to toolbar