2.4 Bug? My Account page empty

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
12 years ago
After upgrading to 2.4 the "My account" page is empty. 2.3 doesn't have a "Myaccount.cs" page. It does have a controller for it but that redirects to info

return RedirectToAction("info");

In 2.4 the controller returns the CustomerNavigationModel, but then doesn't do anything with it.

Is this a bug or am I missing something?

Darren



@model Nop.Web.Models.Customer.CustomerNavigationModel
@using Nop.Web.Framework;
@{
    Layout = "~/Views/Shared/_ColumnsTwo.cshtml";

    //title
    Html.AddTitleParts(T("PageTitle.Account").Text);
}
@*Desktop version doesn't have config page
Empty page is required in case if redirection is made from mobile version ('View full' link clicked)*@
12 years ago
No, it's not the bug. Actually the desktop version doesn't this page (there's no any link to it). In 2.4 "my account" menu item has a link to http://www.yourStore.com/customer/info page (not to http://www.yourStore.com/myaccount/ which is empty in desktop version). But it's not empty in the mobile version.
12 years ago
a.m. wrote:
No, it's not the bug. Actually the desktop version doesn't this page (there's no any link to it). In 2.4 "my account" menu item has a link to http://www.yourStore.com/customer/info page (not to http://www.yourStore.com/myaccount/ which is empty in desktop version). But it's not empty in the mobile version.


Must be something to do with the theme I'm using
12 years ago
Is'possible from the admin panel, change the layout of the site ?
12 years ago
totti240282 wrote:
Is'possible from the admin panel, change the layout of the site ?

Admin area > Configuration > Settings > General And Miscellaneous Settings > Desktop store theme
12 years ago
I was referring to the fact of using the layout with two, three or more columns.
12 years ago
totti240282 wrote:
I was referring to the fact of using the layout with two, three or more columns.

No, you have to modify the source code in this case
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.