Conversation
supportHi, I don’t understand how to use the marketing_store_name_max_length(25) filter mentioned in your documentation to allow longer store names. I added it as a code snippet like this: add_filter('marketing_store_name_max_length',50); but this creates a display error. Thank you in advance for your help.
Hi there, To increase the store name max length, you can write the code snippet as follows: add_filter('marketking_store_name_max_length', function($val){ return 50; }, 10, 1); This can be added to functions.php or to any code snippets plugin. You can replace 50 with a lower or higher number based on how many characters you want to allow, Let me know if you run into any issues,
Hi, Thank you for your prompt assistance.
Hi there, To increase the store name max length, you can write the code snippet as follows: add_filter('marketking_store_name_max_length', function($val){ return 50; }, 10, 1); This can be added to functions.php or to any code snippets plugin. You can replace 50 with a lower or higher number based on how many characters you want to allow, Let me know if you run into any issues,
Hi, Thank you for your prompt assistance.