• Resolved djsparks

    (@djsparks)


    Is there a way to change the available social networks in the user profile edit screen? For example, I would like to remove MSN and ICQ but add Zoom.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support gVectors Support

    (@gvectorssupport)

    Hi @djsparks,

    You can’t remove these fields, you can only hide those fields using CSS code. Put the
    CSS code in Dashboard > Forums > Settings > Styles > “Custom CSS Code” textarea.

    
    // e.g to hide ICQ and MSN use the following code.
    .wpf-field.wpf-field-type-text.wpf-field-name-icq {
        display: none;
    }
    .wpf-field.wpf-field-type-text.wpf-field-name-msn{
        display: none;
    }

    For adding additional fields check out wpForo – User Custom Fields paid add-on:
    https://gvectors.com/product/wpforo-user-custom-fields/

    Thread Starter djsparks

    (@djsparks)

    Thank you! Works perfectly.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Social networks’ is closed to new replies.