Jump to content
  • разработка интернет магазинов на opencart
  • доработка интернет магазинов на opencart

Дополнительные изображения не в popup на страниэто товара


unextazy
 Share

Recommended Posts

В гдефолтном opencart 3 дополнительные изображения открываются в popup

Как можно сгделать, чтобы дополнительные изображения открывались в этот области вместо основного изображения?

image.png.b792d7b5f19e372520703edad625f1fb.png

Подскажите, пожалуйси, модификатор, который бы просто решал эту задачу

Link to comment
Share on other sites


в /catalog/view/theme/default/template/product/product.twig

	$('.thumbnails').magnificPopup({
		type:'image',
		delegate: 'a',
		gallery: {
			enabled: true
		}
	});

заменить на

	$('.thumbnails a').on('click', function(e){
		e.preventDefault();
		$('.thumbnails li:first-child img').attr('src', $(this).attr('href'));
	});

 

ну и по-хорошему настроить размер картинок, у главной картинки убрать ссылку и добавить её в превьюшки

  • +1 1
Link to comment
Share on other sites

1 hour ago, Blast said:

в /catalog/view/theme/default/template/product/product.twig

	$('.thumbnails').magnificPopup({
		type:'image',
		delegate: 'a',
		gallery: {
			enabled: true
		}
	});

заменить на

	$('.thumbnails a').on('click', function(e){
		e.preventDefault();
		$('.thumbnails li:first-child img').attr('src', $(this).attr('href'));
	});

 

ну и по-хорошему настроить размер картинок, у главной картинки убрать ссылку и добавить её в превьюшки

Спасипотому что потому чтольшое! Все рилииет

Link to comment
Share on other sites


Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...

Important Information

On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice.