Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Update No more products to show. label
- * Replace - 'No more products to show.' text to - 'Custom text goes here.'
- *
- * @return string $title
- */
- function update_default_no_more_products_callback( $title ) {
- $title = __( 'Custom text goes here.', 'astra' );
- return $title;
- }
- 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