-
Author
-
January 27, 2018 at 17:06 #186987emmanuelParticipant
hello could one of theses names be remove or hide see attachment
Attachments:
You must be logged in to view attached files.January 27, 2018 at 18:30 #187005Kieran_SQModeratorHi,
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 solutionIf 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.
January 27, 2018 at 20:22 #187029emmanuelParticipantthanks but how can users change there wordpress username
January 27, 2018 at 20:30 #187032Kieran_SQModeratorHi,
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 solutionIf 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.
January 27, 2018 at 20:47 #187035emmanuelParticipantok 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
January 27, 2018 at 20:50 #187036emmanuelParticipanthere it is
Attachments:
You must be logged in to view attached files.January 27, 2018 at 20:59 #187040Kieran_SQModeratorHi,
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 solutionIf 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.January 27, 2018 at 21:17 #187047Kieran_SQModeratorHi,
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 solutionIf 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.
January 27, 2018 at 21:29 #187048emmanuelParticipantthanks 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.January 27, 2018 at 21:36 #187051Kieran_SQModeratorHi,
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 solutionIf 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.
January 27, 2018 at 21:49 #187052emmanuelParticipantthanks 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.January 27, 2018 at 22:03 #187058Kieran_SQModeratorHi,
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 solutionIf 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.
January 27, 2018 at 22:16 #187060emmanuelParticipantthanks 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.January 27, 2018 at 22:32 #187064Kieran_SQModeratorHi,
Try the below CSS, change the values to suit your needs. Remove font-weight: unset; if you wish to keep the font bold
COPY CODEdt.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 solutionIf 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.
January 27, 2018 at 22:42 #187066Kieran_SQModeratorYes, please add font-style:; to the CSS
for example
COPY CODEdt.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 CODEdt.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 solutionIf 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.
January 27, 2018 at 22:49 #187067emmanuelParticipantthank you very much for your assistance in everything today
January 27, 2018 at 22:54 #187068Kieran_SQModeratorYou’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 solutionIf 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.
-
AuthorPosts
You must be logged in to reply to this topic.