• Resolved simonili

    (@simonili)


    Hello,

    is there a way i can edit or delete the “or view” text on the product single page after i added something to the wishlist?

    best wishes
    Simon

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author YITHEMES

    (@yithemes)

    Hi Simon

    Try to add the following snippet of code at the end of functions.php file of your theme or child theme

    function yith_wcwl_hide_view_button ( $atts ) {
    	$atts['show_view'] = false;
    
    	return $atts;
    }
    add_filter( 'yith_wcwl_add_to_wishlist_params', 'yith_wcwl_hide_view_button', 30, 1 );
    
    Thread Starter simonili

    (@simonili)

    thank you, it worked perfect 😀

    Plugin Author YITHEMES

    (@yithemes)

    You’re welcome!
    If you enjoy our plugin, don’t forget to leave us a 5 star review, to support us and help our work
    Thank you!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘edit “or view” text’ is closed to new replies.