How can I modify product page URLs to canonical version in Notion theme?

I want to change the product page URLs that are linked from the collection page to the canonical version.

From the collection pages, the product URL is website.com/collections/collection-type/products/product-name/ and I just want to change it to website.com/products/product-name/. I’ve done this in other themes but having trouble doing it Notion.

The suggested solution is to replace “{{ product.url | within: collection }}” with “{{ product.url }}” in the collection-liquid.template but I cannot locate this piece of code in that file. I’m using the Notion theme. Any other suggestions?

You can change the product URL by editing the product template. To do this, go to Online Store > Themes. Find the theme you want to edit, and then click Actions > Edit code. In the Templates directory, click on the liquid file. Find the line of code that starts with {{ product.url | within: collection }}. Change the code to {{ product.url }}. Save your changes.