• Hi,
    Please help me in changing the search products placeholder test present in search form of shop page present above the categories in shop page.
    Please also help me in changing the text return to shop when cart is empty.

Viewing 1 replies (of 1 total)
  • Theme Author oceanwp

    (@oceanwp)

    Hello, for the search placeholder, add the searchform.php file in your child theme and change it manually.
    For the cart text, try this code in the functions.php file of your child theme:

    add_filter( 'wc_empty_cart_message', 'custom_wc_empty_cart_message' );
    
    function custom_wc_empty_cart_message() {
      return 'Insert new text here';
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Howto change place holder search products in Shop Page Search form.’ is closed to new replies.