Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #2827040
Remove Author Link
Closed

Comments

  • goffers started the conversation

    Hi all,


    thx for the theme, i'd like to remove the link on the author show in any post, i'd like to show only the name 

    how can i do?

    Cheers

    Danilo

  •  2,494
    PenciDesign replied

    Hi,

    Please install the Code Snippet plugin, then create a new snippet with the following content:

    add_filter( 'author_link', 'goffers_remove_author_link' );
    function goffers_remove_author_link($link) {
        $link = '#';
        return $link;
    }

    Regards,
    PenciDesign.

  • goffers replied

    many thx guys! it's working

    i've only two more thing:

    1) Author is already clickable, it's possibile to completely remove that?

    2) If i want to set a link to the other page (like bio or contact) how can i do?

    Cheers

    Danilo

  •  2,494
    PenciDesign replied

    Hi,

    1. Please go to Appearance → Customize → Custom CSS then add the following custom CSS code:

    .author-url.url.fn.n {
        cursor: default;
        pointer-events: none;
    }

    2. Please remove all the previous custom code, then install and use this plugin: https://wordpress.org/plugins/wp-custom-author-url/. You can set the custom link as you want.

    Regards,
    PenciDesign.


  • goffers replied

    wow very quickly!

    Thank you for everything!