Viewing 2 replies - 1 through 2 (of 2 total)
  • Hey @chilisky
    Did you resolve?

    Thread Starter chilisky

    (@chilisky)

    Yes I did, sort off. I replaced the add to chart with read more (what I really wanted to do). Sorry for not putting the status as resolved. I will add the code

    In Theme function.php add

    add_filter( ‘woocommerce_loop_add_to_cart_link’, ‘replacing_add_to_cart_button’, 10, 2 );
    function replacing_add_to_cart_button( $button, $product ) {
    $button_text = __(“View product”, “woocommerce”);
    $button = ‘get_permalink() . ‘”>’ . $button_text . ‘‘;

    return $button;
    }

    • This reply was modified 5 years, 10 months ago by chilisky.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Ramove Add to cart and read more’ is closed to new replies.