Hide author last name in help center | Community
Skip to main content

Hide author last name in help center

  • September 6, 2022
  • 1 reply
  • 0 views

Sandro12

Hey,

 

How can I hide article authors last name in help center? Only solution I found is, to totally remove last name and first name. Would like to hide only last name

 

Thank you!

 

1 reply

Ifra
  • September 7, 2022

Hey Sandro Gurasashvili,

You can achieve this via custom code.

Copy and paste the given code snippet to your script.js file at the bottom area.

var _x = document.querySelector('.article-meta > a');
var _y = _x.innerText;
console.log(_y);
var firstWord = _y.split(' ')[0]
document.querySelector('.article-meta > a').innerHTML = firstWord

Hope it worked for you :)

Thanks