Close

Profile: Support

Avatar

User posts

Bugs
11 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!

11 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!

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!

11 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!

11 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!

New Field
11 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!

11 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!

Bugs
11 years ago

[email protected] wrote:
Problem is encountered when we had manually mapped the products.

We have not tried the same case with data sources.

Yes, we are using 3.0 version on this site.


Hi,

Thank you for the feedback. We have fixed this issue and uploaded it on our website. You should download the package again and upload the plugin according to the following article.

Thanks again!

11 years ago

jburke wrote:
Sorry, I should have let you know the version from the start! I am on 3.10 and do not have immedate plans to upgrade. So if you all can merge the changes, that would be fantastic!

JB


Hi,

The fix have been merged into 3.1 and uploaded on our website. In order to integrate the fix, please download the package again and update the plugin following the article.

If you haven't made any modifications to the Themes/Electronics/Content/css/styles.css file it will be a good idea to replace it with the downloaded one, because it contains some minor bug fixes as well.

Please let us know if the issue still exists.

New Field
11 years ago

[email protected] wrote:
Hi,

I'm having trouble with a retrieving value of a field
I need to add categories in menu in additional "Categories Menu", i'm explain.


By Default it's possible to do :
Home, Categories
              -Categ1
              -Categ2
              -Categ3
or
Home, Categ1, Categ2, Categ3

But i need to do that :
Home, Categories, Categ1
           -Categ2
           -Categ3


So, I added a new boolean field "IsInMenu" to exclude categories in sub "Categories" and Include it in First "<LI>" .

I edited Views to add my loop and my restriction but my field is always always "false" when I see in my administration this field is "true".


Do you have somes Ideas, to get my field's value and why is't not getting?


Hi,

As far as I understand you have made customization to the CategoriesModel, admin view for categories, admin catalog controller and etc. I am not sure how you keep your new field in the database(probably as a entity attribute), but you should check your logic for setting this field in the administration and how you retrieve it in the public part.

Hope that helps!