Close

Profile: CorsaMeccanica

Avatar

User posts

11 years ago

Support 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


Implemented this on Quick Tabs and is working exactly as we needed. Thank you for your help.

11 years ago

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

11 years ago

Hello,

We have implemented Nop Quick Tabs for our product details page on our website, it seems to work well and meets most of our expectations for the plugin. However there is one thing the plugin is missing for our particular situation.

We have some products that do have specifications, therefore we enabled the specifications tab, but we also have some products that do not have specifications which then have a blank specifications tab.

Would you be able to implement the ability to detect whether the specifications tab is empty and automatically remove it for products that have no specifications?

It would be greatly appreciated.

Bugs
12 years ago

Tested the plugin locally on my dev PC today and it works great.

Thank You.

Bugs
12 years ago

So it turned out that once I uploaded my modified nopCommerce site from my development PC to my web server the instant search plugin worked as expected.

I suspect that I either missed some sort of setting in Visual Web Developer Express 2010. I typically view website in browser from the dropdown menu in the solution explorer rather than using IIS directly.

OR

Because I launch directly from VS 2010 I have an atypical URL (ex.  http://localhost:56411/nopcommerce_nosource/) and perhaps the plugin does not expect the irregular URL when it trys to search or provide drop down links to products from the database.

I'm not entirely sure. What do you think?

Also I do have my test domain up if you'd like to take a look. I'll send you the URL and FTP info to the support contact sometime tomorrow.

Bugs
12 years ago

Thanks for the quick reply.

Right now I am working on my modified version of nopCommerce on my localhost using visual web developer express.

I also have a test domain that I'm using for my nopCommerce site developement, but I still need to upload changes to it.

In the next couple days I will upload those changes and provide a link to my test domain to your support contact.

If I happen to resolve the issue in the mean time I will post back to this forum.

Bugs
12 years ago

Hello,

I recently purchased nop-templates plugin collection after using the trial version for a while. So far I have had a pretty good experience with your plugins, they add useful functionality to nopCommerce.

However I have not been able to get Nop Instant Search working properly on my development PC. Every time I try to search for a product within my store the search bar continually shows a loading state and will not drop down products like your demo site.  

I have attempted integration step by step on both a default install of nopCommerce (DarkOrange) and my own modified version of nopCommerce, using both automatic and manual integration methods. I also have restarted the application, cleared the cache, and added a blank line to the bottom of global.asax which did not resolve.  

I'm not entirely sure if this is actually a bug with the plugin or I'm just missing something entirely.

If you can help me figure this issue out that would be great, I don't want to miss out on using this great feature for my store.