Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddyboss'

Viewing 25 results - 376 through 400 (of 570 total)
  • Author
    Search Results
  • #252754
    pixelpushermama
    Participant

    just bumping this to top….

    Julia, are you also running BuddyBoss or any of the other plugins I listed by chance?

    #251777
    @mcuk
    Participant

    Hi @neijisly, I tried your updated code but had no success with it. Thank you for trying though!

    Hi @shanebp, your code works great. Thank you! I don’t have any other plugins apart from BuddyBoss Global Search and BuddyBoss Edit Activity. So unless your code affects the functioning of another part of BuddyPress, then there shouldn’t be any conflicts.

    While looking at messaging I have just noticed that Private Messages don’t send when you select a recipient via the autocomplete dropdown (get a failed message saying username is incorrect). However if you manually type out the same username, the message sends fine. I haven’t yet searched the forum on this matter though so there may already be a solution out there. I’ll have a look.

    #249713

    In reply to: Few Issues

    David Cavins
    Keymaster
    #249179

    In reply to: Feature Questions

    modemlooper
    Moderator
    #248030
    mdbhojwani
    Participant

    @mrunal2989 Already using BuddyBoss…
    But I want to Create page functionality in our website that user can Add own page and other user can like that same like facbook…

    #247982
    mrunal2989
    Participant

    @mdbhojwani Google BuddyBoss theme.. They have amazingly crafted theme that looks similar to FB

    #247630

    In reply to: wall page

    shanebp
    Moderator

    The activity filter can be removed from the template.
    Ask BuddyBoss which one you should adjust and how.

    #247627

    In reply to: wall page

    shanebp
    Moderator

    BP does not provide a ‘wall’ tab.
    You are using a custom plugin or theme – perhaps BuddyBoss?
    Have you tried asking them>

    dishahsharma
    Participant

    You must check out BuddyPress Member Types.

    BuddyPress Member Types lets you create and manage member types without having to code. You can also allow users to choose their Member type while signing up and also through their profile options.

    #246798
    Charla
    Participant

    Try creating it as a function such as something like below or download the free plugin BuddyPress Reorder Tabs
    http://www.buddyboss.com/product/buddypress-reorder-tabs/

    
    function re_order_my_tabs() {
      global $bp;
      $bp->bp_nav[‘Activity’][‘position’] = 30;
      $bp->bp_nav[‘profile’][‘position’] = 20;
      $bp->bp_nav[‘notifications’][‘position’] = 10;
      $bp->bp_nav[‘messages’][‘position’] = 80;
      $bp->bp_nav[‘friends’][‘position’] = 70;
      $bp->bp_nav[‘groups’][‘position’] = 60;
      $bp->bp_nav[‘media’][‘position’] = 50;
      $bp->bp_nav[‘settings’][‘position’] = 40;
    }
    add_action( 'bp_setup_nav', 're_order_my_tabs', 999 );
    #245332
    shanebp
    Moderator

    @stockton – do you mean BuddyBoss theme?
    You should ask the theme authors about your issue.
    If you’re using multi-site, be sure to tell them that.

    #244975
    ckchaudhary
    Participant

    I’d vote for boss theme too. It looks awesome and is specifically built for buddypress network sites.
    http://www.buddyboss.com/product/boss-theme/. You might want to check its live demo.

    #241873
    shanebp
    Moderator
    #241724
    peter-hamilton
    Participant

    they sound as helpful as a chocolate watch at buddyboss.

    I dont use/like their plugins so can not help on that, but there is a very good plugin called “BuddyPress Like” which is brilliant and easy to use.

    #241695
    Paul Bursnall
    Participant
    Quinn Goldwin
    Participant

    Buddyboss support told me to do this… RESOLVED

    Set WP_DEBUG to false define(‘WP_DEBUG’, false); in your wp-config.php file, this is a known issue. It will not break the plugin functionality.

    Henry Wright
    Moderator

    Try checking the order using the TwentyFifteen theme and if the order is as expected, then that means there might be a problem with the Boss theme. If that’s the case, you should let the BuddyBoss team know so they can hopefully release a fix.

    #240812
    danbp
    Participant

    Base field name can be modified (from Name to Whatever), you’re right there are no visibility settings for this (required) group.

    If you made some custom work, (in bp-custom or theme’s functions.php) it’s important to revert back to original code first.

    You use Profildetails as group title. Is this the modified Base name ?
    On Boss live demo, Name is appearing.

    Have you tested with another theme like 2015 ?

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

    #239339
    rebekahmeuir
    Participant

    thank you @mercime I did try the 2015 theme after deactivating all plugins except BuddyPress, and same issue. Yes I can upload images and see thumbnails with 2015 theme and with my BuddyBoss theme. I still have the problem with profile images not working. I also have a new issue where private messages no longer work from inside BuddyPress. I am hosted with inmotion.

    #238255
    fugu78
    Participant

    Hi thanks for your reply. I am using a clean install. The joomla and WP sites are totally unrelated as they are installed on separate DB’s. This was a single install.

    It isnt a buddyboss issue as the issue happens without Buddyboss being activated.

    #238251
    danbp
    Participant

    @fugu78,

    you are using joomla on the mainsite and WordPress on the subdomain.
    Question is: is WP sharing the same DB as joomla or have you a complete separate install (db & cms) for your WP/BP site ?
    Which type of WP install do you use ? Single or network ? (more about)
    Are mainsite users and wp site users the same people ?

    BuddyBoss has his own support forum. You probably have better to ask there directly.

    #237588
    mrgiblets
    Participant

    Hey @danbp,

    Thanks for the tip but in the meantime I went and bought Buddyboss Wall and that seems to be doing the job perfectly.

    I think I was having trouble as I am using a completely blanked WP theme with everything stripped so I can style everything to my liking. But the css structure of both WP & BP can get very confusing at times 😉

    5high
    Participant

    Ok, I know it’s not the correct php way, but in lieu of any other option I’ve found how to remove showing it with css – posted in BuddyBoss here: http://www.buddyboss.com/support-forums/topic/1st-month-feedback-mobileresponsive-theme/ and I put this code…
    #buddypress #admins-list div.action a, #buddypress #mods-list div.action a, #buddypress #members-list div.action a, #buddypress #groups-list div.action a, #buddypress #friend-list div.action a{display:none;}
    in my child theme style.css file.
    Hope it helps other who are stuck too 🙂

Viewing 25 results - 376 through 400 (of 570 total)
Skip to toolbar