Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddyboss'

Viewing 25 results - 501 through 525 (of 679 total)
  • Author
    Search Results
  • 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 🙂

    #236182
    angslycke
    Participant

    Hi!

    I recently upgraded my site with a new theme (BuddyBoss Boss. theme) and am running WP 4.1.1 and upgraded from BuddyPress 1.9.2 to 2.2.1.

    I have a setup where I redirect the activation e-mail to the site admin to be able to manually control new members and verify their information before activating them and letting them log in. This is a cruical function for my site since it’s a private network.

    After the upgrade I noticed that some spam users were automatically activated and able to log in without my manual activation. The users are automatically activated, the same issue as @RussAdams is experiencing. I’ve tried deactivating a few plugins (BuddyPress Pending Activations, BuddyPress Auto Group Join) but this issue persists. In BuddyPress 1.9.2, everything was working as expected.

    Browser sessions doesn’t seem to be the issue since clearly people on other computers have been able to create accounts which were automatically activated as well.

    This is a very serious issue for my site since I no longer have the control over new users and spam users can log in after activating. Did you get this sorted out?

    #236084
    full moon
    Participant

    Okay, so I think I have a working resolve. Using buddyboss theme, I have removed the below code.

    <li id="activity-all"><a>" title="<?php esc_attr_e( 'The public activity for everyone on this site.', 'buddyboss-mobile' ); ?>"><?php printf( __( 'All Members <span>%s</span>', 'buddyboss-mobile' ), bp_get_total_member_count() ); ?></a></li>

    and selected

    <li class="selected" id="activity-mentions"><a>" title="<?php esc_attr_e( 'Activity that I have been mentioned in.', 'buddyboss-mobile' ); ?>"><?php _e( 'Mentions', 'buddyboss-mobile' ); ?><?php if ( bp_get_total_mention_count_for_user( bp_loggedin_user_id() ) ) : ?> <strong><span><?php printf( _nx( '%s new', '%s new', bp_get_total_mention_count_for_user( bp_loggedin_user_id() ), 'Number of new activity mentions', 'buddyboss-mobile' ), bp_get_total_mention_count_for_user( bp_loggedin_user_id() ) ); ?></span></strong><?php endif; ?></a></li>

    the main feature being class=”selected” at the beginning to auto select this tab. So even if the user has no friends, then this Tab will still be available, making the All Members updates not viewable.

    lets see how this goes…..

    #236007
    rosyteddy
    Participant

    And it seems, the two shall never meet ……

    http://stackideas.com/forums/switched-from-joomla-to-wordpress-after-jreviews-port-wish-stackideas-would-consider-porting-easysocial-the-same-way

    BTW @statusselect, have you been able to use https://www.corephp.com/joomla-products/wordpress-for-joomla with Easysocial with Likes/Favs comment sync between the two – stream to blog, blog to stream

    The two things lacking in BP after I saw Easysocial in some details is the
    – Sharebox – it comes with nice at mention and hashtag ( hashtag plugin in BP is not Unicode compliant)
    – Album and photo – nicely built into core – something not in BP’s agenda with their own reasoning.

    The Sharebox which Easysocial uses can be instantly done in BP by someone who has some coding skills and BP love using the plugins avaialble – buddypress activity plus, buddypress privacy, bp checkins, Event Manager and a Media plugin. But then ….

    Easysocial theme is responsive in a fantastic way and similar BP theme like the Boss of Buddyboss costs $100+ while Easysocial, without the bbundle is $90 – so this may be another attractive point for those who need Social more than multiuser blogging. Easysocial is lesser known till now and probably they do not have a favorable stance towards WP.

    And the two shall never meet ….
    People shall choose whatever they want, and BP devs and debvelopment will follow the path that suits them best. One thing is true, if BP was something like Jetpack, things would have evolved faster, imho

    Thanks.

    #235437

    In reply to: Activation Issue

    joeyaberle
    Participant

    Went down to zero plugins, except BuddyPress. Changed to the BuddyBoss parent theme and Twenty Fifteen.

    #235040

    In reply to: Activation Issue

    joeyaberle
    Participant

    Theme is BuddyBoss 4.1.5.

    Plugins, I have stripped down to the bare minimum, to keep my site somewhat functional (all are updated to latest version):
    Akismet
    bbPress
    BuddyBoss Media
    BuddyBoss Wall
    BuddyPress
    BubbyPress Captcha
    BuddyPress Security Check
    iframe
    Jetpack
    Jetpack Only For Admins
    Remove Dashboard Access

    I even deactivated most of these to strip it down even more and created a new account. Still having the issue.

    #234553
    danbp
    Participant

    Hi @sklemenc,

    you use a commercial theme and need support, please go to their official support channel. In order to be good stewards of the WordPress community, and encourage innovation and progress, we feel it’s important to direct people to those official locations.

    Forum volunteers are also not given access to commercial products, so they would not know why your commercial theme or plugin is not working properly. This is one other reason why volunteers forward you to the commercial product’s vendors. The vendors are responsible for supporting their commercial product.

    dzagya
    Participant

    I am using BuddyBoss 1.0.5 – I am pretty sure these social fields are included in the new release.

    I’ll address the request to them.

    Thanks

    dzagya
    Participant

    ah yah!
    my mistake – this is a BuddyBoss theme issue.

    many thanks @danbp

    Dan

    #234119
    milenushka
    Participant

    Hi @henrywright,

    I am using buddyboss (child theme), tested it with default wp theme and buddyboss parent.

    I also found this thread https://buddypress.org/support/topic/forum-in-private-groups/ started a few weeks ago, and I think @melle328 is right, this happens if the group is first set as public and later changed to private or as in my case- group forum is set to public first and then chosen as the private’s group forum.

    So far it seems that if users create a group and a forum and later change their settings- the activity privacy is not updated. I keep testing different options as we speak, so I find something new, I will post it too.

    #233701

    In reply to: Updating

    Mathieu Viet
    Moderator

    Hi,

    Sorry to read you’re having an issue after updating to latest version.

    The problem is due to the BuddyBoss media plugin. It looks like it’s calling a BuddyPress function too early in the process. Unfortunately, it’s a premium plugin so it’s hard for me to find what’s going wrong. Could you contact the support team of this plugin to report the problem ?

    If the support team needs any help, i’ll be glad to bring my hands on it.

    #232844
    r-a-y
    Keymaster

    Try using a WP default theme besides BuddyBoss and see if you still experience the same problem.

    If there is still an issue, it might be a plugin conflict.

    shanebp
    Moderator

    Since BuddyBoss is a premium theme, your purchase entitles you to paid support.
    So you’re better off asking those questions on the BuddyBoss support system.

    #232429
    BuddyBoss
    Participant

    Default BP does allow to see other users’ Favorits in the Favorit tab in Profile page – why does Buddyboss kills this? At least site admin should be able to turn it on or off.

    I see what you mean. We will consider adding an admin option.

    Buddyboss is never meant to load every plugin but if a chosen few are bundled, it will be really good rather than re-inventing wheels at premium plugins, features of which are already available in the WP-BP repo. If users like us see thay they are well integrated into the Buddyboss look and feel there can be more sales of the Buddyboss theme actually.

    I appreciate all of the feedback, very much. Our plan is to expand on these plugins and make them more feature rich, launch more premium plugins and themes, and also free plugins for the community over the year.

    We launched two free plugins this week which you may be interested in:

    Search all BP components in one unified dropdown:
    https://wordpress.org/plugins/buddypress-global-search/

    Edit BP activity from the front-end:
    https://wordpress.org/plugins/buddypress-edit-activity/

    #231925
    ronia
    Participant

    @buddyboss

    but the tab to see all of their Likes is only available to them for privacy reasons.

    In BP-buddyboss river, everyone can see what I have liked – so it is not private. Default BP does allow to see other users’ Favorits in the Favorit tab in Profile page – why does Buddyboss kills this? At least site admin should be able to turn it on or off.

    Wall does not have every FB feature,

    buddypress-activity-plus allows to post link, video etc quite nicely and is thus more user-friendly than the premium Wall plugin, imho. There is also a plugin by Brajesh that allow front-end blog posting via BP

    Buddyboss is never meant to load every plugin but if a chosen few are bundled, it will be really good rather than re-inventing wheels at premium plugins, features of which are already available in the WP-BP repo. If users like us see thay they are well integrated into the Buddyboss look and feel there can be more sales of the Buddyboss theme actually.

    We may make a spam solution at some point in time. This is a tricky one. Every solution you make only works for a bit, then the spammers figure out your tactic and update

    Let wp com users at least post to pre-sales and/or free discussion forum. You can do this via jetpack

    #231903
    disha76
    Participant

    I actually would have missed since this thread has become old! But thanks for responding at last.

    1) Can I “Like” from a blog post and it will show in the activity stream? And vice versa?
    2) Can an user see a collection of another users’ Likes? In the demo I saw this missing
    3) How does the theme behaves in WP Multisite set up and/or with a standard 3rd party plugin eg buddypress-activity-privacy.1.3.3?
    4) Media solution by buddyboss is separately priced but seems incomplete:
    – Cannot mark directly on photo, see photo tagging in FB or other php scripts
    – Cannot do multiple ( but max number settable by site admin) photo upload simultaneously
    – Media files not integrated in WP media etc
    5) How does the interface look like when one submits a blog – is he thrown out of the theme?
    6) Less important – Wall comes as a separate premium plugin but does not let you post blog/event/location – nothing except photo. It has also only river display – some premium themes similarly priced offers both river and card display. No profile cover photo also ?

    True, we used to have an open forum, but we had too many spam signups and closed it to customers only.

    I will request you to make a custom solution for yourself to prevent spam signups. This will be more creditable stuff encouraging us to go for custom solutions to Buddyboss. Thanks again.

    #231900
    Paul Bursnall
    Participant

    @greghyatt

    My advice would be to use this plugin instead for a wall:

    BuddyBoss Wall

    There’s nothing in this for me, it’s purely a recommendation. But the guys at BuddyBoss are very good.

Viewing 25 results - 501 through 525 (of 679 total)
Skip to toolbar