Advertisement
fahimmurshed

Change WooCommerce Custom Text Strings (Astra Theme)

Jul 20th, 2020
1,631
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. /**
  2.  * Update No more products to show. label
  3.  * Replace - 'No more products to show.' text to - 'Custom text goes here.'
  4.  *
  5.  * @return string $title
  6.  */
  7. function update_default_no_more_products_callback( $title ) {
  8.     $title  = __( 'Custom text goes here.', 'astra' );
  9.     return $title;
  10. }
  11. add_filter( 'astra_shop_no_more_product_text', 'update_default_no_more_products_callback', 10 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement