• Resolved Webliberty

    (@webliberty)


    How to disable class=”aioseop-link” and this options:

    • Add “nofollow” to link
    • Add “sponsored” to link

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author arnaudbroes

    (@arnaudbroes)

    We don’t have an option for this in our UI, but you can disable this functionality by adding the following code snippet at the bottom of your child theme’s functions.php file:

    add_action('wp_print_scripts', 'aioseop_deregister_scripts');
    
    function aioseop_deregister_scripts() {
    	wp_deregister_script( 'aioseop-link-attributes-gutenberg-editor' );
    }
    Thread Starter Webliberty

    (@webliberty)

    Thank you it works!

    Please add an option to disable this feature in the settings ??

    Plugin Author arnaudbroes

    (@arnaudbroes)

    I’ve created an issue in our GitHub repo to consider this! ??

    Thread Starter Webliberty

    (@webliberty)

    Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to disable class=”aioseop-link”’ is closed to new replies.