BuddyDev

Search

Replies

  • Participant
    Level: Enlightened
    Posts: 130
    giuseppe on in reply to: [Resolved] BuddyPress Activity Privacy #44411
    This reply has been marked as private.
  • Participant
    Level: Enlightened
    Posts: 130
    giuseppe on in reply to: [Resolved] BuddyPress Activity Privacy #44407

    hello Brajesh,

    thanks for your support.

    I check another time.

    I will update it soon.

    Thank you,

    Giuseppe

  • Participant
    Level: Enlightened
    Posts: 130
    giuseppe on in reply to: [Resolved] Edit profile tab #44396

    Hello,

    is there a solution for both tab issues #44289 and #44376 ?

    Many thanks,

    Giuseppe

  • Participant
    Level: Enlightened
    Posts: 130

    Hi Brajesh,

    yes you are perfectly right that problem is sync.

    Thanks a lot for your wide support,

    Giuseppe

  • Participant
    Level: Enlightened
    Posts: 130
    giuseppe on in reply to: [Resolved] translation issue #44378

    Hello,

    thanks a lot for your support. I had already translated strings, so the problem has arrived. Theme author sent me a new post-form.php to use to edit words directly and use in child theme. Considering that, for the moment, I just need Italian language it can be a solution, and it works.

    Thanks again,

    Giuseppe

  • Participant
    Level: Enlightened
    Posts: 130
    giuseppe on in reply to: [Resolved] Edit profile tab #44376

    Hello,

    I have tried to remove “email” tab from profile with these settings (following here: https://buddydev.com/support/forums/topic/get-rid-of-settings-tab-with-plugin-buddypress-user-profile-tabs-creator-pro/ )

    slug: “notifications”

    enabled

    Tab: “Email”

    Tab slug “notifications”

    Yes Predifined

    Yes site admin

    tab for Admin

    visible for Admin

    but it’s still visible to Users.

    Do you have some suggestions?

    Many thanks,

    Giuseppe

  • Participant
    Level: Enlightened
    Posts: 130
    This reply has been marked as private.
  • Participant
    Level: Enlightened
    Posts: 130
    giuseppe on in reply to: [Resolved] translation issue #44340

    Hi Brajesh,

    thank for your support.

    It happens only for the member to post on group page.

    Many thanks,

    Giuseppe

  • Participant
    Level: Enlightened
    Posts: 130
    This reply has been marked as private.
  • Participant
    Level: Enlightened
    Posts: 130

    Hi Brajesh and thank you for your support.

    I have tried and created the two fields and added the suggested snippet to hide the buddypress name function but it does not work.

    Anyway this is a solution that can create, in an environment with a lot of customized code, problems that can become very difficult to manage.

    So I have changed the registration page having two times the last name and so using one for the header and one for the full name using Force plugin.

    The remaining issue is that Force plugin does not work properly as I have to manually update the new registration and the proposed code obviously does not work because it refers to Buddypress native full name.

    /**
    * Before activity post form.
    */
    function buddydev_before_activity_post_form() {
    add_filter( ‘bp_get_user_firstname’, ‘bp_get_loggedin_user_fullname’, 10, 2 );
    }
    add_action( ‘bp_before_activity_post_form’, ‘buddydev_before_activity_post_form’ );

    /**
    * After activity post form.
    */
    function buddydev_after_activity_post_form() {
    remove_filter( ‘bp_get_user_firstname’, ‘bp_get_loggedin_user_fullname’, 10 );
    }
    add_action( ‘bp_after_activity_post_form’, ‘buddydev_after_activity_post_form’ );

    Is there a code to use name and last name as registered in wordpress?

    Thank you very much as usual,

    Giuseppe