logo
Welcome to our new AbleCommerce forums. As a guest, you may view the information here. To post to this forum, you must have a registered account with us, either as a new user evaluating AbleCommerce or an existing user of the application. For all questions related to the older version of Gold and earlier, please go to AbleCommerce Gold forum. Please use your AbleCommerce username and password to Login. New Registrations are disabled.

Notification

Icon
Error

Options
Go to last post Go to first unread
ray22901031  
#1 Posted : Sunday, September 20, 2020 5:56:26 AM(UTC)
ray22901031

Rank: Advanced Member

Groups: Authorized User, Developers
Joined: 2/17/2019(UTC)
Posts: 827

Thanks: 3 times
Was thanked: 13 time(s) in 13 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

Wanna join the discussion?! Login to your AbleCommerce Forums forum account. New Registrations are disabled.

shari  
#2 Posted : Monday, September 21, 2020 3:10:29 AM(UTC)
shaharyar

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',
		//});
	})

ray22901031  
#3 Posted : Monday, September 21, 2020 3:15:54 AM(UTC)
ray22901031

Rank: Advanced Member

Groups: Authorized User, Developers
Joined: 2/17/2019(UTC)
Posts: 827

Thanks: 3 times
Was thanked: 13 time(s) in 13 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
Users browsing this topic
Guest
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.