How to modify empty cart code to link all products?

Hello,

I just noticed my empty cart’s “continue shopping” sends customers to a different All products page than the one I created. Is there any way to modify the code to do so?
I’ve looked on this forum, but the proposed solutions don’t work in my “Beyond” theme, I can’t seem to find the right sections.

Thanks in advance,

Aurélie

Cumulus Rainwear

Look for the code that generates the “Continue Shopping” button, which should look something like this:

{{ 'cart.general.continue_shopping' | t }}

To change the link destination of the “Continue Shopping” button, replace {{ shop.url }} with the URL of the page you want the button to link to. For example:

{{ 'cart.general.continue_shopping' | t }}

Thank you so much!