我最終設置了模式,以便在購物車頁面打開時觸發,因爲購物車頁面是Wordpress,非常簡單。當客戶去購買任何產品時,現在打開的模式並不是完美的解決方案,但總比沒有好。 這裏與默認內容
<div class="modal" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title" id="myModalLabel">Modal title</h4>
</div>
<div class="modal-body">
...
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
<button class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">
Launch demo modal
</button>
和JS
<script>
jQuery(document).ready(function($) {
$(document).ready(function(){
$('#myModal').modal('show')
});
});
</script>
我直接在「你的車」的WordPress頁面插入這一切的代碼。
工作正常,但我很想通過添加查詢支票聽到一個更好的解決方案
謝謝你,但我不知道如何使用它! – vtechmonkey 2014-11-06 21:21:49
我已經上傳了它,並更改了文件權限,但是我沒有看到將它添加到產品的位置? – vtechmonkey 2014-11-06 21:22:19
你需要谷歌它。我只是展示道路......你需要完成......就像這樣,只有很多事情會來。試試自己:) – Thiyagesh 2014-11-07 05:54:26