Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 2,601 through 2,625 (of 31,071 total)
  • Author
    Search Results
  • #276142

    In reply to: Online members status

    Prashant Singh
    Participant

    BuddyPress Widgets

    BuddyPress itself provides a widget for that.

    Thanks

    #276141
    Prashant Singh
    Participant

    Removing the sidebar depends on what theme you are using, also please let me know, do you want to remove from profile only or other pages as well.

    You can check this link as well: https://buddydev.com/support/forums/topic/remove-sidebar-on-buddypress-profile-page/

    Commandrea
    Participant

    For some reason every member is showing under the ‘friendship requests’ tab on the profile page instead of just people that requested them. Some of the members are still listed as ‘never active’ but show under the request lists. Even brand new members immediately see all of the other members listed under requests w/ the option to accept or reject. Clicking ‘accept’ or ‘reject’ does nothing.

    It’s a paid site but I can grant access if someone can help!

    Friendship Request page

    Buddypress 3.1.0 latest version
    Wordpress 4.9.8
    Theme WordPress Twenty Seventeen
    Switched to Twenty Fifteen same results.
    Using with Paid Membership Pro/Theme My Login

    #276078
    kkk1066977
    Participant

    I have the same issue. I am currently using an Avada theme. My user profiles were working perfectly fine. Now they are just showing a blank page. I have tried deleting the buddypress plugin and reinstalling it but that has not helped. I have checked the pages that buddypress creates but these are blank, when viewed through the backend of wordpress. Any help on this problem?

    shanebp
    Moderator

    There is no setting for that, afaik.

    But there is code you can use – place the code in your theme/functions.php or in bp-custom.php

    Read about the filter towards the bottom: https://codex.buddypress.org/emails/

    More info: https://buddypress.org/support/topic/change-the-email-from-name-buddypress-email-templates/

    #276065
    shanebp
    Moderator

    @bonjarvis – thanks for the update. It is most often the case that the error is caused by code outside of BP – but determining the cause can be tricky. Momentarily deactivating plugins and/or switching themes is a solid first step.

    If somebody thinks they have found an actual bug, they can create a ticket here

    #276064
    shanebp
    Moderator

    afaik, there are no other template packs for BP, only complete themes.

    #276057
    bonjarvis
    Participant

    I found the error on my membership site, it was a conflict and error with the theme I use. I contacted the theme builder and they fixed the issue so its fixed on my site. What I did to find the problem was build a staging site so I could turn off plugins and the theme. When I changed the theme to another in the staging site, the profile showed again. Then I found an error in the php error log and could see it was an issue with my theme. Good luck to you, I hope you can find the issue in your site.

    #276024
    aggelos1986
    Participant

    Thank you @venutius. I will contact the theme creator to mention the error to them.

    #276023
    Venutius
    Moderator

    It looks like your theme needs updating, it’s calling a function that no longer exists – bp_is_user_forums()

    #276002
    Prashant Singh
    Participant

    If you can check whether sidebarbis enabled on the page or not, yhen you will get an idea. Also to add anything on page you have to override the activity template in your child theme or have to use hooks to echo somethimg there.

    Thanks

    Prashant Singh
    Participant

    It will be custom work. You can add this code snippet in your child theme’s functions.php to achieve this:

    add_filter('bp_core_signup_send_validation_email_message','ps_user_data_to_email',10,2);
    function ps_user_data_to_email( $msg, $user_id )
    {
      $user = get_user_by( 'id', $user_id );
      if(!empty($user))
        $data1 =  xprofile_get_field_data('your_first_field_name',$user->ID);
        echo 'Your Profile Field Name'. ' : '.$data1;
        $data2 =  xprofile_get_field_data('your_second_field_name',$user->ID);
        echo 'Your Profile Field Name'. ' : '.$data2;
    }

    You can do this for all the profile fields by just repeating the code to get data3 data4 like I did for data1 data2 and obviously you have to use your profile fields name in place of ‘your_first_field_name’, ‘your_second_field_name’ and ‘Your Profile Field Name’.

    Thanks

    #275935
    raneeshct
    Participant

    This is not the solution I am looking for. Let me explain what I clearly needs.

    I have an existing WordPress website with a few posts. I have installed BuddyPress plugin. Now let’s assume I have two users A and B registered in the website and consider a post with Title “Hello All”

    1. User A made a comment on the post “Hello All”
    2. User B made a reply comment to the User A’s comment

    it is expected to show a notification on User A profile under notification tab on site such us User B replied to your comment. Unfortunately this is not happening on the website. To cross check whether it is a theme issue, I have changed the theme to default themes of WordPress and notification is not yet showing. Please help. Looking forward to an immediate response.

    Here is the website URL https://beanstalkminds.com/

    #275928
    Prashant Singh
    Participant

    Seems like your theme is not compatible with BuddyPress. If you can check with the default theme, you will see that it works fine.

    #275923
    Prashant Singh
    Participant

    Please check if there is any plugin conflicting with BuddyPress or any code written in your child theme that can break the process.
    Thanks

    Prashant Singh
    Participant

    You can override buddypress templates and even can change the registration to be happened with ninja form only but edit profile section can not be created with ninja form. Please see:

    Theme Compatibility & Template Files


    Thanks

    #275909

    In reply to: How to get username?

    topherjamesknoll
    Participant

    Bwa! I’m so dumb. I haven’t been using echo. LOL!

    So, I’m still curious. What would constitute a BP profile page? Right now I just have pages like index.php and page.php in the theme I’m building.

    Also, THANKS!!!

    #275905

    In reply to: How to get username?

    topherjamesknoll
    Participant

    Hi there,

    This doesn’t work for me. I’m building a theme from scratch and I think it’s just ’cause I haven’t included something. Do you know what that might be? Does a separate theme need to call something from the BuddyPress plugin?

    #275899
    rebeccadigitalsea
    Participant

    Ah okay so if I put them into the following /mychildtheme/buddypress/bp-legacy/edit.php then the shortcode through php snippet will work? Or do I have to design a new shortcode or template for this to work?

    Thank you very much

    #275897
    Prashant Singh
    Participant

    I have copied the edit.php and change-avatar.php into a PHP snippet plugin and these both display on the page fine… however, they do not work!

    You have to override them in your child theme, then only it will work. Please check https://codex.buddypress.org/themes/theme-compatibility-1-7/a-quick-look-at-1-7-theme-compatibility/

    Thanks

    #275895
    Prashant Singh
    Participant

    Hi,

    Please paste following code in bp-custom.php or in your child theme’s functions.php:
    remove_filter( 'bp_notifications_get_notifications_for_user', 'ai_bp_reaction_custom_format_buddypress_notifications');

    Hopefully, this will work for you.

    Thanks

    #275885
    raneeshct
    Participant

    Please advice on the following,

    1. I have made a test post in my WordPress website and made a comment.
    2. Using another user I have replied to the comment made earlier.
    3. Once checking Notifications tab in my profile, it still shows “no notification found”

    Tried the same with different theme but it still shows “zero” notification.

    #275879
    shanebp
    Moderator

    It’s not your BP overloads in the child theme.

    Sorry I can’t give you a detailed explanation re why your subnav item still loads the listings.
    Here’s an overly simplistic one…
    Due to how BP handles activity ( ajax ), you’ll need to create your content ( and suppress the activity listings ) via custom code in the activity template that you’re already overloading.

    #275860
    pecosdave
    Participant

    Thanks for the help, the Query Monitor seems infinitely helpful. I’ve been chasing down an OPcache error it keeps telling me about but doesn’t seem to be a big deal. Net result, I’ve gotten OPCache to work verified at the PHP level by the fact I enabled it and it didn’t bomb out due to a misconfigure.

    I keeping getting “non-numerical value” php errors, but they don’t seem to be a real issue. When I examine the code, words like “left” and “right” aren’t numerical, but they seem to trigger the error.

    Loading the “safe” themes seem to do nothing, I had the exact same results with 2017.

    I’m seriously considering making note of what plugins I have, wiping the whole install and doing it from scratch. As I mentioned, I’m good at IT work in general but I’m new to this. I played with a lot of themes and plugins before getting to where I am now, a clean slate may be just what I need. I can even stick with the default theme and get what I want now.

    (BTW – Nginx is new to me also, I used Apache when I played with other systems in the past)

    #275851
    shanebp
    Moderator

    You can switch to a WP theme like 2016 or 2017 – iow. ‘safe’.
    All plugins should work with a WP theme.
    So momentarily switching to a WP theme will provide hints re whether the issue is in your theme or a plugin.

    Your issues are too specific to your setup for you to get more then general suggestions here.

    Try to get some specifics: Debugging_in_WordPress

Viewing 25 results - 2,601 through 2,625 (of 31,071 total)
Skip to toolbar