You have no items in your shopping cart.

Profile: Support

Avatar
Statistics

    We have added plugin for  version 3.40 too.
    www.foxnetsoft.com/content/files/Shipping.Endicia.zip

    9 years ago

    I can recompile this plugin if you want to use it.

    9 years ago

    Plugin has bad code in RouteProvider.cs

    route.DataTokens["Namespaces"] = new[] { "Nop.Admin.Controllers", "Nop.Plugin.Shipping.Endicia.Controllers" };


    It's not good.

    You should replace with new code

                Route route;
                route = (Route)routes["Admin_default"];
                if (route != null)
                {
                    if (route.DataTokens["Namespaces"] == null)
                    {
                        route.DataTokens["Namespaces"] = new string[] { "Nop.Plugin.Shipping.Endicia.Controllers" };
                    }
                    else
                    {
                        string[] DataNamespaces = (string[])route.DataTokens["Namespaces"];
                        Array.Resize(ref DataNamespaces, DataNamespaces.Length + 1);
                        DataNamespaces[DataNamespaces.Length - 1] = "Nop.Plugin.Shipping.Endicia.Controllers";
                        route.DataTokens["Namespaces"] = DataNamespaces;
                    }
                }


    What do you want from this plugin?

    9 years ago

    We try to install this plugin and we'll answer you.

    9 years ago

    About ArticlePostPrint.cshtml.
    I'll see.

    10 years ago

    I recommend you to copy css from
    ~/Plugins/FoxNetSoft.Articles/Styles/store1-styles.css
    to your main site css file and remove line

    Html.AddCssFileParts("~/Plugins/FoxNetSoft.Articles/Styles/store1-styles.css");


    One css-file is best practice. You will have best performance and more simple logic.

    Customer opens homepage - loads main css-file.
    Customer opens another page - doesn't load css-file. He has css-file from homepage.
    10 years ago

    Ok.

    10 years ago

    Can you rewrite difficult condition?

     if (group.Contains("Spacial Orientation")||group.Contains("Topography")||group.Contains("Osteology")||group.Contains("Angiology")||group.Contains("Neurology")||group.Contains("Myology")||group.Contains("Radiology")||group.Contains("Misc. Drawings")||group.Contains("Clinical Testing"))


    make new List
    10 years ago

    the same banner for different article


    Can you make print screen and email to us?
    10 years ago

    Powered by nopCommerce

    Copyright © 2023 FoxNetSoft. All rights reserved