This filter allows you to change whether the collapsible “View details” below a product name shows up.
/**
* Do not show the collapsible "View deteils" below a product name
*
*/
function my_prefix_cartpops_view_details() {
return false;
}
add_filter( 'cartpops_after_cart_item_name_hook_collapsible', 'my_prefix_cartpops_view_details', 10, 1 );