Close

Profile: Support

Avatar

User posts

11 years ago

You can call Arvixe again and let them know that the our plugins have nothing to do with the login of nopCommerce.
If you have installed other plugins then you might want to check them.
You do need to share more information if you want us to help you. How are we supposed to help if all we know is
that you are unable to login to a web site, which we do not even have a link to?
So please be explicit about the following:

1. Which is your web site. A link will be helpful.

2. What are you running on it, which version of nopCommerce?

3. What changes have you done to the web site?

4. What changes did you do to break it?

12 years ago

Hi lacorne,

You can change the topic's layout to be one column by changing the ~/Themes/Fashion/Views/Topic/TopicDetails.cshtml file by changing the following line of code
from
"Layout = "~/Views/Shared/_ColumnsTwo.cshtml";"
to
"Layout = "~/Views/Shared/_ColumnsOne.cshtml";"

12 years ago

You can post here anything regarding the Nop Beauty Theme.

12 years ago

Help make Nop-Templates products better. Share your ideas or feature requests related to the Nop Beauty Theme for nopCommerce.

Bugs
12 years ago

Please give us your feedback here if you have any problems with the Nop Beauty Theme.

12 years ago

Hi Steve,

I am glad you figured out what the problem is. Unfortunately CSS is really case sensitive. Your site does look very nice. Congratulations.

Thanks!

12 years ago

Hi Siim,

Then you need a structure similar to the one below:

<div id="mainbg">
    <div id="leftpromo">
        @Html.Action("WidgetsByZone", "Widget", new { widgetZone = "fashion_home_page_main_slider" })
    </div>
    <div id="rightpromo">
        @Html.Action("HomePageNews", "News")
    </div>
</div>

Do this in the ~/Themes/Fashion/Views/Home/Index.cshtml file.

In this case you should change the dimension of the main slider from the administration of the Nop Anywhere Sliders plugin.

Please feel free to modify your razor views and style them appropriately.

Hope that helps!

12 years ago

Hi Steve,

You can show the topic from the Mega Menu in full width by adding the fullWidth css class to the view. You can do this by editing the ~/Plugins/SevenSpikes.Nop.Plugins.MegaMenu/Views/MegaMenu/TopicBlock.cshtml file in a text editor and edit it as shown below:

line 12: <div class="dropdown fullWidth">


the class in bold is the one that you should add.

Hope that helps!

12 years ago

Hi Siim,

You can show the home page news on the place of the right slider. Open the ~/Themes/Fashion/Views/Home/Index.cshtml view and replace the following line of code

@Html.Action("WidgetsByZone", "Widget", new { widgetZone = "fashion_home_page_right_slider" })

with this one

@Html.Action("HomePageNews", "News")


Thus the news will be shown instead of the right slider.Now you will need just to style them appropriately to fit in the new place.

If you need any further assistance please do not hesitate to contact us again!

Bugs
12 years ago

Hi,

Thank you for your observation! You are right about the name of the model. We have fixed that. Can you please try to edit the name of the model by adding the missing "r" and see whether the error still occurs. You can edit the ~/Themes/Fashion/Views/Customer/ReturnRequests.cshtml and open it in a text editor. Then change the first line to:

@model CustomerReturnRequestsModel

and see whether the error still exists.

If the error still occurs please do not hesitate to contact us again.