Viewing 1 replies (of 1 total)
  • Plugin Author Jose Luis SAYAGO

    (@iluminatus)

    Hi nessler,

    Sorry for the late response, in order to remove links from titles there’s something you could do using jQuery (until this feature is available), just unwrap titles. Below I’ll explain how you can do it:

    First create a JavaScript file called unwrap-nlptitles.js and save it into your active WordPress theme folder, copy & paste this:

    <script type="text/javascript">
         jQuery(".nlposts-ulist-title a").contents().unwrap();​
    </script>

    Then to your functions.php file add this at the end before ?>:

    wp_enqueue_script('unwrapjs',get_stylesheet_directory_uri().'/unwrap-nlptitles.js';

    That’s it! The text style looks like the rest of the header titles in your site so I think you solved that one.

    Please let me know if it works.

    Cheers.

Viewing 1 replies (of 1 total)
  • The topic ‘Remove link’ is closed to new replies.