i'm trying change the text from elementor-menu-cart but with no results.
The elementor show the subtotal in cart
I tried this function to change, but with no results too.
function change_view_cart_link( $params, $handle )
{
switch ($handle) {
case 'wc-add-to-cart':
$params['i18n_view_cart'] = "Proceed to Cart"; //chnage Name of view cart button
$params['cart_url'] = "http://myshop.com/custom-page"; //change URL of view cart button
break;
}
return $params;
}
add_filter( 'woocommerce_get_script_data', 'change_view_cart_link', 10, 2 );
Thank all of you for the help and sorry for my english.