photoproof_gallery_selection_confirmed
Triggered the moment a client validates their selection. Perfect for custom notifications, CRM sync, or analytics.
// Log validated selections to your CRM
add_action( 'photoproof_gallery_selection_confirmed',
function( $gallery_id, $selected_ids ) {
my_crm_sync( $gallery_id, $selected_ids );
}, 10, 2 );
$gallery_idint — Post ID of the gallery$selected_idsarray — Attachment IDs selected by the client









