, 나는 기본 테마에서이 테스트. , col-sm-4
, col-sm-8
그래서 당신이 내 코드를 편집해야합니다 :이 두 클래스를 변경 Opencart 제품 페이지에 column-right
또는 column left
에 대한 모듈을 할당하면 것을
<script>
$(function(){
// We create a function
function moveCart(){
// If user screen is smaller than 768 pixel
if($(window).width() < 768){
/*
select cart area including cart button, options, product title and ...
if you want to only move cart button use '#product' instead of '#content > .row > .col-sm-4'
*/
$('#content > .row > .col-sm-4').removeClass('col-sm-4').addClass('moved-div');
// now move it
$('.moved-div').insertAfter('.thumbnails');
} else {
/*
if user resized his/her screen width and now screen is wider than 767 pixel and we moved cart area before, move it to its original place.
*/
if($('.moved-div').length){
$('.moved-div').insertAfter('#content > .row > .col-sm-8').addClass('col-sm-4').removeClass('moved-div');
}
}
}
// run function
moveCart();
$(window).resize(function(){
// run function again if user resized screen
moveCart();
})
});
</script>
참고 :
은 product.tpl
<?php echo $footer; ?>
전에이 추가 또는 수동 수업을 추가 할 수 있습니다.
안녕하세요 Aashish, StackOverflow에 오신 것을 환영합니다. 코드와 결과 레이아웃을 포함하여 이미 시도한 내용으로 질문을 상세하게 작성할 수 있습니까? 지금까지 성취하려고 노력하고있는 것에 대한 최소한의 예를 제시하면 사람들이 귀하의 질문에 답할 수 있습니다. – Harry
질문을 편집 할 수 있습니까? 당신이 묻는 것이 불분명 한 것 같습니다. – Ronald