Hi,
Can you please tell me if there is a way to increase the number of characteres, so more than 2048 for Blocked keywords ?
Many thanks for your feedback,
Best,
Hi,
Please use this PHP snippet (How to add custom code snippets - HivePress Help Center):
add_filter(
'hivepress/v1/settings',
function( $settings ) {
if ( isset( $settings['messages']['sections']['sending']['fields']['message_blocked_keywords']) ) {
$settings['messages']['sections']['sending']['fields']['message_blocked_keywords']['max_length'] = 5000;
}
return $settings;
}
);
I hope this is helpful to you.
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.