disable on some pages

#93262
  • Resolved Jb Gayet
    Rank Math free

    Hi, is there a way to disable Rankmath on selected pages ? not just hide, but disable also from source code.
    thank’s
    JB

Viewing 1 replies (of 1 total)
  • Hello,

    Thank you for contacting Rank Math today.

    Please use the following code to remove all the Rank Math data:

    
    add_action( 'wp_head', function(){
       if ( is_page(3) ) {
           remove_all_actions( 'rank_math/head' );
           add_action( 'wp_head', '_wp_render_title_tag', 2 );
       }
    }, 1 );
    

    The above code will remove the Rank Math data from the page with ID 3. Please change it to match the IDS of the pages from which you want to remove the data.

    I hope that helps.

    Hello,

    Since we did not hear back from you for 15 days, we are assuming that you found the solution. We are closing this support ticket.

    If you still need assistance or any other help, please feel free to open a new support ticket, and we will be more than happy to assist.

    Thank you.

Viewing 1 replies (of 1 total)

The ticket ‘disable on some pages’ is closed to new replies.