• Resolved simplissite

    (@simplissite)


    Hi,

    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.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Stefan

    (@stefanst1)

    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,

    Thread Starter simplissite

    (@simplissite)

    Hi,

    Thank you for your prompt assistance.

Viewing 2 replies - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.