Forum Replies Created

Viewing 14 replies - 1 through 14 (of 14 total)
  • Thread Starter snowdrop

    (@nymla)

    Hi. Thank you for the reply!

    There is just one issue: PostNord implemented this new thing just a few days ago.
    PostNord now includes the US-import-duties in the price they charge me when I purchase their shipping labels.

    I cannot handle it separately. They do not allow me to purchase a shipping label without also paying for the import duties at the same time, combined together.

    I want to be able to charge my US customers for the actual shipping cost (which now includes the import duties). (And preferably be able to also add a small handling fee on top, for myself.)

    PostNord have not yet provided me or others who have asked, with information of how to calculate those import-duties ourselves.
    So all I can currently do is to basically purchase a shipping label (or go to the last step of the process) through PostNords site, fill in the customs declaration, and then they show how much the total cost is including the US-import-duties (I assume depending on the value and the tariff codes etc?)

    This makes it very complicated for me when I am currently manually entering shipping costs for my webshop.

    That’s why I hope that your plugin will automatically fetch the correct/actual cost of shipping (including custom duties) that PostNord would charge me. Can it do that?


    Also want to add that PostNord now asks me to declare the value in USD (instead of SEK which is the norm) in the customs declaration, when I ship to the US.
    When I ship with PostNord to other countries outside of the EU, they ask me to enter the value in SEK, as usual.
    (Hoping that this also works with your plugin? Also, my webstore’s base currency is SEK, but customers have option to check-out with other currencies too.)


    Here is the statement that PostNord posted recently about this change:
    https://www.postnord.se/foretag/import-export-tull/usa-och-puerto-rico-leveranserna-ar-igang-igen/

    Thank you very much!

    • This reply was modified 7 months ago by snowdrop.
    • This reply was modified 7 months ago by snowdrop.
    Thread Starter snowdrop

    (@nymla)

    • WordPress 6.8
    • WooCommerce 9.7.1Β 
    • FluentSMTP Version:Β 2.2.90
    • PHP Version:Β 7.4.33 (Supports 64bit values)
    • Active plugins:
      • Admin Columns Version 4.7.7 by AdminColumns.com
      • Advanced Google reCAPTCHA Version 1.30 by WebFactory Ltd
      • Advanced Order Export For WooCommerce (Pro) Version 3.4.4 by AlgolPlus (Latest version: 4.0.2)
      • Advanced Sending for Flexible Invoices Version 1.1.20 by WP Desk
      • Advanced Shipment Tracking for WooCommerceVersion 3.8.0 by zorem
      • Advanced Templates for Flexible Invoices Version 1.0.8 by WP Desk
      • Autoptimize Version 3.1.13 by Frank Goossens (futtta)
      • Contact Form 7 Version 6.0.6 by Takayuki Miyoshi
      • Crop Thumbnails Version 1.9.5 by Volkmar Kantor
      • CURCY – WooCommerce Multi Currency Premium Version 2.3.8 by VillaTheme
      • Customer Reviews for WooCommerce Version 5.76.0 by CusRev
      • Duplicate Page Version 4.5.4 by mndpsingh287
      • Flexible Invoices for WooCommerce PRO Version 5.0.2 by WP Desk
      • FluentSMTP Version 2.2.90 by FluentSMTP & WPManageNinja Team
      • GeoTargeting Lite Version 1.3.6.1 by Timersys
      • Kadence WooCommerce Email Designer Version 1.5.16 by Kadence WP
      • LightStart – Maintenance Mode, Coming Soon and Landing Page Builder Version 2.6.17 by Themeisle
      • LiteSpeed Cache Version 7.0.1 by LiteSpeed Technologies
      • Modula Version 2.12.11 by WPChill
      • Ni WooCommerce Admin Order Columns Version 1.6.4 by anzia
      • Official StatCounter Plugin Version 2.1.0 by Aodhan Cullen
      • Order Status History for WooCommerce Version 2.0 by alx359
      • Otter – Page Builder Blocks & Extensions for Gutenberg Version 3.0.11 by ThemeIsle
      • Password Protected Store for WooCommerce Pro Version 1.5.2 by Geek Code Lab
      • Payment Plugins for Stripe WooCommerce Version 3.3.85 by Payment Plugins, [email protected]
      • Paythen Payment Plans for WooCommerce Version 0.9.1.1 by Paythen
      • Popups – WordPress Popup Version 1.9.3.8 by timersys
      • Product SKU Generator for WooCommerce Version 2.5.0 by SkyVerge
      • Rearrange Woocommerce Products Version 4.3.1 by Aslam Doctor
      • Social Feed Gallery Version 4.7.2 by QuadLayers
      • Social Icons & Sharing Buttons by WPZOOM Version 4.5.1 by WPZOOM
      • WooCommerce Version 9.7.1 by Automattic (Latest version: 9.8.2)
      • WooCommerce Price Based on Country Version 4.0.4 by Oscar Gare
      • WooCommerce Simple Auction Version 2.1.4 by wpgenie
      • WooCommerce Weight Based Shipping Version 6.6.0 by weightbasedshipping.com (Latest version: 6.6.1)
      • WPvivid Backup Plugin Version 0.9.115 by WPvivid Backup & Migration

        I am using the Flatsome theme.
        Thank you!
    Thread Starter snowdrop

    (@nymla)

    Hello again!
    Thank you very much for your support! I am replying to this again because I ran into a problem.

    I have added some code to my invoices, which has been working fine up until now.
    I used this to display the exchange rate: $exchange_rate = $order->get_meta( ‘_stripe_exchange_rate’ );

    But now this meta data stopped working for some reason? It shows nothing.

    Here is the entire section of code added to my invoice to display Stripe meta data:


    add_action( 'fi/core/template/invoice/after_notes', function ( $document ) {
    $order = wc_get_order( $document->get_order_id() );

    if ( $order ) {
    $stripe_currency = $order->get_meta( '_stripe_currency' );
    $stripe_fee = $order->get_meta( '_stripe_fee' );
    $stripe_net = $order->get_meta( '_stripe_net' );
    $exchange_rate = $order->get_meta( '_stripe_exchange_rate' );

    // Display the new line for "Amount"
    if ( $stripe_net && $stripe_fee ) {
    $amount = $stripe_net + $stripe_fee;
    echo "<strong>Stripe Payment Details</strong><br>";
    echo "Amount: " . $amount . "<br>";
    }
    // ***

    if ( $stripe_net ) {
    echo "Net amount: " . $stripe_net . "<br>";
    }

    if ( $stripe_fee ) {
    echo "Fee (paid by seller): " . $stripe_fee . "<br>";
    }

    if ( $stripe_currency ) {
    echo "Currency: " . $stripe_currency . "<br>";
    }

    if ( $exchange_rate ) {
    echo "Exchange rate: " . $exchange_rate . "<br><br>";
    }

    }
    } );

    Do you know why the “_stripe_exchange_rate” stopped working? Everything else in the code is working.

    Thank you! / Caroline

    Thread Starter snowdrop

    (@nymla)

    Hi! The info I want is specifically the “amount” and “payment exchange rate” as shown in my screenshot.
    Will “wc_stripe_order_payment_complete” do that?

    I don’t really know how to code – could you possibly let me know exactly what code I should add and where? Or I will take this info to someone who can help me.
    Thank you!

    It seems there is again the same problem as previously described here. Will you be updating this plugin?
    Thank you πŸ™

    Thread Starter snowdrop

    (@nymla)

    Hi again! I found a way to add the Stripe fee and Stripe payout information in the shop base currency, to my order details page in Woocommerce, which is just what I needed – now I wonder if this info can somehow (with pro/premium version and custom data maybe?) be included in the generated invoices or documents? I just need some way to bulk print/save all the order details in separate documents. Thanks πŸ™‚

    Thread Starter snowdrop

    (@nymla)

    Thank you! I will look into that:)

    Thread Starter snowdrop

    (@nymla)

    Thank you for the quick reply!
    I have one more question – not sure if this is actually tied to this plugin at all or just to Woocommerce – is it possible to make it so a digital product order does not get an email at all when I mark the order as shipped/completed?
    Since they already got an email with the download link when the order was placed and processed.

    As it is now, most items in my shop are physical and I have set up all customer emails and tracking to work with this. But with the few digital downloadable items, the emails don’t make sense, since they mention shipping etc.
    Thanks!

    Thread Starter snowdrop

    (@nymla)

    @aky01usa Thank you very much! Now can I also make the toolbar above larger? The toggle thumbnails, exit and caption area. Thanks!

    Thread Starter snowdrop

    (@nymla)

    @ivole2 I don’t know how the bold got there, but now it’s gone and it works thank you!

    I would also like to style the reviews like this, is it possible?
    Change the font family and the font colors.
    Remove the grey β€œavatar” images?
    Have the reviews in three columns.
    Thank you!

    Thread Starter snowdrop

    (@nymla)

    @ivole2 Finally I have sent you the link to the email address you said! I was away on a trip, sorry πŸ™‚
    Thank you for your help!

    Thread Starter snowdrop

    (@nymla)

    @ivole2 Can I link it to you in a private message somehow?

    Thread Starter snowdrop

    (@nymla)

    Would you also be able to tell me how to change the font family and the font color of the reviews?

    Is it possible to remove the grey “avatar” images?

    Also, now all of the reviews appear under eachother, and not beside eachother like before. How can I change this?

    Images:
    https://www.dropbox.com/s/phgzwxe7autel55/reviews2.png?dl=0
    https://www.dropbox.com/s/caoe62bdi5ds88e/reviews1.png?dl=0

    Thank you again!

    Thread Starter snowdrop

    (@nymla)

    Thank you very much!

    • This reply was modified 7 years ago by snowdrop.
Viewing 14 replies - 1 through 14 (of 14 total)