Hey @philippe11,
We certainly appreciate the feedback! This is something we can add to our list of feature requests. This way it can be taken into consideration for future development. All of these items are discussed with our team internally and prioritized based on the amount of interest a particular feature might receive.
Since this isn’t a default feature but this could be possible by using custom JS that requires custom development. While that is outside the scope of support, I could point you in the right direction with the understanding that it would ultimately be your responsibility to take it from here. To achieve your desired results, you can first assign a class to your Cart Dropdown element e.g cart-btn
and then using the Click Event we can make the page redirect to your Cart page, so your code will look like this:
jQuery(document).ready(function($){
$('.cart-btn.x-anchor-toggle').click(function() {
window.location.href = "https://www.google.com/"
});
});
Please note that the code provided above serves as a guide only and is to help you in getting started as this may or may not work as intended so implementing it and maintaining the code will be out of our support scope and for further maintenance for new possible versions of the theme that may cause the customization to break, you will need to hire a developer.
Thanks!