PluginUs.Net - Business Tools for WooCommerce and WordPress

[realize your idea - make your dreams come true]

Support Forum

You need to log-in to create request (topic) to the support

Change search text

The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday. If you have problems with registration ask help on contact us page please
If you not got email within 24~36 business hours, firstly check your spam box, and if no any email from the support there - back to the forum and read answer here. DO NOT ANSWER ON EMAILS [noreply@pluginus.net] FROM THE FORUM!! Emails are just for your info, all answers should be published only here.
The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday.

Hi

Do you know how I can change how the search text is displayed? Currently, it shows"By text:tina". I would like it to be"Textsuche: tina". https://purajoya.ch/produkte/swoof/name-tina/

Text search

Kind regards,

Avital

Hello

Try  to  add in  functions.php

add_action('wp_head', function(){

WOOF_EXT::$includes['js_lang_custom']['woof_text'] ="Textsuche";

}, 99);

Thank you

This code works. Now it shows the word"Textsuche". Is there an option to add afterwards":" and the"search text"?

E. g. if I search for"Liv" then it would be"Textsuche: Liv"?

How it is currently: https://purajoya.ch/produkte/swoof/name-liv/

Search Liv

Hello

Please  try  this  code:

add_action('wp_head', function(){
if (!class_exists('WOOF')) {
return false;
}
$request = woof()->get_request_data();
$search_text ="";
if (isset($request['woof_text']) AND $request['woof_text']) {
$search_text =":" . $request['woof_text'];
}
WOOF_EXT::$includes['js_lang_custom']['woof_text'] ="Textsuche" . $search_text;

}, 99);