は、私は、デフォルトのテーマでこれをテストしました。
あなたproduct.tpl
<?php echo $footer; ?>
前にこれを追加:あなたは、製品ページにcolumn-right
またはcolumn left
に任意のモジュールを割り当てる場合は、これらの二つのクラスに変更Opencartこと
<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>
ノート:col-sm-4
を、col-sm-8
ので、あなたは私のコードを編集する必要があり、手動クラスを追加することもできます。
こんにちは、Aashish、ようこそStackOverflow。コードやその結果のレイアウトを含め、あなたが試したことであなたの質問を精緻化できますか?あなたが達成しようとしているものとあなたの仕事の最小限の例を示すことは、人々があなたの質問に答えるのに役立ちます。 – Harry
質問を編集できますか?あなたが何を求めているのかは不明です。 – Ronald