Changeset 1857621
- Timestamp:
- 04/13/2018 05:56:27 AM (8 years ago)
- Location:
- woo-bootpay/trunk
- Files:
-
- 2 edited
-
bootpay-woocommerce.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woo-bootpay/trunk/bootpay-woocommerce.php
r1857603 r1857621 4 4 * Plugin URI: https://www.bootpay.co.kr 5 5 * Description: 우커머스에 PG를 손쉽게 붙일 수 연동 플러그인 ( 이니시스 / 다날 / KCP / LGU+ 모두 쉽게 붙이는 Woo-bootpay ) 6 * Version: 1.0. 86 * Version: 1.0.9 7 7 * Author: Gosomi 8 8 * Author URI: https://blog.areum.io … … 154 154 add_action( 'woocommerce_order_details_after_order_table', [$this, 'bootpay_order_table'] ); 155 155 add_action( "woocommerce_update_options_payment_gateways_{$this->id}", [$this, 'process_admin_options'] ); 156 add_action( "admin_enqueue_scripts", [$this, 'enqueue_inject_admin_bootpay_script'] );157 add_action( "wp_enqueue_scripts", [$this, 'enqueue_inject_bootpay_script'] );156 add_action( "admin_enqueue_scripts", [$this, 'enqueue_inject_admin_bootpay_script'], 10000 ); 157 add_action( "wp_enqueue_scripts", [$this, 'enqueue_inject_bootpay_script'], 10000 ); 158 158 add_action( 'wp_ajax_iamport_payment_info', [$this, 'ajax_bootpay_payment_info'] ); 159 159 add_filter( 'wc_checkout_params', [$this, 'inject_checkout_params'] ); … … 242 242 $cats[] = $term->slug; 243 243 } 244 $line_price = wc_get_order_item_meta( $item_id, '_line_total', true);244 $line_price = wc_get_order_item_meta( $item_id, '_line_total', true ); 245 245 array_push( $items, [ 246 246 'item_name' => $item['name'], -
woo-bootpay/trunk/readme.txt
r1857604 r1857621 5 5 Requires at least: 3.6 6 6 Tested up to: 4.9.1 7 Stable tag: 1.0. 87 Stable tag: 1.0.9 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 12 12 13 13 == Description == 14 15 버전 1.0.9 16 스트립트 호출 우선순위를 뒤로 변경 14 17 15 18 버전 1.0.8
Note: See TracChangeset
for help on using the changeset viewer.