This article helps you to rename “and more” text in the discount table, for better understanding purposes please refer to the screenshot.
Screenshot 1:

If you want to change the text, please use the below filter and copy and paste it into the functions.php
file of your active theme.
Code Snippet:
// Added by Wisdmlabs.
add_filter('csp_more_text_filter', 'custom_csp_more_text', 10, 2);
function custom_csp_more_text($more_text, $product_id) {
// Add your custom logic here to modify the $more_text based on $product_id if needed
$more_text = 'Enter your text';
return $more_text;
}
Please replace the value of $more_text with your expected value.