Close

Profile: Boyko

Avatar

User posts

digitalmbs wrote:
Hi Guys,

It might be stupid questions but its doing my head as I couldn't figure out Category Header Menu v/s Mega Menu whats difference please?

regards,
Dan


Hi Dan,

The Category Header Menu plugin is a very old plugin we created a log time ago for nopCommerce 2.1. At that time there was no any menu that shows the categories for nopCommerce and we decided to create one. Currently this functionality comes out of the box for nopCommerce and this plugin is kind of useless.
While the Mega Menu, which we add in all our themes, allows a lot of functionality with powerful administration that is missing in the default menu in nopCommerce.
You can checkout the Mega Menu demo and administration here.

Thanks

Bugs
10 years ago

joster wrote:
Hello-

All previous problems were cleared up a few months ago when I re-created the website.

Yesterday I upgraded our nopcommerce and alfresco theme to version 3.40, and have a new problem with Customer Reminders.
When this page is accessed, it takes about a minute, then a page error finally pops up...then the page loads...

/Admin/CustomerRemindersAdmin/ReminderExcludedCustomerAddPopup?reminderId=2&btnId=btnRefreshReminderExcludedCustomer&formId=reminder-form

The error saved to the nop log is:

Error during serialization or deserialization using the JSON JavaScriptSerializer. The length of the string exceeds the value set on the maxJsonLength property.

System.InvalidOperationException: Error during serialization or deserialization using the JSON JavaScriptSerializer. The length of the string exceeds the value set on the maxJsonLength property.


Did I forget something when upgrading?

Thanks!


Hi Joster,

By looking at the error you have received this means that you need to add a setting in your Web.config file as described in this post.
As you have upgraded to the new version you have used the new Web.config file, which is missing this setting.

Thanks

10 years ago

haknesh wrote:
Hello Boyko,

I dont have a Product folder in Themes\Fashion\Views\   ....?


Hi haknesh,

Sorry I just realized that you are using nopCommerce 3.3, so ignore this for the product folder as it is for nopCommerce 3.4 only.

Thanks

10 years ago

haknesh wrote:
I removed the  @Html.Partial("ShareButton") from ProductTemplate.Grouped.cshtml and ProductTemplate.Simple.cshtml.
The button was rendered no matter of configuration in catalog settings. Is this a bug?


Hi haknesh,

Please make sure the ShareButton.cshtml file is located in the Themes\Fashion\Views\Product folder rather than into the Catalog one. If it is in the Catalog folder then please move it to the Product one.

Thanks

10 years ago

toanhnt wrote:
Hi nop-template team,

Can your nop quick tab be used with nopcommere furniture official theme? Could you please check this link and give me some advise to fix the problem. thank you
http://pedichair.com/acacia-foot-spa-massage-chair


Hi toanhnt,

There is no reason for the Quick Tabs not to work in other themes.
Please submit a ticket with more information and we will advice.

Thanks

CDN error
10 years ago

IvanSlater wrote:
Hi there.

I have started use NopAccelerate CDN plugin and it is configured and is working great. The point is, since I enabled it, the customer reminder plugin started to thrown this error:

System.NullReferenceException: Object reference not set to an instance of an object. at XcellenceIT.Plugin.CDN.Services.CDNPictureService.GetDomains() at XcellenceIT.Plugin.CDN.Services.CDNPictureService.GetPictureUrl(Picture picture, Int32 targetSize, Boolean showDefaultPicture, String storeLocation, PictureType defaultPictureType)

...

Can you help?


Hi IvanSlater,

It looks like there is a problem in their implementation of the IPictureService- .CDNPictureService.
You should contact the plugin vendor and let them know that their implementation of the IPictureService throws an exception when used from a Scheduled Task (the customer reminders scheduled task), so that they can fix it or at least to default to the default nopCommerce PictureService implementation.

Thanks

10 years ago

haknesh wrote:
Hello,

Where can i change the layout of the jcarousel ? i see a jcarousel.css file when i inspect the page with firebug. is this file made on the fly ? because i cannot find it in the theme's directory.


Hi haknesh,

Firebug also shows the file location when you hover over it.
Here is where the jcarousel.css file is for the Fashion theme.
Plugins\SevenSpikes.Nop.Plugins.JCarousel\Themes\Fashion\Content\JCarousel.css

Thanks

10 years ago

gnikspam wrote:
Hi

how to find the current version of plug-ins

senks


Hi senks,

You can download the latest package from your My Downloads section.
You can read this article of how to update a plugin to the latest version.

Thanks

Merge Headers
10 years ago

mail2mhm wrote:
Thank You So Much Mr. BOYKO

About item number 1: can you explain more details about how to merge "header-top" and "header-bottom", as you know the theme has two headers like some other themes in your web-stie

About item number 2: about the short-description you help us to remove we want to replace it with the Manufacturer name associated with that product

to be clear we want Product Name at the top, Manufacturer name below that and in the bottom the price in product box

Thanks in Advance


Hi mail2mhm,

You need to have some basic knowledge of Razor and CSS to make modifications to the theme.
I already told you in which file to look to make your changes in the header (see previous post).
To change the product boxes you need to edit this file:
Themes\Motion\Views\Shared\_ProductBox.cshtml

Thanks


Merge Headers
10 years ago

mail2mhm wrote:
Hello

At first, Thank You For Great Design

I Have 2 Requests About This Wonderful Theme:

1- I Would Like To Merge Header-top and Header-bottom together in RTL Mode

2- I Want To Hidden Short-Description in Product-Box Just in Grid View

Please Help me.
Regards


Hi mail2mhm,

We are glad you like the design!

1. To merge them you need to modify the markup(html) of the theme. Here is the view of the Header, which you need to modify.
Themes\Motion\Views\Shared\Header.cshtml

2. To hide the description only in grid you need to add this css styles:

.product-grid .item-box .description
{
display: none;
}


Hope this helps!

Thanks