@andrewtough Glad the first issue was resolved. Just a heads up, you should have the below added to your theme’s functions.php file for it to work:
add_filter('shopwp_currency_symbol', function($defaultSymbol) {
return '£';
});
add_filter('shopwp_currency_code', function($defaultCode) {
return 'GBP';
});
Regarding the other issue, I’m noticing your product permalink is /printshop/falling-tide-canvas-framed/
while the link itself sends the user to /products/falling-tide-canvas-framed/
. Usually this is caused by the product “default pages” setting. You can find this under the General section of the plugin settings.
I would try playing with this and setting the default to another page to test things out.