• Hi

    I am using your plugin for a Norwegian non profit web site where the user first needs to become a member before being able to purchase the products the non profit offers.
    Is there a simple code snippet to where I can translate the word year to the Norwegian word ?r?

    Thanks.

    Merry Christmas and a Happy New Year!

Viewing 2 replies - 1 through 2 (of 2 total)
  • @paaljoachim

    Please try this code snippet in your active theme’s functions.php

    add_filter(‘hf_subscription_product_price_string’, ‘mark_change_price_string’, 10, 3);

    function mark_change_price_string($subscription_string, $product, $include){

    return str_replace(“year”, “ar”, $subscription_string);

    }

    Thread Starter Paal Joachim Romdahl

    (@paaljoachim)

    Thanks Mark!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Adjusting phrases’ is closed to new replies.