Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Steven

    (@shazahm1hotmailcom)

    @ vizgraphics

    This functionality mimic the default core WordPress behavior when writing posts or comments. To remove this you would do so very similarly to how you would remove the functionality in WordPress. Here’s how.

    Install the Code Snippets plugin.

    Add a new snippet with the following code:

    add_action( 'plugins_loaded', 'cn_remove_notes_make_clickable', 11 );
    
    function cn_remove_notes_make_clickable() {
    	remove_filter( 'cn_output_notes', 'make_clickable', 9 );
    }

    Save and Activate the new snippet.

    Hope that helps!

    Thread Starter vizgraphics

    (@vizgraphics)

    Thanks for the quick reply. That worked ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Disable hyperlinks auto-generating in notes’ is closed to new replies.