AbleCommerce Forums
»
AbleCommerce
»
AbleCommerce 9 Bug Reports
»
Results from advanced search not displaying price
Rank: Advanced Member
Groups: Authorized User, Developers Joined: 2/17/2019(UTC) Posts: 909
Thanks: 3 times Was thanked: 15 time(s) in 15 post(s)
|
When using the advanced search, after items are returned, when clicked on "Quick View", if the item has the price hidden, when clicking on the "show me the price of the item", nothing happens.
This does not occur when using basic search, or going through the product category, only when the results come from advanced search.
Thanks, -Ray
|
|
|
|
Rank: Advanced Member
Groups: Admin, Developers, Registered, HelpDesk, Authorized User Joined: 10/5/2018(UTC) Posts: 704
Thanks: 5 times Was thanked: 113 time(s) in 112 post(s)
|
I am able to reproduce the issue. Thanks for identifying this issue. I am reporting this as a bug. For now if you want a fix, please follow these steps: 1- Open \Website\Themes\{YourCurrentTheme}\Scripts\custom.js 2- Search for the code Code:$('#product-quickview').on('shown.bs.modal', function (e) {
$("#product-quickview").find(".product-carousel-wrapper").removeClass('hidden');
// $("#product-carousel-modal").owlCarousel({
// items : 1,
// animateOut: 'fadeOut',
// animateIn: 'fadeIn',
// });
})
3- Replace it with Code:$(document).on('shown.bs.modal', '#product-quickview', function (e) {
$("#product-quickview").find(".product-carousel-wrapper").removeClass('hidden');
/* DISPLAY PRODUCT PRICE ON LINK CLICK */
$(document).on('click', "#ShowPriceLink", function () {
if ($("#ShowPriceLink").data('url')) {
$.ajax({
url: $("#ShowPriceLink").data('url'),
type: "GET",
success: function (data) {
$("#price-container").html(data);
$('#PriceDisplay').show();
}
});
}
else {
$('#PriceDisplay').show();
}
});
/* DISPLAY PRODUCT PRICE ON LINK CLICK FOR SUBSCRIPTION PRODUCT (ONE TIME PRICE)*/
$(document).on('click', "#ShowPriceLinkSubsOneTime", function () {
if ($("#ShowPriceLinkSubsOneTime").data('url')) {
$.ajax({
url: $("#ShowPriceLinkSubsOneTime").data('url'),
type: "GET",
success: function (data) {
$("#price-container-subs-one-time").html(data);
$('#PriceDisplayCalculateOneTimePrice').show();
}
});
}
else {
$('#PriceDisplayCalculateOneTimePrice').show();
}
});
//$("#product-carousel-modal").owlCarousel({
// items : 1,
// animateOut: 'fadeOut',
// animateIn: 'fadeIn',
//});
})
|
|
|
|
Rank: Advanced Member
Groups: Authorized User, Developers Joined: 2/17/2019(UTC) Posts: 909
Thanks: 3 times Was thanked: 15 time(s) in 15 post(s)
|
Thank you for identifying the problem and being able to reproduce it, although I was waiting to post a really nice video online. Glad you're working late.
-Ray
|
|
|
|
AbleCommerce Forums
»
AbleCommerce
»
AbleCommerce 9 Bug Reports
»
Results from advanced search not displaying price
Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.
Important Information:
The AbleCommerce Forums uses cookies. By continuing to browse this site, you are agreeing to our use of cookies.
More Details
Close