This topic has 18 replies, 2 voices, and was last updated 6 years by Kieran_SQ.

  • Author
  • #186987
     emmanuel
    Participant

    hello could one of theses names be remove or hide see attachment

    Attachments:
    You must be logged in to view attached files.
    #187005
     Kieran_SQ
    Moderator

    Hi,

    Please try the below CSS in your SweetDate Child theme’s style.css by going to WP Admin > Appearance > Editor > SweetDate Child > Style.css

    Remove the @ username on the profile

    #profile .user-nicename {display: none;}

    Or, remove the H2 (large) username on the profile

    #profile h2 {display: none;}

    Thanks,

    Kieran

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    #187029
     emmanuel
    Participant

    thanks but how can users change there wordpress username

    #187032
     Kieran_SQ
    Moderator

    Hi,

    It is possible, via plugin, for a user to change their WordPress username. However, with BuddyPress active this will not work as it does not update the database with regards to previous user activity updates – as such any old activity will not work.

    A user can always change their name (not username) by going to their profile and editing the field titled ‘Name (required)’ which is usually the first field in the first group unless moved or renamed.

    If you wish to change the username by plugin you may want to try Username Changer https://wordpress.org/plugins/username-changer/.

    Thanks,

    Kieran

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    #187035
     emmanuel
    Participant

    ok when i use the code to remove the users name the private message etc was move down how can i put it back in it’s place

    #187036
     emmanuel
    Participant

    here it is

    Attachments:
    You must be logged in to view attached files.
    #187040
     Kieran_SQ
    Moderator

    Hi,

    Did you completely clear your website cache and local cache? What browser and screen resolution are you using?

    When I access your site it appears as intended with and without the CSS from above (see screenshots)

    Kieran

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    Attachments:
    You must be logged in to view attached files.
    #187045
     emmanuel
    Participant
    This reply has been set as private.
    #187047
     Kieran_SQ
    Moderator

    Hi,

    That’s odd, please remove the CSS from my earlier reply and try this instead.

    #profile .user-nicename {font-size: 0px;}

    Kieran.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    #187048
     emmanuel
    Participant

    thanks it work, on the mobile website the the message profile picture is’nt showing clear what can be done to fix it

    Attachments:
    You must be logged in to view attached files.
    #187051
     Kieran_SQ
    Moderator

    Hi,

    Please try the below CSS to correct this issue

    #message-threads .thread-avatar img {min-width: 30px;height: 30px;}

    Thanks,

    Kieran

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    #187052
     emmanuel
    Participant

    thanks it had work, how can i change the font size,style and color of these see the attachment

    Attachments:
    You must be logged in to view attached files.
    #187058
     Kieran_SQ
    Moderator

    Hi,

    You can manually override the colors / style used with the below CSS

    COPY CODE
    .search-item .author a {
        color: #ab2626 !important;
        font-weight: bold;
        font-family: console;
        font-size: 30px !important;
    }
    .search-item .date, .search-item .date a {
        font-size: 14px;
        color: #0296c0;
        font-weight: bold;
        font-style: unset;
        font-family: console;
    }
    .search-item p {
        font-size: 18px;
        color: #0296c0;
        font-weight: bold;
    }

    Change or remove any values to suit your design requirements.

    Thanks,

    Kieran

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    #187060
     emmanuel
    Participant

    thanks and one last thing how to change the font size and style of these see the attachment

    Attachments:
    You must be logged in to view attached files.
    #187064
     Kieran_SQ
    Moderator

    Hi,

    Try the below CSS, change the values to suit your needs. Remove font-weight: unset; if you wish to keep the font bold

    COPY CODE
    dt.bp-field-name {
        color: #313131 !important;
        font-weight: unset;
        font-size: 16px;
    }
    .regulartab dd p {
        color: #313131 !important;
        font-size: 16px;
    }
    #profile .regulartab a {
        color: #313131 !important;
        font-size: 16px;
    }

    Thanks,

    Kieran

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    #187065
     emmanuel
    Participant

    can the font style be change

    #187066
     Kieran_SQ
    Moderator

    Yes, please add font-style:; to the CSS

    for example

    COPY CODE
    dt.bp-field-name {
        font-style:italic;
        color: #313131 !important;
        font-weight: unset;
        font-size: 16px;
    }

    You can also use initial, inherit, italic, oblique and unset.

    If you’re referring to font-family then check this example. Replace console with your desired font family.

    COPY CODE
    dt.bp-field-name {
        font-family: console;
        color: #313131 !important;
        font-weight: unset;
        font-size: 16px;
    }

    Kieran

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    #187067
     emmanuel
    Participant

    thank you very much for your assistance in everything today

    #187068
     Kieran_SQ
    Moderator

    You’re most welcome, feel free to open a new ticket any time with any other questions and we’ll be happy to assist.

    All the best,

    Kieran

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

Viewing 19 posts - 1 through 19 (of 19 total)

You must be logged in to reply to this topic.

Log in with your credentials

Forgot your details?