• Hi! First of all, thanks for the plugin, it’s really cool!
    We have a multilingual website. The currency of Ukrainian version of the site is Ukrainian hryvnias. It is set by default in WooCommerce. Currency of the English version of the site – Euro. It is generated by plugin WOOCS. We use the official conversion rate, but in the future we plan to put a markup on the prices in euro (Rate +%). That is, we do not specify them and do not plan to specify them for each specific item.

    View post on imgur.com

    We also use the Product Feed Pro plugin to sell products in Google Shopping. In this plugin we generate separately feed for Ukrainian-language version of our site and separately feed for English-language one. The problem is that the feed for the English version of the site contains prices in hryvnias. I corresponded with the developers of Product Feed Pro and they said that they have no solution to this problem.

    Maybe you can help me?

    I thought that maybe there is a way to automatically record the prices in euros in custom field created with ACF plugin. And already in the feed map that field to the price attribute.

    Or perhaps you can suggest some other solution to this problem? Please help me! I really love your plugin and don’t want to look for an alternative that will work correctly with Product Feed Pro. Thanks in advance!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author RealMag777

    (@realmag777)

    Hello

    Maybe you can help me? – sure, read please our program: https://currency-switcher.com/woocs-labs – just create request for adaptation

    I thought that maybe there is a way to automatically record the prices in euros in custom field created with ACF plugin – if you want to copy price to meta field you can do it using hook ‘woocommerce_update_product’:

    add_action( 'woocommerce_new_product', 'sync_product_save', 10, 1 );
    add_action( 'woocommerce_update_product', 'sync_product_save', 10, 1 );
    function sync_product_save( $product_id ) {
         $product = wc_get_product( $product_id );
         update_post_meta( $product_id, '__YOUR_META_FIELD__',  $product->get_price())
    }

    Try it …

    Hello!

    I am in the same situation, except that I have converted several currencies since I am using the Premium version of the plugin. I would like to know how to adapt this snippet to make it register USD, AUD, and EUR prices in three different custom fields.

    Thank you in advance!

    Plugin Support mediawebster

    (@mediawebster)

    Hello @nipponrama

    You’re using a premium plugin which isn’t supported here. Write to the site of the author of this plugin – https://pluginus.net/support/forum/woocs-woocommerce-currency-switcher-multi-currency-and-multi-pay-for-woocommerce/

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘WOOCS + Product Feed Pro’ is closed to new replies.