質問編集履歴

3

コードにformタグ追加しました

2021/01/24 14:41

投稿

Yariii
Yariii

スコア61

test CHANGED
File without changes
test CHANGED
@@ -20,6 +20,28 @@
20
20
 
21
21
  ///数量変更UI
22
22
 
23
+
24
+
25
+ <form class="woocommerce-cart-form" action="<?php echo esc_url( wc_get_cart_url() ); ?>" method="post">
26
+
27
+ <?php do_action( 'woocommerce_before_cart_table' ); ?>
28
+
29
+
30
+
31
+ <table class="shop_table shop_table_responsive cart woocommerce-cart-form__contents" cellspacing="0">
32
+
33
+ <tbody>
34
+
35
+ <?php do_action( 'woocommerce_before_cart_contents' ); ?>
36
+
37
+
38
+
39
+ <!-- ~~~~~~~~~~~~~~略~~~~~~~~~~~~~~ -->
40
+
41
+
42
+
43
+ <!-- 商品の数量変更UI -->
44
+
23
45
  <td class="product-quantity" data-title="<?php esc_attr_e( 'Quantity', 'woocommerce' ); ?>">
24
46
 
25
47
  <div class="shop__num">
@@ -76,11 +98,11 @@
76
98
 
77
99
 
78
100
 
79
- ~~~~~~~~~~~~~~略~~~~~~~~~~~~~~
101
+ <!-- ~~~~~~~~~~~~~~略~~~~~~~~~~~~~~ -->
80
-
81
-
82
-
102
+
103
+
104
+
83
- ///カートの中身変更ボタン
105
+ <!-- カートの中身変更ボタン -->
84
106
 
85
107
  <tr>
86
108
 
@@ -118,6 +140,22 @@
118
140
 
119
141
 
120
142
 
143
+ <!-- ~~~~~~~~~~~~~~略~~~~~~~~~~~~~~ -->
144
+
145
+
146
+
147
+ <?php do_action( 'woocommerce_after_cart_contents' ); ?>
148
+
149
+ </tbody>
150
+
151
+ </table>
152
+
153
+ <?php do_action( 'woocommerce_after_cart_table' ); ?>
154
+
155
+ </form>
156
+
157
+
158
+
121
159
  ```
122
160
 
123
161
 

2

タグ追加

2021/01/24 14:41

投稿

Yariii
Yariii

スコア61

test CHANGED
File without changes
test CHANGED
File without changes

1

タグ追加と補足

2021/01/23 10:31

投稿

Yariii
Yariii

スコア61

test CHANGED
@@ -1 +1 @@
1
- jsでajaxCompleteが2回実行され
1
+ jsでajaxCompleteが2回実行されてしまう
test CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  背景として、カートページの商品数量を変更するのに、プラス、マイナスボタンのUIを作り、
4
4
 
5
- それを押す度にカート内がajax更新され、数量が反映されます。
5
+ それを押す度にカート内がajax更新され、数量が反映されます。しかし僕自身ajaxの知見はほぼなく、woocommerceの仕様で実行されているに過ぎません。
6
6
 
7
7
 
8
8