Description
This action is fired inside the HTML Drawer panel wrapper.
Example
function my_prefix_panel_wrapper_start() {
echo '<p>Hello world! 👋</p>';
}
add_action( 'cartpops_drawer_inside', 'my_prefix_panel_wrapper_start' );
Learn where this hook takes place in the visual hook guide.