How Can I remove the link in author name?

Posted in: Newspaper
Post count: 460

Hello team,

Can I remove the link in author names?

Post count: 18283

Hello !

Please try this css code: header .td-post-author-name {
display:none;
}

The code must be inserted here: https://www.screencast.com/t/J1Nxw5s5

Thank you !

Post count: 460

Thanks Vlad S,

But, I want the name of the author to be displayed. But without a link, is it possible?

Post count: 35449

Hi Jose,
Yes, you can do this using the css for pointer-events, for example if you are using a single post template -> https://i.imgur.com/BPb6czU.png
.tdb-author-name-wrap a {
pointer-events: none;
}

For standard post style use this code:
.td-post-author-name a {
pointer-events: none;
}

Hope this will help you!

Post count: 460

Hello @Calin,

Thanks for reply. I have tried this code but it does not work. So I have inserted it in “custom css” too, but it doesn’t work either.

Is it possible that I need a different code?

Example of a url: https://soyungato.com/alzheimer-en-gatos/

Thanks

Post count: 35449

Hi,
Is look that the css is not strong enough, please try this one -> https://i.imgur.com/N0HpL4q.png
header .td-post-author-name a {
pointer-events: none;
}

This one should do the trick.
Let me know the results!

Post count: 460

Hello Calin,

Yeah, now run perfect 🙂 Thanks a lot!!

Post count: 35449

I’m glad that I was able to help you!
If you have any questions, let us know!
Have a nice week!

Post count: 5

Hi Calin, how can do that in AMP version?

Post count: 27744

Hi,

For AMP version, you can try this code, to remove the link in the author name

.tdb-author-name-wrap a,
.td-post-author-name a{
pointer-events: none;
}

If this is not what you mean, please let me know!

Thank you!

Post count: 80

Hello,

This doesn’t work for me if I use TagDiv composer. It is possible that this css that they indicate works only in the template without TagDiv visual layout and for the composition with the visual editor you need a different CSS.

Post count: 27744

Hello @trebol30,

Please provide a link to your website(author) to investigate.

Thank you!

Post count: 80
Post count: 27744

Hello @trebol30,

To remove the link on the author name, please use this custom code CSS => https://www.screencast.com/t/tUbmjm1NfFtV


.tdb-author-name{
pointer-events: none;
}

Set the code in Theme Panel ->Custom code -> Custom CSS
Hope this helps you!

Thank you!

Post count: 80

Hello Anamaria

And to remove it from the author image because the name no longer redirects but your image does keep the link? You can continue checking it at https://www.trebol-apuestas.com/como-calcular-cuotas/

Post count: 27744

Hello,

For image this code
.tdb-author-box .tdb-author-photo {
pointer-events: none;
}

Thank you!

Viewing 16 posts - 1 through 16 (of 16 total)
You must be logged in to reply to this topic.