• Resolved cdoamaral0

    (@cdoamaral0)


    Hello, I would like to know if it is possible to delete the menu “Change values ​​at Page Level”. Thanks.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author bhvreddy

    (@bhvreddy)

    Hi,

    Want to remove the meta box (that displays option to change values at page level ) ?

    please add this snippet at themes functions.php (better to add at child theme)

    function ht_ctc_custom_remove_meta_box() {
    	remove_meta_box( 'ht_ctc_settings_meta_box' , '' , 'side' ); 
    }
    add_action( 'add_meta_boxes' , 'ht_ctc_custom_remove_meta_box', 20 );

    Have a nice day,
    Thank you

    Thread Starter cdoamaral0

    (@cdoamaral0)

    Yes, that’s what I needed. Thanks for your help!
    Have a nice day.

    Plugin Author bhvreddy

    (@bhvreddy)

    Great and very happy for the 5 star review.
    Thank you so much.

    Have a nice day.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove the “Change values at Page Level” menu’ is closed to new replies.