Search
 
SCRIPT & CODE EXAMPLE
 

PHP

checnge message no products were found matching your selection woocommerce edit

add_action( 'woocommerce_no_products_found', function(){
    remove_action( 'woocommerce_no_products_found', 'wc_no_products_found', 10 );

    // HERE change your message below
    $message = __( 'No products were found matching your selection.', 'woocommerce' );

    echo '<p class="woocommerce-info">' . $message .'</p>';
}, 9 );
Comment

PREVIOUS NEXT
Code Example
Php :: where clause with paginate laravel multiple column 
Php :: select next occurrence phpstorm 
Php :: changing the autoload.php for algolia search 
Php :: laravel route group within a group 
Php :: overwrite existing key value pair php 
Php :: how to make diffrent php pages have diffrent styles 
Php :: event handler with worker laravel 
Php :: create new laravel project 
Php :: how to get data from laravel api 
Php :: php code obfuscator 
Php :: laravel run controller from command line 
Php :: php get screen width 
Php :: laravel authentication 
Php :: Target class [AppHttpControllersAdminUserController] does not exist. larvel 8 
Php :: WP Migrate Lite 
Php :: how to do taxonomy filter in wordpress 
Php :: laravel create custom artisan command 
Php :: php time passed since date 
Php :: install latest php on feren os 
Java :: camera permission android 
Java :: import android.support.v7.app.ActionBarActivity; 
Java :: jcenter is at end of life 
Java :: cordova android.useandroidx 
Java :: WRITE_EXTERNAL_STORAGE no longer provides write access when targeting Android 10+ 
Java :: message box in javafx 
Java :: how to remove all whitespace from string java 
Java :: input double java 
Java :: java bufferedimage get raster data 
Java :: add label gui jframe 
Java :: How to connect java class file to xml file 
ADD CONTENT
Topic
Content
Source link
Name
2+9 =