• Skip to main content
  • Skip to primary sidebar

WordPress, Genesis Framework and Storefront customization tutorials

  • Archive
    • Free
    • Premium
  • Blog
  • About
  • Contact
  • Newsletter
  • Login
Home » Show the price in different currency on product archive page in WooCommerce

Show the price in different currency on product archive page in WooCommerce

// =========================================================================
// SHOW PRICE IN EURO
// ========================================================================= 
function show_price_in_euro(){
    global $product;
    
     if( $product->has_child() ) {
        $product->get_id();
        $var_price_huf = $product->get_variation_price( 'min', true );
        $exchange_rate = 360;
        $price_eur = $var_price_huf / $exchange_rate;
        echo '<span class="price euro"><span class="woocommerce-Price-amount amount eur">'.round($price_eur, 1).' €</span></span>';
    }
    else{
        $product->get_id();
        $price_huf = $product->get_price(); 
        $exchange_rate = 360;
        $price_eur = $price_huf / $exchange_rate;
        echo '<span class="price euro"><span class="woocommerce-Price-amount amount eur">'.round($price_eur, 1).' €</span></span>';
    }
}
add_action('woocommerce_after_shop_loop_item', 'show_price_in_euro',-1);

Filed Under: Free Tagged With: WooCommerce

About Gabor Flamich

I'm a web developer and designer based in Budapest, Hungary. In recent years, I've documented hundreds of solutions I came across during development. This site is an archive for useful code snippets on WordPress, Genesis Framework and WooCommerce. If You have any questions related to WordPress development, get in touch!

Reader Interactions

Comments

  1. Penni says

    2020-07-09 at 20:16

    https://waterfallmagazine.com
    Simply want to say your article is as surprising. The clarity in your post is simply excellent and i can assume you are an expert on this
    subject. Fine with your permission allow me to grab your RSS feed
    to keep up to date with forthcoming post. Thanks a
    million and please continue the gratifying work.

    Also visit my web page :: sql interview questions

    Reply

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Primary Sidebar

Gabor Flamich

Hi! I'm Gabor.
I write tutorials on WordPress and WooCommerce.

MacBook

12 Essential Snippets for Genesis Developers

Subscribe to my Newsletter to view my basic collection of Genesis snippets that I use for my projects!

Sign Up for Free
  • Facebook
  • GitHub
  • Instagram
  • LinkedIn
  • Twitter
  • YouTube
UpdraftPlus Premium

Tags

ACF Ajax Analytics API Bootstrap Breadcrumb category CPT CSS fetch FSE Genesis Google Maps Gutenberg HTML Isotope JavaScript jQuery loop Map Menu Parallax PHP Rest API SASS SEO SQL Storefront SVG tab tag manager tags Taxonomy Tool upsell Webpack Wholesale WooCommerce WordPress WPML

Disclosure: Some of the links in this site are affiliate links. I will be paid a commission if you use this link to make a purchase.

  • Privacy Policy / Terms of Service
© 2025 WP Flames - All Right Reserved