• Resolved andrewtough

    (@andrewtough)


    Hi Andrew,

    After the recent update the currency on my shopify store which is GBP is coming up as USD on my website. If you could help please.

    Thanks,
    Andrew

    • This topic was modified 2 years, 10 months ago by andrewtough.

    The page I need help with: [log in to see the link]

Viewing 15 replies - 1 through 15 (of 16 total)
  • Thread Starter andrewtough

    (@andrewtough)

    • This reply was modified 2 years, 10 months ago by andrewtough.
    Plugin Author andrewmrobbins

    (@andrewmrobbins)

    @andrewtough Hey Andrew — did you get this resolved?

    Hi @andrewmrobbins, I’ve got the same issue. I asked a few days ago.
    https://www.ads-software.com/support/topic/change-currency-display/

    Thread Starter andrewtough

    (@andrewtough)

    @andrewmrobbins Hi Andrew. Thanks for the quick reply. Issue seems to have resolved itself overnight!

    New issue seems to be clicking on to the products “Nothing Found”. Have reconnected store, synced detail pages etc to no avail.

    Cheers,
    Andrew

    Plugin Author andrewmrobbins

    (@andrewmrobbins)

    @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.

    Thread Starter andrewtough

    (@andrewtough)

    @andrewmrobbins Andrew, Thank you!

    That seems to have done the trick, very much appreciated!

    Cheers,
    Andrew

    • This reply was modified 2 years, 10 months ago by andrewtough.
    Thread Starter andrewtough

    (@andrewtough)

    @andrewmrobbins Hi Andrew it seems to be playing up again…

    It was working perfectly, but has spontaneously changed! Was able to click the product then be taken to detail page. Now it’s unclickable and can only add to cart with the options. Any idea what’s happened?

    Thanks again,
    Andrew

    Plugin Author andrewmrobbins

    (@andrewmrobbins)

    @andrewtough When you open the plugin settings under the “General” section, what are your products linking to? It should say “WordPress”.

    Also, if you’re using a shortcode to display the products, be sure you have the link_to="wordpress" attribute added.

    Thread Starter andrewtough

    (@andrewtough)

    @andrewmrobbins Hi Andrew, linked WordPress. I use the shortcode [wps_collections] on the Printshop page. Weirdly the Summer skies collection of products works as it should but not the rest.

    I’ll keep playing around with things and hopefully sort it!

    Cheers,
    Andrew

    Plugin Author andrewmrobbins

    (@andrewmrobbins)

    @andrewtough Does this work?

    [wps_collections products_link_to="wordpress"]

    Thread Starter andrewtough

    (@andrewtough)

    @andrewmrobbins it’s been resolved! I did two things – I was messing around with the settings testing things and I also noticed I had an SSL WordPress plugin that needed updated. May have had something do do with this.

    Thanks again for your help Andrew.

    Cheers,
    Andrew

    Plugin Author andrewmrobbins

    (@andrewmrobbins)

    @andrewtough Awesome! Glad you got this working. Let me know if you run into anything else.

    Thread Starter andrewtough

    (@andrewtough)

    Hello Andrew @andrewmrobbins.

    Seem to have ran into a problem again… Wp Shop working as it should if I am signed in as wp admin. Going on the site normally the products don’t show.

    Any idea why this is?

    Cheers,
    Andrew

    Thread Starter andrewtough

    (@andrewtough)

    Apologies, issue solved – SSL issue!

    Plugin Author andrewmrobbins

    (@andrewmrobbins)

    @andrewtough I believe your issue was already fixed, but for those just discovering this issue, trying add this to your theme’s functions.php file:

    
    add_filter('shopwp_currency_symbol', function($defaultSymbol) {
        return '£';
    });
    
    add_filter('shopwp_currency_code', function($defaultCode) {
        return 'GBP';
    });
    
Viewing 15 replies - 1 through 15 (of 16 total)
  • The topic ‘Currency glitch’ is closed to new replies.