wpgenie

no result message for shortcodes

Jun 6th, 2024 (edited)
685
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.68 KB | None | 0 0
  1. /*
  2.  
  3. code snippet that adds "no result" message for shortcodes, this should be used in functions.php of child theme
  4.  
  5. Please note shortcode name between woocommerce_shortcode_ and _loop_no_results, you can add this for any shortcode just insert there its name.
  6.  
  7. */
  8. function wsa_action_woocommerce_shortcode_products_loop_no_results( $attributes ) {
  9.     echo __( 'No auction(s) found.', 'my-language-domain' );
  10. }
  11. add_action( 'woocommerce_shortcode_my_active_auctions_loop_no_results', 'wsa_action_woocommerce_shortcode_products_loop_no_results', 10, 1 );
  12. add_action( 'woocommerce_shortcode_recent_auctions_loop_no_results', 'wsa_action_woocommerce_shortcode_products_loop_no_results', 10, 1 );
Advertisement
Add Comment
Please, Sign In to add comment