• Resolved fselmani

    (@fselmani)


    Hi, I am a pro user which I just bought your plugin. Anyway, I wonder if is possible to provide codes for me to add in functions.php so I will rename:

    “View and message” to ‘Send message’ (It is at My Order).
    “Type message below” to ‘Send us message below’ (It is inside order when customer view it)

Viewing 1 replies (of 1 total)
  • Plugin Author N-Media

    (@nmedia)

    Hi,

    sure you use the following filters:

    // for View and message

    add_filter('wooconvo_view_order_text', function($s){
      $s = 'YOUR STRING';
      return $s;
    });

    // for Type message below

    add_filter('wooconvo_default_message', function($s){
      $s = 'YOUR STRING';
      return $s;
    });
Viewing 1 replies (of 1 total)
  • The topic ‘Rename buttons’ is closed to new replies.