Close

Profile: Support

Avatar

User posts

12 years ago

shanexh wrote:
Also I forgot to mention we are currently using nopcommerce 2.50, but intend on upgrading to 2.70 when it is released.


Hi shanexh,

There is no need to wait till 2.70 as it is planned to be released around the end of December.
What you want can be done by simply checking if the specifications are available and if not simply not showing the tab.
Please make sure you have disable the Ajax for the Tabs and change the code in this file Plugins\SevenSpikes.Nop.Plugins.QuickTabs\Views\ProductTab\_ProductTabs.cshtml
to be like this (changes in bold):
@if (Model.Settings.EnableProductSpecificationsTab)
            {
                var specificaions = Html.Action("ProductSpecificationsTab", "ProductTab", new { id = Model.ProductId });
                if (!String.IsNullOrWhiteSpace(specificaions.ToString()))
                {

                    divs.Add(new KeyValuePair<string, string>("tabs-specs", specificaions.ToString()));
                <li><a href="#tabs-specs">@T("SevenSpikes.NopQuickTabs.Client.Tabs.Specifications").ToHtmlString()</a>
                </li>  
                }
            }


Hope this helps!

Best Regards,
Nop-Templates Support Team

Bugs
12 years ago

cHiEsA wrote:
I've translated resource with value "search" and it didn't work.
That's why i've questioned.

Do i need download a new version of Electronics Theme?


Hi cHiEsA,

Yes, you can download the version 2.6 of the Electronics theme but you can simply edit the SearchBox.cshtml file:
Themes\Electronics\Views\Catalog\SearchBox.cshtml
and change the value of the search button with @T"Search":
value="Search" should be value="@T("Search")"

Thanks!

Bugs
12 years ago

cHiEsA wrote:
And what's the Resource Name for the text in the button?


Hi cHiEsA,

It should be Search

value="@T("Search")"


But we just noticed we don't use it via the resource name but directly.
We will use it now and thank you for pointing this out.

Many thanks!

12 years ago

gkennedy1 wrote:
The customer sells parts for whitegoods products. The products are categorised - 'Vacuum cleaners, dishwashers, dryers, microwaves etc'
They would like a filter that allows their customers to select the category, then manufacturer, then by attributes. Eg: Vacuum cleaner, Electrolux, compatible model number 123456.
Thanks,
Greg


Hi gkennedy1,

Thank you for the clarification!
It seems like these are a bit different Ajax Filters.
We have seen this on a lot of specialized web sites for i.e Cars, Tyres, Phones etc.
You can select from a main dropdown and based on the selection you can select from a second dropdown, which is populated based on the previous selection.
We don't think the current implementation of the Ajax Filters can work this way without some significant modifications to them. This functionality could be useful for a lot of businesses running their stores on nopCommerce.
Would you mind suggesting it in our UserVoice portal and let other vote for it and we will see if there are any interest in it we can think of implementing such a plugin.

Best Regards,
Nop-Templates Support Team

12 years ago

JustinMorris wrote:
Also, great work...every tool is great...

How do we add to the Cart page, below the content area?  Add Products also sold with...whatever in the cart?

Thanks for your hard work!


Hi JustinMorris,

You can add a custom widget zone and add it on the Cart page.
As to the products also sold with whatever in the cart you can use custom data source and pass these products to the carousel. First you need to find a way to get these products as we are not aware for such a service in nopCommerce that returns these products. You can create a controller with an action that returns these "products also sold with whatever in the cart" and pass them to JCarousel as a custom data source.
Please refer to our online documentation for how to use custom data source with the Jcarousel.

You can also suggest us do it in our UserVoice portal and let others vote for it.

Best Regards,
Nop-Templates Support Team

12 years ago

JustinMorris wrote:
Seems like it stops after the # of products set...how to keep it rotating and start over, incase the user is just staying on the page...or a restart button to start it over vs. clicking left arrow back through all the products?  I had 10 products selected...


Hi JustinMorris,

To keep it rotating you need to make sure that Wrap items is set to circular from the Advanced Settings. Please refer to the online documentation.
If you want to rotate it automatically then you need to set Autoscroll the content after (seconds): to 3 for example and this will move to the next Number of items to scroll by: automatically every 3 seconds.

Hope this helps!

Thanks

vedran wrote:
Without SEO (seo disable) I have this error

Log level:   Error
The log entry message.Short message:   Object reference not set to an instance of an object.
The details for the log entry.Full message:   System.NullReferenceException: Object reference not set to an instance of an object. at SevenSpikes.Nop.AjaxFilters.ActionFilters.CategoryActionFilterAttribute.OnActionExecuted(ActionExecutedContext filterContext)


Hi Vedren,

So the same happens with the Ajax Filters as they also use Action Filters.
Please uninstall the Filters and check again.

Please let us know how it goes!

Best Regards,
Nop-Templates Support Team

Hi,

Although the error is thrown by the Smart SEO plugin the actual error is not there. Please uninstall the smart SEO plugin and this way the real error will be shown. The Smart SEO uses action filters that expect a View result to be returned by the action but when there is an error on the category page then a redirect to the error page result is returned and this causes a null reference exception. Please uninstall the plugin and check again your log. When you resolve your problem you can install the Smart SEO again or alternately simply disable the smart seo.

Best Regards,
Nop-Templates Support Team

Bugs
12 years ago

cHiEsA wrote:
The Search Button is an image with the Text on it.
This give us a problem when we want multiple languages on a site because this button will always have the text in English (Search).
It's possible to change this so we can have multiple languages for the search button?


Hi cHiEsA,

Probably you are using an old version of the Electronics theme as the search button is not an image anymore since version 2.6.
If you don't have plans to upgrade to a newer version of nopCommerce then simply download the Electronics theme package and get the 2.6 version of the Electronics theme and copy the new css styles for the .searchButtonClass css class. Note that there is a new background image that you will also need to copy over.

Best Regards,
Nop-Templates Support Team

12 years ago

gkennedy1 wrote:
Hi,
We have a customer who would like the ajax filters to include categories. Is this possible?

Thanks,
Greg


Hi Greg,

The Ajax Filters now work in the context of a given category, so it doesn't make sense to filter by category as the filtered products are already filtered by the current category.
Maybe you are talking about when you have subcategories but please elaborate more on this one?

Thanks
Nop-Templates Support Team