Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #708154

    Hi,
    how can I disable the active link in the title of the single post of the blog? It does not lead anywhere.
    Thank you!

    #708573

    Hey mediavalue,

    Could you post a link to the site in question so that we can take a closer look please?

    Best regards,
    Rikard

    #709109

    Hi Rikard
    Yes, posted in Private Content field.

    #709655

    Hi!

    Thank you for the link. Please use this css code in the Quick CSS field.

    .single-post .post-title.entry-title a {
        pointer-events: none;
    }

    Best regards,
    Ismael

    #709664

    Hi,

    Try to add this code in your functions.php:

    function removelink_script(){
    ?>
    <script type="text/javascript">
    (function($){
      function removelink() {
        $(".single .entry-title .post-format-icon").unwrap();
      }
    
      removelink();
    })(jQuery);
    </script>
    <?php 
    }
    add_action('wp_footer', 'removelink_script');

    Let us know if it works :)

    Best regards,
    Nikko

    #709691

    Both solutions work.
    Thank you!
    Paola

    #709817

    Hi Paola,

    Glad we could help :)

    Best regards,
    Nikko

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Removing link from the title of a single post’ is closed to new replies.