Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 5,701 through 5,725 (of 22,602 total)
  • Author
    Search Results
  • #240437
    shanebp
    Moderator

    The plugin needs to be compatible with BuddyPress, not vice versa.
    You should contact the plugin author and make that request.
    https://wordpress.org/support/plugin/buddypress-cover-photo

    #240408
    mrjarbenne
    Participant

    I find this plugin incredibly helpful when managing — and allowing others to manage — the membership of groups, without availing them to the dashboard: https://wordpress.org/plugins/invite-anyone/

    #240401

    In reply to: Sponsored Ads

    Henry Wright
    Moderator

    Hi @mecceo

    Yes. You have 3 options:

    #240361
    Henry Wright
    Moderator

    Is the Buddypress avatar handled the same way as the normal WordPress thumbnails? i.e. functions?

    No. See the bp_core_avatar_handle_upload() function for how avatars are uploaded in BP.

    Ref: https://github.com/buddypress/BuddyPress/blob/master/src/bp-core/bp-core-avatars.php#L794

    #240314
    shanebp
    Moderator

    Since the member’s user name is ‘admin’, it will show as ‘@admin’.
    You can’t change the user name after registration – unless you go directly into the database via a tool like phpmyadmin.
    Or use a plugin like:
    https://wordpress.org/plugins/admin-renamer-extended/

    also – you shouldn’t use ‘admin’ as a user name.
    https://codex.wordpress.org/Brute_Force_Attacks#Don.27t_use_the_.27admin.27_username

    #240311
    r-a-y
    Keymaster

    You’ll have to create your own messages adminbar menu.

    You can create a new menu item using:
    https://codex.wordpress.org/Function_Reference/add_node

    Or if you’re not using the WP Adminbar and have hardcoded that menu by yourself, you do not have to do anything.

    Next, I would probably use JS to load the messages loop when you click on the “Messages” adminbar icon with AJAX.

    shanebp
    Moderator

    …the search profile form…

    Are you referring to this plugin:
    https://wordpress.org/plugins/bp-profile-search/

    If so, you should use Andrea’s support forum:
    https://wordpress.org/support/plugin/bp-profile-search
    or

    BP Profile Search Forum

    Your option could be added, but will require coding ability, afaik.

    #240285
    xprt007
    Participant

    Hi

    Thank you for responding.
    I tried a few other themes including twentythirteen & Mesocolumn – no difference.
    Then today I disabled all plugins except buddypress & bbforum.

    Observation:
    #1. The mentioned links worked.
    #2. I then first activated a number of security plugins + Hyper cache plugin. Problem back, of page not found, until I deactivated Hyper cache.

    This was solved by reading this article => http://www.buddyboss.com/buddypress-speed-and-performance/ & doing this:

    By default this plugin will cache all of your site’s pages, including your BuddyPress-specific content like activity posts and forum posts. This is not good, as your BuddyPress content is constantly updated and needs to remain fresh. To fix it add the following lines into “URI to reject” in the “Filters” settings panel of Hyper Cache:

    /forums/
    /groups/
    /members/
    /activity/
    /blogs/
    /messages/
    /register/
    /activate/

    … I think current plugin terminology is “Exact URIs to bypass” & “(Starting with) URIs to bypass”, which I did and clearing the cache.

    #3. As I continued activating, I discovered the used https://wordpress.org/plugins/404-to-start/ also causes if I try to go to my profile page or for example /members/user-x/, etc to re-direct to site front page, with no error.

    I have to look into this later. The other plugins I had tried before caused some issues, so I was happy with this re-direct plugin.

    Will report back, at least if I get a response from author or get a plugin not causing issues, someone could recommend one ;).

    Thank you & regards.

    Dono12
    Participant

    Yes it is related to “Messages > Starred”. There is nothing wrong with the new feature. It’s this function that I found online that’s causing a conflict.

    /* ——————————Start BP Post in profile code for function——————– */
    function importSomething(){
    return include_once ‘bp-custom.php’;
    }
    add_action( ‘bp_setup_nav’, ‘buddyboss_child_bp_nav_adder’ );
    add_action( ‘bp_template_content’, ‘profile_buddyboss_child_loop’ );
    bp_core_load_template( apply_filters( ‘bp_core_template_plugin’, ‘members/single/plugins’ ) );

    function buddyboss_child_bp_nav_adder() {
    global $bp;
    $post_count = count_user_posts_by_type( $bp->displayed_user->id );
    bp_core_new_nav_item(
    array(
    ‘name’ => sprintf( __( ‘Posts <span>%d</span>’, ‘my-poems’ ), $post_count ),
    ‘slug’ => ‘Articles’,
    ‘position’ => 250,
    ‘show_for_displayed_user’ => true,
    ‘screen_function’ => ‘buddyboss_child_list’,
    ‘item_css_id’ => ‘articles’,
    ‘default_subnav_slug’ => ‘public’
    ));
    }
    function buddyboss_child_list() {
    add_action( ‘bp_template_content’, ‘profile_buddyboss_child_loop’ );
    bp_core_load_template( apply_filters( ‘bp_core_template_plugin’, ‘members/single/plugins’ ) );
    }
    /*——- This is end of the code for above function ———*/
    function profile_buddyboss_child_loop() {
    $myposts = get_posts( array(
    ‘posts_per_page’ => -1,
    ‘author’ => bp_displayed_user_id(),
    ‘post_type’ => ‘post’
    ));
    if( ! empty($myposts) ) {
    foreach($myposts as $post) {
    setup_postdata( $post );
    if (has_post_thumbnail( $post->ID ) ):
    $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), ‘sidebar-smallthumbnew’ );
    else :
    $image[0] = “…/wp-content/themes/Starkers-Child-2/images/vidimage.jpg”;
    endif;
    echo ‘<li class=”sidebar mostpop post-‘ . $post->ID . ‘”><div id=”postimage”>ID) . ‘”></div><div id=”postinfo”>ID) . ‘”>’ . get_the_title($post->ID) . ‘</div>‘;
    }
    echo ‘‘;
    wp_reset_postdata();
    } else { ?>
    <div class=”info” id=”message”>
    <p><?php bp_displayed_user_fullname(); ?> has No posts.</p>
    </div>
    <?php }
    }
    /* This is end of the code for above function */
    remove_filter(‘bp_setup_nav’,”);
    function count_user_posts_by_type( $userid, $post_type = ‘post’ ) {
    global $wpdb;
    $where = get_posts_by_author_sql( $post_type, true, $userid, true);
    $count = $wpdb->get_var( “SELECT COUNT(*) FROM $wpdb->posts $where” );
    return apply_filters( ‘get_usernumposts’, $count, $userid );
    }
    /* ——————————This is end of the code for post in profile above function——————– */

    It adds a new button on the user activity page and when the Message-Starred button is clicked it takes the user the lists of post page that the above function creates. How can I stop that fro happening. I really want to keep the starred message function and I don’t want to lose the lists of WordPress post in the user Activity page.

    #240265

    In reply to: Username problems

    Henry Wright
    Moderator

    Hi @zenimot

    See 5185 for some background and a discussion on the topic.

    #240264
    mcpeanut
    Participant

    cool he will probs read this when hes online, this is the thing with buddypress, i just didnt understand when i first came to these forums a few years ago even though i had been comming longer without registering, I myself had shared hosting and thought yippee i have found a plugin that i was looking for and installed it, then after messing around with buddypress it dawned on me that shared hosting just was not gonna cut the ice with buddypress let alone wordpress for a serious install.

    I then decided to delve into the world of dedicated/vps servers. I am by no means an expert in this world yet but i believe from my own experience that it is a very daunting task moving to these kind of setups at first, once you get the basics of initial setup and general security right its then time to tweak everything for future proofing and scaling and performance tweaking if your serious about the future of your website, unless your willing to pay ALOT of cash out to people who can do his for you full time.

    This is why i sort of pushed my buddypress websites design back in favour of looking into all this. I think this is one of the biggest points concerning every website build and believe that not enough info is out there to make people understand just how important all this is to succeed with their websites, alot of people see these one click easy installs and adverts off companys telling them to come build your website with us its easy then see wordpress installed and think yippe look at my new website and what it can do, until of course they then get popular crash and burn then fail and give up because they just dont understand the reality involved in pushing forward a scalable environment. This is why i believe people doing a massive project such as buddypress should really be able to share this info with each other from nivice users to experts in this field.

    #240258
    Henry Wright
    Moderator

    Hey @mcpeanut

    Check out the Nginx WordPress article; it may help whilst you’re waiting for a response.

    #240240

    In reply to: Logged in Links

    Bradley Allen
    Participant

    Well, it would be nice to do this without a plugin 🙂

    However, this plugin seems to work fine
    https://wordpress.org/plugins/menu-items-visibility-control/

    #240218
    r-a-y
    Keymaster

    @jturet – You can make this corresponding change to /buddypress/bp-core/bp-core-catchuri.php for now until v2.3.1 is released:
    https://buddypress.trac.wordpress.org/changeset/9916/branches/2.3/src/bp-core/bp-core-catchuri.php

    shaquana_folks
    Participant

    Sorry I forgot to tag you in the previous message @henrywright

    Activated plugins from my end:

    Akismet (Version 3.1.1)
    bbPress (Version 2.5.7)
    BuddyPress (Version 2.3.0)
    Contact Form 7 (Version 4.1.2)
    Contact Form Shortcode (Version 0.9)
    Jetpack by WordPress.com (Version 3.5.3)
    MOJO Marketplace (Version 0.6.0)
    SZ-Google (Version 1.8.9)
    W3 Total Cache (Version 0.9.4.1)
    WordPress Importer (Version 0.6.1)
    wp responsive photo gallery (Version 1.0)
    iFlyChat (Version 2.9.2)

    shaquana_folks
    Participant

    Akismet (Version 3.1.1)
    bbPress (Version 2.5.7)
    BuddyPress (Version 2.3.0)
    Contact Form 7 (Version 4.1.2)
    Contact Form Shortcode (Version 0.9)
    Jetpack by WordPress.com (Version 3.5.3)
    MOJO Marketplace (Version 0.6.0)
    SZ-Google (Version 1.8.9)
    W3 Total Cache (Version 0.9.4.1)
    WordPress Importer (Version 0.6.1)
    wp responsive photo gallery (Version 1.0)
    iFlyChat (Version 2.9.2)

    #240200
    Henry Wright
    Moderator

    If you just need a quick and dirty approach for yourself to view, you could use the standard group loop to output a loop. See here.

    Then put the following snippet directly after the line: <?php while ( bp_groups() ) : bp_the_group(); ?>

    Snippet:

    <?php
    $args = array(
        'populate_extras' => true,
        'group_id => bp_get_group_id()
    );
    $group = groups_get_group( $args );
    
    if ( ! in_array( bp_loggedin_user_id(), $group->admins ) ) {
        continue;
    }
    ?>

    Notes:

    • I haven’t tested
    • This approach won’t be performant
    • I haven’t considered pagination

    That said, it should get the job done. The alternative is to write some SQL and use the wpdb class.

    #240192

    In reply to: Public User Gallery ?

    Henry Wright
    Moderator

    Hi @butterzeugs,

    Here are a couple of options:

    #240190

    In reply to: End User Blog

    Gnostic_Thought
    Participant

    Thanks for all your help. I don’t think I would need multisite at the moment, maybe when my site grows to have more dedicated bloggers. Can you give me your opinion on a plugin called Buddyforms http://themekraft.com/store/wordpress-front-end-editor-and-form-builder-buddyforms/

    It looks better than BuddyBlog

    Thanks once again

    #240174
    Hugo Ashmore
    Participant

    I can confirm that the url path is stripped out but the actual members page should still work either directly navigated to or clicking the page link as nested under a parent dropdown which should result in page being found but at it’s root position my-site.com/members/

    Can we confirm that the page does still exist and is viewable, in the meantime I’ll open a trac ticket to log the page hierarchical issue.

    This issue is ticketed for looking into:
    https://buddypress.trac.wordpress.org/ticket/6475#ticket

    #240168

    In reply to: Group tab questions

    mrjarbenne
    Participant
    #240167
    mrjarbenne
    Participant

    You can do that by adding this constant in wp-config.php

    define ( 'BP_ROOT_BLOG', $blog_id );

    I’m thinking you probably want option B: https://codex.buddypress.org/getting-started/installation-in-wordpress-multisite/#b-network-wide-activation-buddypress-root-blog-in-secondary-site

    #240163
    mrjarbenne
    Participant

    Add this to the style.css file of your theme:

    /*Fix for hiding the Login menu on Mobile*/
    #wp-admin-bar-root-default #wp-admin-bar-bp-login {
    	display: block;
    }

    If you don’t want to have to edit your theme every time there is a theme update, you could use something like this to add the CSS from the dashboard: https://wordpress.org/plugins/simple-custom-css/

    #240156

    In reply to: End User Blog

    mrjarbenne
    Participant

    MS integrates wonderfully with BuddyPress. When network activated on a Multisite, activity from across the network is recorded on the users Profile. Just be sure to check Site Tracking under Settings/Buddypress once you network activate BuddyPress (https://cloudup.com/i_-p1kJGUwd). Once upon a time, BP was ONLY compatible with Multisite: you couldn’t run it on a single WP install.

    Note that this will give your users the ability to have their own blogs. This is separate from the ability to post from the front end. For this you would need to make a theme like P2 your network default. http://premium.wpmudev.org/blog/how-to-set-the-default-theme-for-wordpress-multisite/

    #240147
    mrjarbenne
    Participant

    Does this plugin fit your needs: https://wordpress.org/plugins/rendez-vous/

Viewing 25 results - 5,701 through 5,725 (of 22,602 total)
Skip to toolbar