/** * Hide Elementor elements/containers on specific pages or posts. * * In Elementor, add CSS classes such as: * * hide-on-page-12345 * * Or for multiple pages: * * hide-on-page-12345 hide-on-page-23456 hide-on-page-34567 */ add_action( 'wp_head', function() { // Get the ID of the page/post/product currently being viewed. $current_id = get_queried_object_id(); // Don't do anything if WordPress can't determine the current ID. if ( ! $current_id ) { return; } // Create the class that should be hidden on this specific page. $class = 'hide-on-page-' . absint( $current_id ); // Hide the entire Elementor element/container. echo ''; } );
Skip to main content