• Hello!
    Thank you for this amazing plugin. My website is fully in Russian language and I really need Russian translations for this plugin. Plugin is really valuable because I can add sku to each add-on, I couldn’t find any other plugin with this feature in free version.

    How can I help you with Russian translation, so that plugin is translated into this language? You mentioned in one of topics (https://www.ads-software.com/support/topic/how-to-translate-terms/) that it uses WordPress translations and after translations for particular language is > 95%, it’ll automatically add to database if I understood your answer correctly.

    Please, let me know how I can help you with translation, so all text can be displayed in Russian? Thank you!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author bizswoop

    (@bizswoop)

    Thank you for reaching out to us about the Russian translation support, we’d love to have the plugin translated for the Russian speaking community.

    Yes, you are correct. The plugin is compatible with the WordPress translation workflow. Here is the database of the Russian translations: https://translate.www.ads-software.com/locale/ru/default/wp-plugins/product-add-ons-woocommerce/

    Once the strings in the sub project ‘Stable (latest release)’ are 95% translated they will automatically pull in and display in Russian, if your WordPress website language settings are set to Russian. No extra steps are needed. ??

    Thread Starter olyacanary

    (@olyacanary)

    Alright, thank you!

    I have one more question. Is it possible to get sku string on the backend (using php)? I mean such as from order information or product information array that woocommerce sends to backend? I need to use this sku string to send to our POS system, but so far I’m able to only see title of add-on selected.

    Thank you!

    Plugin Author bizswoop

    (@bizswoop)

    Here is a simple snippet as reference for how we get the data now. You can review and optimize the code to be used in other third party themes or plugins.

    global $product;
    $groups = ZAddons\Model\Group::getByProduct( $product );

    foreach ( $groups as $group ) {
    $types = ZAddons\Model\Type::getByGroupID( $group->getID() );

    foreach ( $types as $type ) {
    $values = ZAddons\Model\Value::getByTypeID( $type->getID() );

    foreach ( $values as $value ) {
    echo $value->sku;
    }
    }
    }

    • This reply was modified 3 years, 11 months ago by bizswoop.
    Thread Starter olyacanary

    (@olyacanary)

    Thank you very much! Really appreciate your help.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Russian Translation Needed’ is closed to new replies.