Close

Profile: Valentin

Avatar

User posts

7 years ago

Peppi wrote:
Hi,

i would like to change some settings in the footer menu. How i can change in the Payment options section the icons? I would like remove Amex and Paypal or all and replace it with SEPA.

The same i have with the follow us section. I would replace twitter with xing or linkedin.

Best Regards,
Giuseppe


Greetings Giuseppe,

to achieve this you need to go in your file explorer to this location:

~ Presentation\Nop.Web\Themes\Emporium\Views\Shared\Components\Footer

and open the Default.cshtml in your text editor.

Then go to line 94 and you will see this code:


<img src="@Url.Content("~/Themes/Emporium/Content/img/pay_icon1.png")" alt="" />
<img src="@Url.Content("~/Themes/Emporium/Content/img/pay_icon2.png")" alt="" />
<img src="@Url.Content("~/Themes/Emporium/Content/img/pay_icon3.png")" alt="" />
<img src="@Url.Content("~/Themes/Emporium/Content/img/pay_icon6.png")" alt="" />


These are your payment options icons. You need to keep the first line, the other three you can delete. Save the file.
Then you need a SEPA logo image which is about the same size as the current icons (48px x 30px), rename the file like so - pay_icon1.png. Have in mind that if your logo is not a .png file you need to change the file extension in the above-mentioned line of code, too.

Then go to:

~ Presentation\Nop.Web\Themes\Emporium\Content\img

and replace the existing pay_icon1.png file with your new image.

That is all.

7 years ago

bhavikm20 wrote:
Hi

We are using nop Pavilion theme 4.0 and think to buy and migrate to Emporium theme. Is it easy or difficult to migrate? what are the thinks we need to consider to migrate? Let me know if you need more details.


Greetings,

migration from one of our themes to another is usually pretty easy. You would probably need to reconfigure some of your plugins which shouldn't be a problem if you follow the instructions in our documentation - here. You can also make use of some of the new features that the Emporium theme offers like the info-boxes, login form in header, logo in footer etc.

Hope this was helpful.
Have a nice day!

7 years ago

Greetings,

please write a ticket for this issue and make sure to give us a link to your site so we can investigate it.

abc_nopdev wrote:
Can you run two sliders at the same time on the homepage, one that shows on desktop and another that shows on the mobile version of the site?

Thank you!


Greetings,

you can achieve that by creating two sliders and set them to the same widget zone. Then in the field Theme class name add different classes for each of the sliders e.g. mobile and desktop.

Then add the following code to your Custom Head Styles section:


@media all and (max-width:1024px) {
     .slider-wrapper.theme-mobile {
          display: block !important;
     }
     .slider-wrapper.theme-desktop {
          display: none !important;
     }
}


Have in mind that whatever class name you choose for your sliders, when you write the code for it, it should have "theme-" in front of it.

[email protected] wrote:
I have version 3.9 of Motion Theme from NOP Templates.  

There is a very large space between the picture and the Full Description of the product, it makes it hard for a typical customer to see, without knowing to scroll down to see the description.  How do I reduce this space?

The link below is a representative page from the website.  You can see the picture and short description information to the right of the picture, then way down, below the picture is where the Full Description starts.


https://www.firstcoastmedicalsupply.com/protective-underwear-simplicity-extra-formularyt1


Greetings,

to fix this issue you need to go in your theme administration -> Configuration -> Settings -> All settings and search for this setting - cloudzoomsettings.numberofpicturethumbnailsincarousel-motion

and judging by the empty space in your site, the value you have for this must be around 6 or 7.

To look better you need to set it to 4 as it should be by default.

7 years ago

jakubz wrote:
Hi!
we change a little our page, and want show 4 subcategories in line. We have make that products, but Admin panel support only 2-3 category in line.

Is this hard change to show there 4 subcategories?



Greetings,

to achieve this you need to add the following code to your themes Custom Head Styles section:


@media all and (min-width:1024px) {
.sub-category-grid .item-box {
     width: 23.5% !important;
}

.sub-category-grid .item-box:nth-child(odd) {
     clear: none;
     margin-left: 2%;
}

.sub-category-grid .item-box:nth-child(even) {
     margin-left: 2%;
}

.sub-category-grid.three-per-row .item-box:nth-child(3n+1) {
     clear: none;
     margin-left: 2%;
}

.sub-category-grid .item-box:nth-child(4n+1) {
     clear: left !important;
     margin-left: 0 !important;
}
}


This styling will apply only for the bigger screens, no matter which option you have selected in the admin 2 or 3 per row. And for the smaller screen will apply the normal styling according to the setting you have selected.

This way it is safer because otherwise, the boxes become too small.

7 years ago

neilzb wrote:
Hi Guys,

Is there any way to change the page size that the Mega Menu responsive design kicks in? We have found that the responsive version of the nav works better for our site so would like to get it so it always shows the responsive mobile version, even on desktops.

Thanks
Neil


Greetings Neil,

unfortunately, what you are asking for is not possible. It would require many modifications on the styling of the menu and the theme itself.

Have a nice day!

Freddy1234 wrote:
Hello

I think the "issue" that occurs on mobile, and that costumer finds confusing
(been involved now in user testing on mega menu and pavilion template )

It is how the Mega menu works togheter with som of the templates when costumers entering into a category page and the page have subcategories in it

The placement of the SUBCATEGORIES button is placed all the way at the bottom,  which creates the feeling that there is no menu existing/ menu item  is not working on mobile


Greetings,

the layout of the mobile versions of the themes has been designed this way by our UX/Design team. If you have any improvement suggestions you can use our UserVoice portal and if many other customers find it useful we would then consider applying them.

usrs wrote:
Do you have to click the Menu to get this? If I click the menu, I do get it, but when I just get to the site it doesn't display. Looks like on some devices it shows, and some it doesn't. http://mobiletest.me/google_nexus_7_emulator/?u=http://www.usreloadingsupply.com I did see a couple of phones where it does show immediately and some where it doesn't (like the link above.) Thanks!


Greetings,

well as far as I understand your questions is - Why is main navigation menu collapsed on mobile devices, and it shows only when you click it?

Feel free to correct me if I'm wrong.

However, if that is the case, then I must tell you that this is how the mobile navigation works on every responsive/mobile website. It is made that way in order to prevent bad user experience if the navigation is too long e.g. when it has many categories and sub-categories.

You do have to click the Menu button in order to expand the mobile navigation, and the same goes for the Manufacturers dropdown that you have.

Looking forward to your answer!

usrs wrote:
Sorry, I should have posted a link.  www.USReloadingSupply.com  
I'm seeing the issue on a Samsung Note 5. Thanks


Greetings,

we tested your site on multiple devices, but we cannot seem to reproduce the issue. Check the attached images for reference.

Note 4
Note 8
Galaxy S5

Can you tell us what kind of browser are you using on your device, and maybe give us some screenshots.

Looking forward to your answer.