For Anyone whou has the same issue can use this CSS
/**** Remove Product Links *****/
/*** ProductPage ***/
/** Title **/
.product-title a{
pointer-events:none;
cursor: default;
}
/** Image **/
.product-element-top, .product-thumbnail, a img{
pointer-events:none;
cursor: default;
}
/**ProductPage End**/
/*** CartPage ***/
/** Image **/
.woocommerce-cart-form__cart-item .cart-item .product-thumbnail a{
pointer-events: none;
cursor: default;
}
/** Title **/
.woocommerce-cart-form__cart-item .product-name a{
pointer-events: none;
cursor: default;
}
/** CartPage End **/
/** Small Cart **/
/** Title **/
.widget_shopping_cart .mini_cart_item .cart-item-link{
pointer-events: none;
cursor: default;
}
/** Image **/
.widget_shopping_cart .mini_cart_item .cart-item-image {
pointer-events: none;
cursor: default;
}
/** Remove Product Links End **/