Close

Profile: Valentin

Avatar

User posts

OTH wrote:

Hi,

Does this also work for the Emporium theme?



Hi OTH,

if you want to achieve the same for the Emporium theme, you would need to add the following code instead:

.eu-cookie-bar-notification {
    width: 100%;
    max-width: 100%;
    top: auto;
    left: 0;
    bottom: 0;
    height: auto;
    padding: 20px 10px;
    border-radius: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

xcellenceit wrote:
Hi,

I want to show main category on first view currently it's showing inside all categories menu. you can check this link - http://prntscr.com/pvwko9

This all categories we want to show on first level when we click on humber menu icon. you can check this link - http://prntscr.com/pvwla1

Can you please check and update us know what we need to change for that?

Thank you


Hi xcellenceit,

you cannot achieve this without some code modifications since this is the default behavior of the theme and altering it would be a customization.

We can suggest a possible solution but if you encounter any problems with it you would need to deal with them yourself.

If you are still willing to do it, you need to open the following file in your text editor:

~ Presentation\Nop.Web\Plugins\SevenSpikes.Nop.Plugins.MegaMenu\Themes\Emporium\Views\Components\MegaMenu\MegaMenu.cshtml

and change the code on line 54 from:

responsiveCategoryMenuItems.Add(responsiveMenu);

to:

responsiveMenuItems.Add(responsiveMenu);

Save the file and restart your site clearing the cache, and the changes should take effect.
Have in mind that this will the All categories item completely empty and you might need to hide it by adding the following code to your theme`s Custom Head Style section:

.mega-menu-responsive .all-categories {
    display: none;
}


Hope this was helpful.
Have a nice day!

4 years ago

tleeman wrote:
The Contact Us Topic information displays with the Contact Us Form when the Contact Us link is selected from the Main Menu.  Selecting the Contact Us link from the front page Footer, only the topic information is displayed.  Can I get the Contact Us Form to also display from the Footer link?  Using version 4.1, thanks.



Hi tleeman,

this item cannot be shown in the footer of the Traction theme without some code modifications.

You need to open the following file in your text editor:

~ Presentation\Nop.Web\Themes\Traction\Views\Shared\Components\Footer\Default.cshtml

and add the bolded code on line 49 like so:


...
@if (Model.AllowCustomersToApplyForVendorAccount && Model.DisplayApplyVendorAccountFooterItem)
{
    <li><a href="@Url.RouteUrl("ApplyVendorAccount")">@T("Vendors.ApplyAccount")</a></li>
}
@if (Model.DisplayContactUsFooterItem)
{
   <li><a href="@Url.RouteUrl("ContactUs")">@T("ContactUs")</a></li>
}

</ul>
...

Bugs
4 years ago

[email protected] wrote:
How do I edit the contact list at the bottom of the home page. See link, it is NOT in the very bottom footer, it is in the gray box, just above the footer..
https://firstcoastmedicalsupply.com/


Hi,

the contact information in the Footer`s upper section is all coming from text-resources. In order to edit them, you need to go in your admin panel to Configuration -> Languages -> Edit the language you have -> expand the String resources tab and look for these Resource names:

Phone resource:
SevenSpikes.Themes.Motion.Common.Phone -> +444 (Phone) 123456

Mobile phone resource:
SevenSpikes.Themes.Motion.Common.Mobile -> +555 (Mobile) 321654

The e-mail is split into three resources:

SevenSpikes.Themes.Motion.Common.EmailName -> info
SevenSpikes.Themes.Motion.Common.EmailAt -> [at]
SevenSpikes.Themes.Motion.Common.EmailDomain -> store.com

Skype name:

SevenSpikes.Themes.Motion.Common.Skype -> motion_theme

P.S. This is the section for the bugs in Mega menu. For bugs or questions related to any of the themes, please use the specific theme section.

Hope this was helpful.
Have a nice day!

4 years ago

Hi mrabjohn,

we just inspected the Traction demo on a MAC with Safari and we cannot seem to get the same result as the one you describe. Can you please provide some more details like - what is the exact OS version you are using, the version of the Safari browser and some screenshots of the actual problem you are having?

Looking forward to your answer!

Bugs
4 years ago

hwarmstrong wrote:
When the Nop Mega Menu (Version: 4.0) generates an <li> for a menu item such as the one below, it leaves space at the end of the class name that is added to the <li>. This is being flagged as non standard (https://www.w3.org/TR/html4/types.html#type-id) by some parsers.


<li class="Some-Class ">
<a href="https://www.MyURL.com/MyPage.html" title="MyTitle">
    <span>
       My Link
    </span>
</a>
</li>


Hi hwarmstrong,

in this particular case, the space after the first class name is left because users can add a second class name dynamically and we don't want them to stick together.

The spaces are expected and supported for the class attributes.
We haven't had any issues or reported problems for this so far. The white space is being ignored the same way as it is when there are two or more classes on the same element.

4 years ago

Hi Joseph,

we have released an update of the theme with the solution for your problem.

You can download the latest theme package and replace just the following 3 files in your installation folder, with the ones from your newly downloaded package:

~ Presentation\Nop.Web\Themes\Emporium\Content\css\mobile.css
~ Presentation\Nop.Web\Themes\Emporium\Content\css\mobile.rtl.css
~ Presentation\Nop.Web\Themes\Emporium\Content\scripts\emporium.js


This should fix the problem on your side too.

Bugs
4 years ago

Hello insity,

we found the issue and released an update of all of the affected themes. If you download the latest theme package and replace the following file in your installation folder with the one from your newly downloaded package you will not be having this issue anymore.

~ \Presentation\Nop.Web\Themes\Emporium\Views\Product\_ShareButton.cshtml

The other affected themes with the same problem which we fixed, are:

Avenue
Element
Minimal
Pavilion
Prisma
Uptown
Venture


Hope this was helpful.
Have a nice day!

Bugs
4 years ago

Hello insity,

indeed there seems to be an issue with HTML minification only on the product pages.
Than you for pointing that out!

We will figure out what the problem is and will let you know as soon as we do.

Bugs
4 years ago

insity wrote:
Any reason why the product pages are not getting minified for nopcommerce version 4.2. Checked your demo site also the product pages are not minified.


Hi insity,

what you are referring to is not expected behavior. One of our demos is not minified on purpose at the moment, because we are testing something. As you can see from our other demo, the CSS and JS minification is working without any problem - Emporium Supermarket Demo

If you have any issues with your minification and bundling, you better submit a ticket an include a working link to your store and admin credentials so we can investigate what the problem might be.

Do not post your credentials here because other users will be able to see them too.