Remove hyperlink on review author name

Hi. How do i remove the hyperlink on the comment authors name when they submit a review and it is published. At the moment the hyperlink redirects to my homepage. I would like to disable the link completely.

Also, I am trying to capitalise the authors name.

this isnt working for the capitalize.

.x-comment-author a {font-size: 0.8em; text-transform: capitalize}

Cheers
Max

Hi Max,

Thank you for writing in, regretfully, I am not entirely certain which comment author you’re referring to as the Comment Author is not hyperlinked by default even the author element. And most likely what you’re trying to do requires customization which is outside of support that we can offer.

Try removing the a from your selector.

Thank you for understanding,

Hi. This appears to be an XPRO theme. It does not appear with twentyu twenty.

See attached image for clarification…

Requirement. Remove hyperlink on review person’s name.

Thank you

Hello @gimmechefs,

The author link has been integrated in the theme using this code:

<?php
            printf( '<cite class="x-comment-author" itemprop="author">%1$s</cite>',
              get_comment_author_link()
            );
            ?>

If you want to disable it, you can make use of the pointer-events CSS property with your previous code:

.x-comment-author a {
	font-size: 0.8em; 
	text-transform: capitalize;
	pointer-events: none;
}

To learn more about the CSS pointer-events property, you can check this out:

Note: Please be aware the custom coding is beyond the scope of our support. The given code merely serves as an example to get you started. You will be the one who will maintain this code whenever there are theme updates.

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.