Close

Profile: Support

Avatar

User posts

10 years ago

imprintableswarehouse wrote:
Using Nop 3.3 Default Clean theme.

Our mega menu is using gradients for the .mega-menu bar as well as the .mega-menu > li:hover and finally on the .mega-menu .sublist

Everything shows fine in IE9 (Windows 7) except for the .mega-menu .sublist, those are transparent and only the borders show.

What was interesting when testing was that if I disabled the gradient from the .mega-menu bar, the .mega-menu .sublist would become visible.

Due to this, and also experimenting with changing backgrounds to solid colors, I don't believe this is a gradient issue.

Any suggestions?

This site's code seemed to fix the issue: http://css3pie.com/
"PIE makes Internet Explorer 6-9 capable of rendering several of the most useful CSS3 decoration features."


Hi IMPRINTABLESWAREHOUSE,

Are you by any chance using the filter css property. Please have in mind that ifyou use the filter property in conjunction with the gradient css property they both conflict on IE 9 and that is why you see the sublist transparent.
You can freely remove the filter property and everything will work on IE 9.

Hope that helps!

Please let us know if you need any further help!

Bugs
10 years ago

UserThomas wrote:
When I copy the code in the style.css (lines 4216 to 4476) file to my custom.css file, the quickview does not correctly invert the colors. It looks like only the background color does not change on hover. It should turn from the set color to white.

I don't make any changes to the code, just copy paste. If I do change the color hex, the same things happens, just with the new color.

Other buttons work fine ie: All the buttons on the shopping cart page (update shopping cart, continue shopping, checkout...)

Getting the same issue with the mini-cart Go To Cart button.


Hi Thomas,

As far as I understand when hover on these 2 buttons the background does not change to white. Is this correct?

The white background has nothing to do with the color presets so if this particular styles are not changed the white background will be displayed on hover.

You can search for the following css styles and make sure they are present and not overridden with any custom code:

.mini-shopping-cart input[type="button"]:hover {
            border: 2px solid #e87772;
            background: #fff;
            color: #e87772;
        }

in 980.css file

and the following .product-grid .quick-view-button a:hover {
            background-position: left -21px;
            border: 2px solid #e87772;
            background-color: #fff;
            color: #e87772;
        }

in Plugins\SevenSpikes.Nop.Plugins.QuickView\Themes\Allure\Content\QuickView.css file.

If they are present but on hover the background is not white I am afraid that there will be some other styles that should not be applied. In this case we will need a link to the website so that we can have a look at what might be changed!

Best Regards!

Bugs
10 years ago

getsov wrote:
Hello,there is a slight problem with nopCommerce v3.30, with two column design the left categories menu is not in place when using the plugin. So its messing up the layout of the page. The browser is Chrome, same with FF.

Blagodarq


Hi,

I was not able to reproduce the issue. Would it be possible to send a screenshot to our support email or a link to the site with the issue so that we can have a further look at it and try to figure out what might be wrong.

Thanks in advance!

10 years ago

axiomax wrote:
Hello,

We want to change the Manufacturers and Main Categories pages.

We don´t want the list of products. We want some banners like this example: http://www.hm.com/us/department/LADIES

How we can do it?

Thanks a lot of,


Hi,

There are several ways of doing this. You can use the Category/Manufacturer description where you can upload your images and enter html for it. You can use the html editor in order to position and style the banners as you wish.

Another way is to use the Nop Anywhere Sliders and create a slider for each banner and map it to the categorydetails_top widget zone. You will need again to add some custom styling so that the banners are positioned correctly.

The third option is to use the Nop Html Widgets, create a widget, enter the html with the banners and again map it to the categorydetails_top widget zone.

Hope that helps!

Bugs
10 years ago

UserThomas wrote:
New bug:  not sure if I should post this here or on the product ribbons forum, but here it is.

It also doesn't appear to use the "text" box correctly. It just displays a small red box.


Hi Thomas,

Thank you for your feedback!

It was actually a bug that we have fixed. In order to integrate the fix you can edit your Plugins\SevenSpikes.Nop.Plugins.ProductRibbons\Styles\Ribbons.common.css file as shown below:

.ribbon-text {
  border-radius: 3px;
  box-shadow: inset 0 1px 0 #ea2626, 0 1px 2px #999;
  background: #c00; /*old browsers*/
  background: linear-gradient(#e60000 0%,#b30000 100%);
  padding: 7px 10px;
        font-size: 12px;
}

The line in bold is the one that should be added.

Thus by default the ribbon text will be 12px. If you want to change this you can do this per ribbon from the administration of the plugin. There is a textbox called "Ribbon text style:" where you can enter styles for the text on the ribbon.
You can also change the styles for the ribbon itself by entering your style in the "Ribbon style:" textbox.

Hope that helps!

cheerfulcalf wrote:
Hello!

How to make a copy of original theme and to have both copy and original at the same time? I want to keep your nice original theme, but I also want to have it modified and let customers selects which one they prefer. So I've made a copy of Lighthouse folder in Themes, renamed it to MyLighthouse and also renamed it in theme.config file.
Now I see both Lighthouse and MyLighthouse in admin General settings and on front-end. However, when I select MyLighthouse - all resources (css, etc.) still goes from "/Themes/Lighthouse/Content/...".
You can see it here http://staging.manoroletai.lt/

So what and where should I change else?

Regards,
Thank you in advance for your quick answer ;-)


Hi,

You can create a theme derived from the Nop Lighthouse theme but you should make some changes in order to make it work:

1. In the Themes/MyLighthouse/Views/Shared/Head.cshtml file change the paths to all css and js files so that the ones from the MyLighthouse folder are reference, so just replace the Lighthouse word with the MyLightouse in the paths for the files.
2. In the theme there are locale resources used which you can change to a different values if you intend to have different resource values fro the both themes. For example the "SevenSpikes.Themes.Lighthouse.Common.FollowUs" resource name has a value of "Follow Us" which is displayed in the footer. So if you want to have different values in the different themes you can change the resource name to SevenSpikes.Themes.MyLighthouse.Common.FollowUs in the Themes/Lighthouse/Views/Common/Footer.cshtml file and then add this resources with its value in the administration. But I suppose you will not need to have different resource values in the different themes.
3. I believe you will have the same logo for the two themes.

If you have any further queries or need some additional information, please let us know!

Best Regards!

10 years ago

Hi Alex_,

If you want to add the Add To Wishlist button on a category page you need to use the following code in the Themes/Motion/Views/Catalog/_ProductBox.cshtml file:

  @if (!Model.ProductPrice.DisableWishlistButton)
                {
                    <div class="add-to-wishlist">
                        <input type="button" id="[email protected]" class="button-2 add-to-wishlist-button" value="@T("ShoppingCart.AddToWishlist")" data-productid="@Model.Id" onclick="AjaxCart.addproducttocart_details('@Url.RouteUrl("AddProductToCart-Details", new { productId = Model.Id, shoppingCartTypeId = (int)ShoppingCartType.Wishlist })', '#product-details-form');return false;" />
                    </div>
                }


However you should have the following in mind if you intend to have a wishlist on catalog pages(category, manufacturer, vendor, etc.)

- The wishlist button is implemented so that it works on a product page and if a product has attributes they need to be chosen, so if you have products with attributes and click the add to wishlist on a category page you will have a notification that you need to select the given attributes.
- The wishlist button is valid only for simple products so if you have a grouped product the Add To Wishlist button will not appear on a category page.

Hope that helps!

Bugs
10 years ago

hayco83 wrote:
Hi,

When inputting some letters for instant search, the results window is shifted way to the right on (Firefox and IE) and is just fine on Chrome

www.creativetoystore.com

How can I solve this?

Thanks


Hi hayco83,

Thank you for your feedback!

This was actually a bug that we had fixed and uploaded on our site. In order to integrate the fix you need to download the theme again and replace the following files with the ones from the package downloaded:

Plugins/SevenSpikes.Nop.Plugins.InstantSearch/Themes/Playground/Content/InstantSearch.css
Plugins/SevenSpikes.Nop.Plugins.InstantSearch/Themes/Playground/Content/InstantSearch.rtl.css
Themes/Playground/Content/css/768.css
Themes/Playground/Content/css/768.rtl.css
Themes/Playground/Content/css/styles.css
Themes/Playground/Content/css/styles.rtl.css

Please let us know if the issue still occurs!

Best Regards!

Hi ASWAAQ,

Thank you for your feedback!

This was actually a bug that we have fixed and uploaded on our site. In order to integrate the fix just go to your My Downloads section, download the theme again and replace the following file with the one from the package:

Themes/Electronics/Content/css/mobile-only.rtl.css

Please let us know if the issue still exist!

Thanks again!

10 years ago

lnetdev5 wrote:
Hello,
We've this alfresco theme, lately we checked it
via mobile, ipad actually, but i guess same problem happens also from
iphone/android.

if it's adjusted to mobile, how the users can view the upped details on each product
in correct way? also there is buttons on it, and even if you succeeded to get this popup it's
almost impossible to click on those buttons..

any known solution?
thanks


Hi lnetdev5,

Thank you for your feedback!

You are right about that issue. We will fix it and will let you know once it is done.

Thanks again!