bauhaus1919
asked 7 years ago

I’ve spent half a day Googling this and have found code to change text on every button except for the Widget Side Bar Cart / Mini Cart????

1 Answers
DominicStaff
answered 7 years ago

You can add the following code to the functions.php file:
add_filter( 'widget_display_callback', 'rename_widget', 10, 3 );
 
function rename_widget( $settings, $widget, $args ) {
 
  if ( get_class( $widget ) == 'Custom_WooCommerce_Widget_Cart' ) {
    $settings['title'] = 'My Cart';
  }
 
  return $settings;
}

Dominic Staff
replied 7 years ago

If you still face their issue, you can send me a screenshot for further checking.

Powered by DW Question & Answer Pro