public ActionResult Footer()
        {
            var model = new FooterModel()
            {
                StoreName = _storeContext.CurrentStore.GetLocalized(x => x.Name)
            };

            return PartialView("Nop.Plugin.Misc.FacebookShop.Views.MiscFacebookShop.Footer", model);
        }
        public ActionResult Footer()
        {
            var model = new FooterModel
            {
                StoreName = _storeContext.CurrentStore.GetLocalized(x => x.Name)
            };

            return PartialView("~/Plugins/Misc.FacebookShop/Views/MiscFacebookShop/Footer.cshtml", model);
        }