EasyPost Buy Label buttons missing

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
1 year ago
Hi

We have configured the Easypost Plugin in our website but "Buy Label" and "Update" Button is not getting displayed in ShipmentDetails page.
We spent hours to debug the issue but to no avail.
Kindly help .
Refer the code from Shipment Page
Refer the Screen shots .
http://prntscr.com/7Af6rjobvL99
http://prntscr.com/EckdIj1MfCD5
http://prntscr.com/VHPi5dALE4JU
http://prntscr.com/Be-CT9f3dQ_B
http://prntscr.com/o9r-zX5vGrsF
1 year ago
What version of nopCommerce and the plugin?
1 year ago
Hi Maksim

We are using Nop4.40.4 and Plugin for 4.4 version 1.00
http://prntscr.com/ru5k6mCUJhi8
1 year ago
Well, it seems this plugin page (ShippingDetails) works incorrectly when HTML minification is enabled. We'll think about how to fix it.

As a temporary solution, you can disable minification (set EnableHtmlMinification setting to false).
Or if you have the source code, you can keep minification enabled and add this line (options.MinificationSettings.MinifyEmbeddedJsCode = false;) here, so that it looks like this:


.AddHtmlMinification(options =>
{
    options.CssMinifierFactory = new NUglifyCssMinifierFactory();
    options.JsMinifierFactory = new NUglifyJsMinifierFactory();
    options.MinificationSettings.MinifyEmbeddedJsCode = false;
})
1 year ago
Issue got resolved after disabling the  minification .
Thanks for your help Maksim , really appreciate it!
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.