Close

Profile: Support

Avatar

User posts

Bugs
10 years ago

NaNetGestao wrote:
Hi,
I have a problem with plugin Quick View.
when mouse hover in a product, sometimes, he dont show button. it's necessary refresh page site for plugin works fine.

http://or131223.gestotaldigital.com


Hi,

I checked the following url(http://or131223.gestotaldigital.com/loja) and could not reproduce the error. Can you please check your administration -> system -> log for any errors that can prevent the button to show. As you have purchased the paid version and not the trial one, there should be no problem with the plugin. Can you also let us know in which browser you have come across that behavior.

Best Regards!

10 years ago

summitridgegear wrote:
Thanks. This is good info. Now it is giving me an error "Can't find route name....". I know I have to hook my age in somewhere, but can't find where. Excuse me if these are newbie question.


Hi,

Can you share what route you are trying to use and for what page, so that we can help you what might be wrong. As you know in nopCommerce there are different routes for different pages, so you might be using the wrong one.

Best Regards!

pvinit wrote:
Hi

I am Still Waiting for reply for my last post and i also tell me that how to show a filtered attribute with (Remove) link on page. it's possible or not?

Please Reply

Regards,
Pvinit


Hi,

in order to show a "Remove" link, you can achieve that but you should make customization to the views. Please have a look at the example below for an attribute, it will be the same for specifications and manufacturers filters.

Edit the AttributeFilter.cshtml view to add a <span> for the remove text:

<a class="@filterItemCssClass" data-option-ids="@productVariantAttributeIds" data-optionsGroupId="@String.Concat(attributeFilterGroup.Id, "-", attributeFilterItem.Name)">@attributeFilterItem.Name<span class="remove-text">Remove</span></a>

and add the following css to the AjaxFilters.css file:

.remove-text
{
float: right;
}
.filterItemUnselected .remove-text
{
display: none;
}

Hope that helps!

fakeplacebo wrote:
Hi,

I'm trying to use Nop NeoFashion Responsive Theme with in two languages; English and Turkish. It's easy to set sliders, products, menus for two languages. But I can't find a way to use store logo image according to store languages. Languages are changing but store logo remains same.

Is there a way to use two store logos according to active language?


Bets Regards


Hi fakeplacebo,

Unfortunately it is not possible without any customization to have different logos for different languages. The logos use the same functionality for pictures in nopCommerce as products for example where you cannot have different images for products for different languages. If you are familiar with C# and Razor you can try to retrieve the language id and set different images depending on this. The logo is rendered in the Themes/NeoFashion/Views/Shared/Header.cshtml view via the @Html.Widget("neofashion_theme_logo") widget call.But please have in mind if you change this the functionality for controlling the logo from the administration of the theme will not work.

Hope that helps!

pvinit wrote:
Hi ,

I have customize markup and nop.ribbon pluging not workig.

if i use your class then it's works but it put ribbon on product picture and i don't want to display it there(picture container) , i want to show it on other div or out side of picture container, how to do? please suggest

and if i change in your markup it's also not work.
suggest ,

Regards
Pvinit


Hi Pvinit,

Have you tried to change the settings of the ribbons from administration -> plugins -> Nop Product Ribbons -> Settings to match to your markup?

Hope that helps!

10 years ago

dincaykirtasiye wrote:
Is it possible  to configure Ajax Fiter to filter on search results?If yes how? :)
It only works on category and manifacture pages..
Am I missing something?

Thank you..


Hi dincaykirtasiye,

The Nop Ajax Filters are available only on the category and manufacturer page. As they are built on top of nopCommerce functionality it is no straightforward to implement them on the search page.

If you think this is a valuable feature for the plugin, you can propose it in our user voice portal so that others can vote for it too and we will implement it if there are enough votes, as we always try to listen to our customers.

Best Regards!

10 years ago

summitridgegear wrote:
I want to add a new feature to the main menu, i.e. HOME, PRODUCTS, etc. I have been unable to figure this out. I am on 3.2. Any guidance will be appreciated. Of course the new menu item will launch a custom page.


Hi summitridgegear,

As you know the razor views of all our plugins are open for modifications, so you can easily add any link to the Nop Mega Menu if the link is not present as an option in the administration of the plugin.
In order to do that just open the Plugins/SevenSpikes.Nop.Plugins.MegaMenu/Views/MegaMenu/MegaMenu.cshtml file in a text editor. You will see many <li> elements which represents every link that can be displayed in the menu. So if you want to add any custom link you should add it as a <li> element. For example

<li><a href="{link_to_your_page}">{text_displayed_on_the_menu_item}</a></li>

where you want to be displayed your menu item. The link_to_your_page and text_displayed_on_the_menu_item should be replaced with your link and text for the new item.

For example after the

if (Model.Settings.IncludeContactUsLink)
    {
        <li><a href="@Url.RouteUrl("ContactUs")">@T("ContactUs")</a></li>
    }

code which is for the Contact Us link.

Hope that helps!

Hi,

For the attributes, you should use the @attributeFilterGroup.Name
For the specifications, you should use the @specificationFilterGroup.Name
For the manufacturers, you should leave it as it is, because the manufacturers are just a collection of all manufacturers, so you cannot group them by a property for example.

Hope that helps!

New Field
10 years ago

Hi,

The HTML helper is a good way to do it, as the Nop Mega Menu uses its own MegaMenuCategoryModel which is optimized in terms of performance. In the beginning we used the nopCommerce's category model, but there were a lot of properties and models that were built as part of the category, which were not used by the Nop Mega Menu. That is why we use our own model that contains only the properties we need for the Nop Mega Menu. This is the reason why your new field is not populated correctly in the Nop Mega Menu, because we use our own model and controller which does not set anything extra.

Hope that makes sense!

10 years ago

Prokey wrote:
How can I change the store logo in Nop Shop All for version 3.10??
Thanks.


Hi,

You can do via the administration of the theme. Please go to administration -> plugins -> Nop Shop All Theme -> settings and there you will find a field for uploading a logo. After you have upload it you should click the Save button on the top right corner.

Hope that helps!