Hello
I hope you can help.
I have a WordPress Woocommerce website where I've added a short code snippet to change the standard "No products Found" message. At the bottom of the message, I would like to add a short code form which has been produced through the WPForms plugin.
The PHP code as below:
<?php
add_action( 'woocommerce_no_products_found', function(){
remove_action( 'woocommerce_no_products_found', 'wc_no_products_found', 10 );
// HERE change your message below
$message = __( 'Adding parts to the site is an ongoing effort. The part you’re searching for may be within our range but not yet uploaded. If you are unable to find what you are looking for, please fill in our contact form below. Alternatively, email us at
[email protected] , call us on 0044 1443 228329 or via contact us via WhatsApp on 0044 732473727.', 'woocommerce' );
echo '
' . $message .'
';
}, 9 );
The WPForms shortcode: [wpforms id="1385"].
You can view the message through this link https://www.offershubdirect.com/product-category/model/lt106/.
I have attached an image of what I'm looking for.
Gary