Close

Profile: Deni

Avatar

User posts

9 years ago

BlueMed wrote:
Hi,

We are using  [Categories] [Manufacturers] [Specification_1] [Specification_2] ... [Specification_N] as UI mode. But Manufacturer list is not loaded based on the category selection. You can check it on our website

Kindly help us on this.

Regards,
Ela


Hi, 

On the first look everything is working fine. As I do not know your category and manufacturer structure, I can not say it for sure. If you want, you can submit a ticket, providing admin credentials - this way, we will be able to find if you really have a problem.

jakubz wrote:
Hi! how can i change footer block with information "about us"? I want insert another topic (shorter/without photo etc.), but don't have idea how to do this?


Hi, 

To do this, you should go to this file: \Themes\Smart\Views\Common\Footer.cshtml and find this row (in the beginning of the file): @Html.Action("TopicBlock", "Topic", new { systemName = "AboutUs" }). Just change "AboutUs" with the system name of the topic you want to show.

9 years ago

ezrussmith wrote:
When I choose the category menu template "Categories in grid (with pictures)" from the settings of the Mega Menu, no pictures of the category appear in the menu. But when I select "Categories in a list", the names of the categories appear just fine.

View this at dev.beyondjustpets.com. You will see the categories have images, but the menu item for Categories does not show them. I am using the Alicante theme and nopCommerce 3.2. This is done with a default install, except for changes in CSS and one product template. I have done nothing with categories except make them.


Hi, 

Please submit a ticket with your problem and also provide admin credentials, so we can find what is causing your issue.

9 years ago

haknesh wrote:
Hello,

When selecting the 'Manufacturer in grid(with pictures) in mega menu setting, you don't see the 'View all' link (standard). Is there a easy way to make this?

Thanks in advance.


Hi, 

The link "View All" is not included in the "Manufacturers in grid" template, because this will break the styling. You can add it easily, by modifying this view: \Plugins\SevenSpikes.Nop.Plugins.MegaMenu\Views\MegaMenu\ManufacturerMenuTemplate.WithPictures.cshtml. Before the closing tag of the <div class="row-wrapper"> add this code:

<div>
  <a class="view-all" href="@Url.RouteUrl("ManufacturerList")" title="@T("SevenSpikes.MegaMenu.ViewAllManufacturers")">@T("SevenSpikes.MegaMenu.ViewAllManufacturers")</a>
</div>


I hope that helped.

9 years ago

IvanSlater wrote:
Dynamic prices should be dynamiclly updated inside add to cart modal window.


Hi, 

I have tested this and it is working just fine. Make sure that this setting is checked: Catalog Settings > Enable dynamic price update.

Hi, 

In the code will be really difficult to hide the price or/and the add to cart button. But, you can easily do that via CSS. Just add this code in your theme Custom Head Styles setting:

.instant-search-item .detail .price,
.search-page .item-box .add-info {
  display: none;
}

9 years ago

rush69 wrote:
Hello,   
It would be possible to implement a carousel with all the reviews of the site?

Thanks


Hi, 

Everything is possible, but for achieving this you need to create your own logic and write both back and front-end logic. You can insert this carousel in the pages via the Html Widgets plugin. 
You can make a suggestion for such plugin in our User Voice portal.

I hope that helped you !

9 years ago

Muna wrote:
Hello Everyone

I am using Traction theme & Mega Manu, I want's to make multiple dropdown menu bashed on different topics. Such as under "About us" menu, i want's to create 4-5 sub-menu. But I can't. Please help me in advance. 

Thanks 


Hi, 

You can read our documentation how to do it.

9 years ago

ezrussmith wrote:
What caused the error was I had created a custom product template. QuickView needed its own version of the template of the same name added to it. Problem solved.


Hi, 

Yes, I did not think of that. I am glad that you have found this. Keep up the good work!

9 years ago

Hi, 

As I said, the browser will require permission (a popup should appear to ask) from the user to enable the GeoLocation. Also your browser should support it - all modern browsers support it (IE9+, Chrome, Mozilla, Opera, Safari).

In order to hide the element, just modify the previous code to be like this:

$('.getUserGeoLocation').click().hide().next('span').hide();

This will also hide and the hint. If you want to keep the hint, make the code like this:

$('.getUserGeoLocation').click().hide();

I hope this helped!