Close

Profile: Boyko

Avatar

User posts

12 years ago

drcomputer wrote:
How to add mobile no filed in contact us form.


Hi drcomputer,

You can easily add a mobile number field in the contact us form by modifying the view file:
Views\Common\ContactUs.cshtml

But it you will also need to modify nopCommerce sources by changing the ContactUsModel and the CommonController logic in the ContactUsSend action method as well.
You need to have some basic knowledge of MVC and C# to do that.

Hope this helps!

Thanks

drcomputer wrote:
While loading quick tab in internet explorer, I am getting following error. Pls help me to resolve it
http://i45.tinypic.com/znxax3.png


Please check this article.

12 years ago

terile wrote:
I'm generating the following error when trying to execute the "re-load plugins List":

We're sorry, an internal error occurred that prevents the request to complete.

Our supporting staff has been notified with this error and will address this issue shortly. We profusely apologize for the inconvenience and for any damage this may cause. You might want to try the same action at later time.

This is the same issue reported by liu698, but the resolution was never posted.

I am using NopCopmmerce 2.60 and have had success installing other plugins.
Like Liu698, my issue is with the Categories Header Menu plugin. Please advise.


Hi terile,

Please refer to this post to find the error. After installing the plugin please modify your Global.asax file by simply putting an empty space in it and save it.

Thanks

12 years ago

drcomputer wrote:
I need to Hide homepage control in megamenu on homepage. I need Homepage control in other pages. How can be done


Hi drcomputer,

This will require several changes.
1. Modify the Mega Menu view and add a css class "home" to the Home page link li element.
Here is the view file:

Plugins\SevenSpikes.Nop.Plugins.MegaMenu\Views\MegaMenu\MegaMenu.cshtml

Here is the code:

@if (Model.Settings.IncludeHomePageLink)
        {
            <li class="home">
                <a href="@Url.RouteUrl("HomePage")">@T("HomePage")</a>
            </li>
        }


2. Create a new css file that will contain the "home" class properties.

.mega-menu .home
{
display: none !important;
}



3. Link the file in the Views\Home\Index.cshtml file.
Html.AppendCssFileParts("~/the path to your file here/homestyle.css");


This way the Home link will not be displayed only on the home page as the styles that hide it will be loaded only on the Home page.

Hope this helps!

12 years ago

gracesiswandi wrote:
Hi,

I've checked the dll version for both Autofac and Telerik and I think I have the nopcommerce 2.50. The nopcommerce's system information says that the nop version is 2.65, but the dll versions is similar with version 2.50.

So I tried to install the cloud zoom 2.6 instead of 2.65. It doesn't give any error, but it doesn't show up in the plugin list either (event after I did clear cache and restart application).

Is it because the different version of 2.50 and 2.60? Do you have workaround for this?

Thanks,

Grace



Hi Grace,

The version of the plugin should match the version of nopCommerce. So you need Nop Cloud Zoom version 2.5 in order to install it for nopCommerce 2.5. As the 2.5 version is not included in the package as we add only the last 4 versions (2.8, 2.7, 2.65, 2.6) to keep the size of the package small, you need to send us an email at our support mail and we will send you version 2.5 of the Cloud Zoom plugin.

Thanks

carlf wrote:
Many thanks for the prompt response.

Do you have any examples of how to do this?

Many thanks

best regards

Carl


Hi Carl,

Yes, you can use the EU Cookie Law popup window as an example.
Check out this view:
Views\Common\EuCookieLaw.cshtml

You need to show the dialog on click and change the "privacyinfo" topic name with the size conversion topic name "SizeConversion".

Hope this helps!

12 years ago

gracesiswandi wrote:
Hi,

I am trying to install NopCloudZoom plugin (trial version - 2.65) on nopcommerce 2.65 site, and no luck so far. I received  the following error after I copy the plugins (SevenSpikes.Core and SevenSpikes.Nop.Plugins.CloudZoom) and add new line in the global.asax:



System.Reflection.ReflectionTypeLoadException: Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.

Could not load file or assembly 'Telerik.Web.Mvc, Version=2012.1.214.340, Culture=neutral, PublicKeyToken=121fae78165ba3d4' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)

Could not load file or assembly 'Autofac, Version=2.6.3.862, Culture=neutral, PublicKeyToken=17863af14b0044da' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)



Can someone help me out here?

Thanks,

Grace


Hi Grace,

It seems like you are missing some references. In nopCommerce 2.65 the Autofac version is Autofac.2.6.3.862. Could you check that the Autofac.dll and the Telerik.Web.Mvc.dll assemblies are present in your nopCommerce bin folder? Are you sure you have the official version of nopCommerce 2.65.

Thanks

12 years ago

lacorne wrote:
Hello,

I would like to order our size filter in our Fashion theme.
Currently the filter drop down display like this:

Size:
All
0
10
2
4
6
8

And I would like the 10 to be displayed last.
How can this be adjusted?
Thank you,


Hi lacorne,

This is not possible as the attributes are interpreted as strings and are sorted alphabetically. The attributes in nopCommerce don't have a specific type i.e integer, so we can't know if all the attribute values are integers or not.

Thanks

carlf wrote:
Hi

Is it possible to have this as a modal popup, rather than opening a popup in a new browser window?

best regards

Carl


Hi Carl,

This uses the built in nopCommerce popup functionality for topics as the content of the window is managed from a topic in nopCommerce. If you want this as a modal dialog it will require some changes in the product details view. You should use the TopicBlock action and show the content of the topic in a modal dialog probably using the JQuery UI dialog.

Thanks

12 years ago

xtsiliv wrote:
Hi,
In the product page i put color attributes with color squares eg 3 colors (red, white,black) and 3 pictures (red, white,black) under the foto product.
is it possible to click the red color square attribute and in the same time the red picture comes up? or when i click the white color square the white picture comes up? like link. Color squares attributes with the pictures.

Thanks
Xrysa


Hi Xrysa,

Unfortunately there is no way this to be achieved in nopCommerce out of the box as there is no way to tell which picture to be used with which specific color attribute.


Thanks