• Resolved Shahed

    (@shahedbd71)


    Hello, I’m contacting you on behalf of CTX Feed. Previously, our plugin seamlessly integrated with the Curcy currency option. However, following a recent update, our plugin is no longer compatible with Curcy, and we believe the issue needs to be addressed from Curcy’s end. Could you kindly pass along the following message to your development team and inform us of any necessary adjustments being made to ensure compatibility with CTX Feed? Below is the suggested modification in Curcy to be applied by our devs team –

    I’m the senior software engineer at WebAppick. We’ve seen that one of the CTX Feed plugin hooks you’re using to file: woocommerce-multi-currency/plugins/ctx-feed-pro.php.

    Previously, we used to send “$config” as an array, but from now on, we’ll send it as an object. So, from now you have to access data from an object. We’ve modified your code to work with our plugin. Here is the modified code below. Please update your plugin.

    add_filter( ‘woo_feed_filter_product_link’, function ( $link, $product, $config ) {
    $data = WOOMULTI_CURRENCY_Data::get_ins();
    $default_currency = $data->get_default_currency();
    if ( defined( ‘WOO_FEED_PRO_FILE’ ) ) {
    $link = add_query_arg( [ ‘wmc-currency’ => $config->get_feed_currency() ], $link );
    } else {
    $feed_currency = $data->get_param( ‘bot_currency’ );
    if ( $feed_currency !== ‘default_currency’ ) {
    $link = add_query_arg( [ ‘wmc-currency’ => $feed_currency ], $link );
    } else {
    $link = add_query_arg( [ ‘wmc-currency’ => $default_currency ], $link );
    }
    }
    return $link;
    }, 10, 3 );

    Thank you for your attention. We eagerly await your confirmation or any updates from your end.

    • This topic was modified 1 year, 1 month ago by Shahed.
    • This topic was modified 1 year, 1 month ago by Shahed.
Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support angelagrey

    (@angelagrey)

    Hi,

    Thank you for the detailed feedback. Yes, our development team confirmed it’s been updated in the free version and it’s already in the dev pro plugin. We’ll release in the next update.

    Best regards.

    Thread Starter Shahed

    (@shahedbd71)

    We have noticed that a new version of the Pro Version has been released. There are no fixes related to CTX Feed. Can you please confirm if the issue has been fixed in the latest release or let us know when it will be fixed?

    Plugin Support angelagrey

    (@angelagrey)

    Hi,

    Yes, it’s already added to this latest version of our pro plugin although it’s not recorded in changelog, no worries.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Compatibility Issue with CTX Feed’ is closed to new replies.