Notifications
Clear all

RE: Member Info

5 Posts
2 Users
0 Likes
761 Views
Posts: 20
Customer
Topic starter
(@antoney-thomas)
Member
Joined: 4 years ago
member info 1

Please see attachment.

Thank you.

4 Replies
Posts: 20
Customer
Topic starter
(@antoney-thomas)
Member
Joined: 4 years ago
Reply
1 Reply
Elvina
(@elvina)
Joined: 5 years ago

Support
Posts: 1403

@antoney-thomas.

Please follow the steps below to get it resolved:

1. Please use this CSS code:

#wpforo-wrap .wpf-author-nicename{
display : none !important;
}

2. The following CSS code should solve the issue:

.author-title :first-child {
display: none !important;
}

3. The CSS code should riched the issue:

#wpforo-wrap .wpf-member-title.wpfut{
font-size: 14px !important;
}

All CSS code should be added in Dashboard > Forums > Settings >Styles admin page.

4. Please use the following JS code:

jQuery(document).ready(function ($) {
$.each($(".wpforo-mycred-badges-wrap"), function () {
$(this).insertBefore($(this).parents(".wpf-left").find(".wpf-author-nicename"));
});
});

5. The following JS code should solve the issue

jQuery(document).ready(function ($) {
$.each($(".author-rating-full"), function () {
$(this).insertBefore($(this).parents(".wpf-left").find(".wpf-author-nicename"));
});
});

Please put the following codes in the active theme functions.php file.

6. Regarding the email icon you've mentioned, this is the private message icon. Probably you're trying to send the private message yourself, that's the reason that you can't see the private comments icon.

Please note, that we don't provide support for style customization, we may help in 1-2 simple questions related to colors and background but not more. We can not help you customize all components of forum style, these are custom requirements and should be done by forum owners. We only help with general questions and issues.

Thank you for your understanding.

Reply
Posts: 20
Customer
Topic starter
(@antoney-thomas)
Member
Joined: 4 years ago
error 4
error 3

I tried and that's the error I get.

I placed in functions.php / Astra Theme.

Reply
1 Reply
Elvina
(@elvina)
Joined: 5 years ago

Support
Posts: 1403

@antoney-thomas,

Please put the following codes in the active theme js files.

jQuery(document).ready(function ($) {
$.each($(".wpforo-mycred-badges-wrap"), function () {
$(this).insertBefore($(this).parents(".wpf-left").find(".wpf-author-nicename"));
});
});

jQuery(document).ready(function ($) {
$.each($(".author-rating-full"), function () {
$(this).insertBefore($(this).parents(".wpf-left").find(".wpf-author-nicename"));
});
});

Also please delete all changes you've done in the functons.php file, save, delete all caches and check again. Everything should work fine.

Reply
Share:
Scroll to top