Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Juan Coronel

    (@juaancmendez)

    Hello there,
    we hope you’re doing well!

    In order to achieve what you need, add the following code in the functions.php file of your active child theme:

    if ( ! function_exists( 'yith_wcwl_remove_from_wishlist_label_custom' ) ) {
        function yith_wcwl_remove_from_wishlist_label_custom() {
            return 'your custom text';
        }
    }
    add_filter( 'yith_wcwl_remove_from_wishlist_label', 'yith_wcwl_remove_from_wishlist_label_custom', 99 );

    Could you check it and tell us if it works well for you, please?

    Have a nice day!

    Thread Starter crowds90

    (@crowds90)

    Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove from list text’ is closed to new replies.