Close

Profile: Support

Avatar

User posts

Bugs
11 years ago

UserThomas wrote:

Thank you for your feedback. This is a typo with the resource name. You can easily fix it if you add the following two resources with the following values:

key: sevenspikes.themes.playground.common.goto value: Go to ...
key: sevenspikes.themes.playground.common.gotopage value: Product's page

This worked but it doesn't look like it was corrected in 3.3.

Thanks again guys for the great support!


Hi Thomas,

We have fixed that in 3.3 recently and uploaded on our site. If you want you can download the theme again and replace the Themes/Allure/Views/Order/Details.cshtml file with the one from the package.

Thanks!

11 years ago

Oakstone wrote:
Can the popup contain upsell or related products associated to the product added to the cart?


Hi Oakstone,

Unfortunately this is not possible currently with the Nop Ajax Cart. Related and Products Also Purchased can be displayed in the Nop Quick View popup. But I think is a good idea if we can show related products or cross sell products on the dialog which popups after adding a product to the shopping cart.

You can suggest this idea in our user voice portal and we will put it on our roadmap.

Thanks for the suggestion.

11 years ago

jackieliu wrote:
The theme is working good on PC, but when I view my site by my phone and click the Menu button,  there is only a "Close" title, I can't see any other categories. Can anyone help me about this? THX!


Hi Jackie,

I am pasting the answer here as well so that other customers can benefit from it too. The issue was that the "Enable Mega Menu Responsive" option was not checked in the administration of the plugin. In our latest version 3.3 of the plugin, this option is removed and the Nop Mega Menu is responsive by default.

Thanks!

11 years ago

ahm8025 wrote:
I receive this error on any category page with Ajax Filters:

Retrieving http://www.whichrug.com/Plugins/SevenSpikes.Nop.Plugins.AjaxFilters/JQueryTemplates/JDropDown.htm failed.

I have reinstalled and follow the instruction advised in http://www.nop-templates.com/boards/topic/926/error-message-on-vendors-page-with-filters to rectify the problem but problem persists.

Please advise.


Hi ahm8025,

This had been fixed and uploaded on our site. You can integrate the fix by downloading the theme again and replace the Plugins\SevenSpikes.Nop.Plugins.AjaxFilters\Views\NopAjaxFilters\NopFilters.cshtml file with the one from the downloaded package. After that you need to restart the application from the administration.

Please let us know if the issue still exists!

Bugs
11 years ago

UserThomas wrote:
Option one worked.
But I can't get it to read my custom.css file  here is where I added the code:
    if (supportRtl)
    {
        Html.AppendCssFileParts("~/Themes/Allure/Content/CSS/styles.rtl.css");
    }

    Html.AppendCssFileParts("~/Themes/Allure/Content/CSS/styles.css");

    Html.AppendCssFileParts("~/Themes/Allure/Content/CSS/custom.css");

    Html.AddScriptParts("~/Plugins/SevenSpikes.Core/Scripts/SevenSpikesExtensions.js");


Here is what is in the custom.css file:
.category-page .sub-category-grid .item-box {
width: 18.5%}
.home-page-category-grid .item-box {
width: 16%}


@media screen and (min-width: 1001px){
.product-details-page .overview {
margin-left: 620px;
margin-right: 0;
}
}
@media screen and (min-width: 769px){
.ui-tabs {
float: left
}
}
@media screen and (min-width: 769px){
.product-details-page .overview {
float: right;
}
}
.side-2 {float: left;}
.center-2 {float: right;}


Also, do I need custom.rtl.css file?


Hi Thomas,

The RTL css files are necessary only if you are going to use the theme with a language that is Right-To-Left, so I suppose that you will not need to have a custom.rtl.css file.

The piece of code that you have pasted is correct and the custom.css file should be included in the theme. You can verify this by disabling the css bundling and inspecting the page to see which css files are included in the <head> element.

Best Regards!

Bugs
11 years ago

UserThomas wrote:
New bug:  I have the "side-2" column on the left side of the page and the categories are listed above the filters.  When you drag your window "narrower" and the responsive theme hides the side-2 menu, then when you drag it back out, when the side-menu shows again, the Price Range filter is all of a sudden above the category listings.


Hi Thomas,

Why should you drag your window "narrower" and them drag it back. It is not a real case scenario. We have added this "functionality" only for our demo and for customers who do this dragging but in the real world this is very unlikely to happen. The filters are detached and attached on a different place in the html for a mobile device, so we have added attaching them back in the beginning of the column so that if someone is doing this dragging, the filters are not lost and it does not look as a bug.

Hope that makes sense!

Bugs
11 years ago

UserThomas wrote:
New Bug: When clicking on the buy button when you hover over the product thumbnail, the grey spinning "circle" image that pops up showing the site is working, is displayed behind the product thumbnail images.

It happens on your demo site as well.


Hi Thomas,

Thank you for your feedback!

We have fixed that issue. You can easily integrate the fix manually on your site so that you do not need to update the theme itself. Just open the Plugins\SevenSpikes.Nop.Plugins.AjaxCart\Styles\common.css file and edit is as shown below:

line 246:

.nopAjaxCartPanelAjaxBusy, .miniProductDetailsPanelAjaxBusy {
    position: absolute;
    z-index: 1003;
    width: auto;
    height: auto;
    background: url('images/loader.gif') no-repeat fixed 50% 50%;
    opacity: 0.7;
    /*filter: Alpha(opacity = 70);*/
}

The number in bold is the changed one!

Thanks again!

Bugs
11 years ago

UserThomas wrote:
New bug: when viewing an order from the customer side, this line is showing as a top line on the invoice:

sevenspikes.themes.playground.common.goto


Hi Thomas,

Thank you for your feedback. This is a typo with the resource name. You can easily fix it if you add the following two resources with the following values:

key: sevenspikes.themes.playground.common.goto value: Go to ...
key: sevenspikes.themes.playground.common.gotopage value: Product's page

You can have a look at the following video on how to add a locale resource.

Thanks again for your feedback.

Bugs
11 years ago

Hi Thomas,

1. There was a bug with one of the views in the theme and that is why the Custom Head Styles were not taken into consideration. If you now download the theme again and replace just the Themes/Allure/Views/Shared/_Root.Head.cshtml with the one from the downloaded package it will work. Sorry for the misunderstanding!

Thus when you update or upgrade the theme, all the changes will be in place and no need to keep any files or merge any change.

2. You can create a new custom css file, say custom.css and place it in Themes/Allure/Content/css folder. Then edit the Themes/Allure/Views/Shared/Head.cshtml file and add the following line:

Html.AppendCssFileParts("~/Themes/Allure/Content/CSS/custom.css");


after the line for the styles.css file.

So thus when you update or upgrade you will need to keep this custom.css file and keep the change in the Head.cshtml file.

My suggestion is if your code is no more than 2000 chars to use the first approach and if it is more than 2000 chars to use the second approach.

Hope that helps!

Bugs
11 years ago

europhile wrote:
Ah yes, applied and double line better now, thanks! Love your clear code, structure and comments. And this one def a good fix for wider release.

Glad you're going to fix back the description and SKU (easier for people to take out rather than put in) - highly appreciated! Even better if you let me know when, or I can apply a code change if nec and there's a long release schedule.

Appreciate your observation on the SKU on Categories, indeed we're not going to be able to have them on those pages yet thanks to source, will bring it up with nopCommerce when have a chance. Meanwhile, as long as on product pages (more important), will suffice!

Keep up the great work! Phil.


Hi Phil,

Thank you for your kind words!

The issue had been fixed and uploaded on our site. In order to integrate the fix just download the theme again and replace the Themes/Motion/Content/CSS folder with the one from the downloaded package.

Please let us know if you need any further assistance!

Thank you for your feedback again!

Best Regards!