chatgpt said:
Add the following code to your theme’s functions.php file or use a Code Snippets plugin:
add_filter('woocommerce_paypal_args', 'remove_product_details_from_paypal');
function remove_product_details_from_paypal($paypal_args) {
// Keep only the total amount and remove line items
foreach ($paypal_args as $key => $value) {
if (strpos($key, 'item_name_') !== false || strpos($key, 'quantity_') !== false) {
unset($paypal_args[$key]);
}
}
return $paypal_args;
}
havenot tried, not sure whether it works or not,record for later..