• Resolved denis24

    (@denis24)


    I would like to change the text “Share on:” to “Share your wishlist on:”

    How can I do this?

    Thanks

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

    (@juaancmendez)

    Hi Denis,
    hope you’re doing well!

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

    if ( ! function_exists( 'yith_wcwl_socials_share_title_custom' ) ) {
         function yith_wcwl_socials_share_title_custom( $text ) {
              $text = __( 'Share your wishlist on:', 'yith-woocommerce-wishlist' );
              return $text;
         }
         add_filter( 'yith_wcwl_socials_share_title', 'yith_wcwl_socials_share_title_custom', 10, 1 );
    }

    Try it out and tell us if it works well for you, please.

    Have a nice day!

    Thread Starter denis24

    (@denis24)

    It works. Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change “Share on” text’ is closed to new replies.