Skip to Content Skip to Menu

🎃 Happy Halloween! Treat yourself with an awesome discount on memberships! Get 20% off now with code SPOOKY-2024!

[SOLVED] Name doesn't show in the Latest View tab

  • krileon
  • krileon
  • ONLINE
  • Posts: 48460
  • Thanks: 8280
  • Karma: 1443
11 years 6 months ago #224209 by krileon
Replied by krileon on topic Name doesn't show in the Latest View tab
The plugin is extremely old and due for a complete rewrite (scheduled after CB 2.0). Unfortunately due to this it does not use up to date usages. It should for example be using the formatname field and not have a name parameter at all. The below should quickfix it to use formatname field.

IN: components/com_comprofiler/plugin/user/plug_cblastviewstab/cb.lastviews.php
ON: Lines 159-171
FROM:
Code:
$name = $cbUser->getField( 'name', null, 'html', 'none', 'list' ); $username = $cbUser->getField( 'username', null, 'html', 'none', 'list' ); $avatar = $cbUser->getField( 'avatar', null, 'html', 'none', 'list' ); if ( $LVusername == '0' ) { $viewername = $username; } elseif ( $LVusername == '1' ) { $viewername = $name; } elseif ( $LVusername == '2' ) { $viewername = $username . ' (' . $name . ')'; } elseif ( $LVusername == '3' ) { $viewername = $name . ' (' . $username . ')'; }
TO:
Code:
$viewername = $cbUser->getField( 'formatname', null, 'html', 'none', 'list', 0, true ); $avatar = $cbUser->getField( 'avatar', null, 'html', 'none', 'list', 0, true );


Kyle (Krileon)
Community Builder Team Member
Before posting on forums: Read FAQ thoroughly + Read our Documentation + Search the forums
CB links: Documentation - Localization - CB Quickstart - CB Paid Subscriptions - Add-Ons - Forge
--
If you are a Professional, Developer, or CB Paid Subscriptions subscriber and have a support issue please always post in your respective support forums for best results!
--
If I've missed your support post with a delay of 3 days or greater and are a Professional, Developer, or CBSubs subscriber please send me a private message with your thread and will reply when possible!
--
Please note I am available Monday - Friday from 8:00 AM CST to 4:00 PM CST. I am away on weekends (Saturday and Sunday) and if I've missed your post on or before a weekend after business hours please wait for the next following business day (Monday) and will get to your issue as soon as possible, thank you.
--
My role here is to provide guidance and assistance. I cannot provide custom code for each custom requirement. Please do not inquire me about custom development.

Please Log in or Create an account to join the conversation.

  • emanuelr
  • emanuelr
  • OFFLINE
  • Posts: 38
  • Thanks: 2
  • Karma: 3
11 years 6 months ago #224213 by emanuelr
Replied by emanuelr on topic Name doesn't show in the Latest View tab
Thanks a lot Kyle.
This fix is fine!
The following user(s) said Thank You: krileon

Please Log in or Create an account to join the conversation.

Moderators: beatnantkrileon
Powered by Kunena Forum