winebear wrote:Any progress please?
Hi winebear,
We have identified the issue and have fixed the issue with the ajax cart. The reason was the the ajax cart was integrated on tablet when it should not because
it is not a good practice to have popups on mobile. Instead the default nopCommerce's ajax cart is being used. In order to integrate the fix you need to do the following:
1. Download the latest Nop Traction Theme from your My Downloads section.
2. Replace the SevenSpikes.Core plugin with the one from the downloaded package
3. Replace the SevenSpikes.Nop.Plugins.AjaxCart plugin with the one from the downloaded package
4. Replace the Themes/Traction/Content/scripts/traction.js file with the one from the downloaded package.
5. Replace the Themes/Traction/Content/css/980.css and Themes/Traction/Content/css/980.rtl.css files with the ones from the downloaded package. If you have modified these files you will need
just to paste the following css in the 980.css file
.product-grid .item-box.mobile-box .add-info{
position: static;
border: none;
box-shadow: none;
background: none;
opacity: 1;
height: auto !important;
}
.item-box.mobile-box .prices {
margin: 0 0 15px;
font-size: 12px;
}
.product-grid .item-box.mobile-box .description{
display: none;
}
.product-grid .item-box.mobile-box .product-rating-box{
opacity: 1;
text-align: left;
background: none;
padding: 0;
margin: 0 0 20px;
}
.product-grid .item-box.mobile-box .buttons{
position: static !important;
opacity: 1;
}
.item-box.mobile-box .buttons .compare-products{
display: none;
}
.item-box.mobile-box .buttons input[type="button"] {
height: auto;
padding: 10px 20px;
font: normal 16px 'eurostile';
width: auto;
}
on line 736 in the 980.css
and the following:
.product-grid .item-box.mobile-box .add-info{
position: static;
border: none;
box-shadow: none;
background: none;
opacity: 1;
height: auto !important;
}
.item-box.mobile-box .prices {
margin: 0 0 15px;
font-size: 12px;
}
.product-grid .item-box.mobile-box .description{
display: none;
}
.product-grid .item-box.mobile-box .product-rating-box{
opacity: 1;
text-align: right;
background: none;
padding: 0;
margin: 0 0 20px;
}
.product-grid .item-box.mobile-box .buttons{
position: static !important;
opacity: 1;
}
.item-box.mobile-box .buttons .compare-products{
display: none;
}
.item-box.mobile-box .buttons input[type="button"] {
height: auto;
padding: 10px 20px;
font: normal 16px 'eurostile';
width: auto;
}
on line 740 in the 980.rtl.css file.
Please let us know if after integrating the fix, the issue still occurs.