• Resolved scolex

    (@scolex)


    Hi there,

    I just installed the plugin but the QR Code is missing.
    I checked all at the settings but can not recognise any QR code section at the tempolate, see below. Or where should this QR section appear?

    Thanks for help!

    <?php
    /**
    * Customer processing order email
    *
    * This template can be overridden by copying it to yourtheme/woocommerce/emails/customer-processing-order.php.
    *
    * HOWEVER, on occasion WooCommerce will need to update template files and you
    * (the theme developer) will need to copy the new files to your theme to
    * maintain compatibility. We try to do this as little as possible, but it does
    * happen. When this occurs the version of the template file will be bumped and
    * the readme will list any important changes.
    *
    * @see https://woocommerce.com/document/template-structure/
    * @package WooCommerce\Templates\Emails
    * @version 10.4.0
    */

    use Automattic\WooCommerce\Utilities\FeaturesUtil;

    if ( ! defined( 'ABSPATH' ) ) {
    exit;
    }

    $email_improvements_enabled = FeaturesUtil::feature_is_enabled( 'email_improvements' );

    /*
    * @hooked WC_Emails::email_header() Output the email header
    */
    do_action( 'woocommerce_email_header', $email_heading, $email ); ?>

    <?php echo $email_improvements_enabled ? '<div class="email-introduction">' : ''; ?>
    <p>
    <?php
    if ( ! empty( $order->get_billing_first_name() ) ) {
    /* translators: %s: Customer first name */
    printf( esc_html__( 'Hi %s,', 'woocommerce' ), esc_html( $order->get_billing_first_name() ) );
    } else {
    printf( esc_html__( 'Hi,', 'woocommerce' ) );
    }
    ?>
    </p>
    <?php if ( $email_improvements_enabled ) : ?>
    <p><?php esc_html_e( 'Just to let you know — we’ve received your order, and it is now being processed.', 'woocommerce' ); ?></p>
    <p><?php esc_html_e( 'Here’s a reminder of what you’ve ordered:', 'woocommerce' ); ?></p>
    <?php else : ?>
    <?php /* translators: %s: Order number */ ?>
    <p><?php printf( esc_html__( 'Just to let you know — we\'ve received your order #%s, and it is now being processed:', 'woocommerce' ), esc_html( $order->get_order_number() ) ); ?></p>
    <?php endif; ?>
    <?php echo $email_improvements_enabled ? '</div>' : ''; ?>

    <?php

    /*
    * @hooked WC_Emails::order_details() Shows the order details table.
    * @hooked WC_Structured_Data::generate_order_data() Generates structured data.
    * @hooked WC_Structured_Data::output_structured_data() Outputs structured data.
    * @since 2.5.0
    */
    do_action( 'woocommerce_email_order_details', $order, $sent_to_admin, $plain_text, $email );

    /*
    * @hooked WC_Emails::order_meta() Shows order meta data.
    */
    do_action( 'woocommerce_email_order_meta', $order, $sent_to_admin, $plain_text, $email );

    /*
    * @hooked WC_Emails::customer_details() Shows customer details
    * @hooked WC_Emails::email_address() Shows email address
    */
    do_action( 'woocommerce_email_customer_details', $order, $sent_to_admin, $plain_text, $email );

    /**
    * Show user-defined additional content - this is set in each email's settings.
    */
    if ( $additional_content ) {
    echo $email_improvements_enabled ? '<table border="0" cellpadding="0" cellspacing="0" width="100%" role="presentation"><tr><td class="email-additional-content">' : '';
    echo wp_kses_post( wpautop( wptexturize( $additional_content ) ) );
    echo $email_improvements_enabled ? '</td></tr></table>' : '';
    }

    /*
    * @hooked WC_Emails::email_footer() Output the email footer
    */
    do_action( 'woocommerce_email_footer', $email );

    The page I need help with: [log in to see the link]

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

    (@webbaker)

    Hello! Thank you for reaching out. As mentioned in the plugin description, the plugin currently supports the following countries: Slovakia (SK) and Czech Republic (CZ). This is because each country has different IBAN formatting rules, and the plugin is built around these two markets for now.

    Looking at the screenshot you provided, it seems you’re trying to use a German IBAN (DE**), which unfortunately isn’t supported at this time — so the plugin won’t be able to process it.

    That said, we are actively thinking about introducing a premium version of the plugin that would support a wider range of European countries, along with multilingual support. This has been requested by multiple users, so it’s definitely on our radar!

    Thread Starter scolex

    (@scolex)

    Hi there,

    looks like I skipped this important information. Sorry for that.

    Keep it on your radar.

    Best regards

    Plugin Author WebBaker

    (@webbaker)

    Hi,

    No worries at all. We’ll definitely keep it on our radar and hope to have something for you in the future.

    Feel free to reach out if you have any other questions.

    Best regards,
    Martin

    Hi,
    I just wanted to post here that a premium version of the plugin that supports other countries would be very much appreciated! Looking forward to it!

    Best regards
    Martin

Viewing 4 replies - 1 through 4 (of 4 total)

You must be logged in to reply to this topic.