Close

Profile: Boyko

Avatar

User posts

11 years ago

rscott78 wrote:
I'm using the reminders plugin for my 3.0 setup. I've got a "Abandoned Cart" reminder setup to send after 12 hours, but I get the email after just a few minutes of adding an item to my cart.

Here's a screen shot of my setup:

http://8b00dabafb79df8fd29d-df819fbfa20aed079fcbd3a835f9ccad.r13.cf1.rackcdn.com/reminders-bug.png


Hi rscott78,

It looks like your setup is not correct. If you want to send the first reminder only after 12 hours since the shopping cart item has been added then you should set the "Condition Met Date Earlier Than:" to be 12 hours (your current one is empty, which defaults to 0 minutes). You should also set the "Condition Met Date Later Than:" to be something like 5 days for example, which means that any customer with a shopping cart item that has been added 5 days ago won't be bothered with reminders.
I think the names of the settings are a bit confusing and unclear, so any suggestions of changing them are welcome.

Thanks

11 years ago

rgujral wrote:
Hi:

Noticed an issue. When we do search on pattern on the home page, and the matching string options are more then 3-4, the Nop Mega Menu blocks the view of matching strings available in the store.

Please let me know if you have the fix for it.

Regards,


Hi rgujral,

Just searched on our demo store with "gift" and the search results are not hidden under the Mega Menu. What browser do you use and can you reproduce this on our demo store?

Thanks

11 years ago

hubix2000 wrote:
Hello,

we just started to develop an own responsive template. How long would it take if we would wait for you?

Regards
Jörg


Hi Jörg,

We have been very busy lately preparing for nopCommerce 3.0 and we did quite a lot of improvements in all our plugins and themes for the nopCommerce 3.0 release. Most of these changes will ease us in creating a responsive theme. We plan to start working on a new responsive theme once we finish with the 3.0 release. I can't give you an estimate when the new theme will be ready as this will be our first responsive theme and having in mind that we add all our plugins in our themes then this will require making all our plugins responsive as well.

Hope this information is helpful!

11 years ago

cicciuzzo wrote:
Hi

I bought Nop Ultimate Plugin collection.. this collection is optimized for new version of NopCommerce?

hi


Hi cicciuzzo,

We plan to release the Ultimate Plugin Collection for nopCommerce 3.0 on Wednesday.

Thanks

11 years ago

minsou wrote:
Hi,
i set the manufacturer in grid options, but i don't find in the documentation where to store the pictures associated to manufacturer. Can you explain me ?


Hi minsou,

You need to go to the Administration. Then go to Catalog -> Manufacturers and click on the Edit link next to each manufacturer. Now you can upload a picture for the given manufacturer.
Then this picture will be used in the Mega Menu for the manufacturer.

Thanks

Hass wrote:
Hi,

-I have configured the catalog listing in public store to show 4 product box per grid line in grid view ...


You need to do the same changes in the Ajax Filters by modifying this file:
Plugins\SevenSpikes.Nop.AjaxFilters\Themes\Fashion\Views\Catalog7Spikes\CategoryTemplate.ProductsInGridOrLines.cshtml

Hass wrote:

- I have manage to configure the catalog in public store so when clients hover a image it will change to another one how can I leave the quick view but instead of showing it on hover I want it to always be shown like for example in place of the add cart button


The Quick View buttons are added from the QuickView.min.js file. So you need to modify this file but I am not sure that this will be easy as now the Quick View button is added on mouseenter and is removed on mouseleave.

Hope this information is useful!

11 years ago

thesteef wrote:
Hi, I was wondering, when can we expect the 3.0 version of the fashion theme?


Hi thesteef,

We are working on the upgrade and we hope to have it released at some point on Wednesday as we need to update the demo store and the Theme Roller as well.

Thanks

Bugs
11 years ago

naveenpinna wrote:
Hi

We are using 2.6 and we get this error message when we install the jcarsousel plugin

Server Error in '/' Application.

No parameterless constructor defined for this object.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.MissingMethodException: No parameterless constructor defined for this object.

Source Error:


Line 3:  @foreach (var widget in Model)
Line 4:  {
Line 5:      @Html.Action(widget.ActionName, widget.ControllerName, widget.RouteValues)
Line 6:  }

Source File: c:\inetpub\Nop.Web\Views\Widget\WidgetsByZone.cshtml    Line: 5


Hi naveenpinna,

Please modify your Global.asax file by putting an empty space in it and save it.
There is a known issue, so when you install new plugins you need to have a full application restart.

Thanks

Logo Size
11 years ago

aesperon wrote:
how can I change the size of the logo


Hi aesperon,

You can change the size of the logo by uploading a different logo image and then adjust the styling of the logo link in the css of the theme Themes\ShopAll\Content\styles.css
Modify this css definition:

a.logo
{
    background: url('images/logo.png');
    display: block;
    width: 195px;
    height: 118px;
    text-decoration: none;
}


Hope this helps!

11 years ago

atzmonca wrote:
hi,
and where is the css line code that control this behavior? i want to mark this code


Hi atzmonca,

You can find the css of the Mega Menu here:
Plugins\SevenSpikes.Nop.Plugins.MegaMenu\Themes\YourThemeName\Content\style.css

Where YourThemeName should be the name of your current theme in nopCommerce i.e ShopAll.

And this is the line in the css file that makes the Menu to show on hover:

.mega-menu li:hover .dropdown 
{
    display: block;
}


Hope this helps!