Plugin Directory

Changeset 1857621


Ignore:
Timestamp:
04/13/2018 05:56:27 AM (8 years ago)
Author:
gosomi
Message:

우선순위 뒤로

Location:
woo-bootpay/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • woo-bootpay/trunk/bootpay-woocommerce.php

    r1857603 r1857621  
    44 * Plugin URI: https://www.bootpay.co.kr
    55 * Description: 우커머스에 PG를 손쉽게 붙일 수 연동 플러그인 ( 이니시스 / 다날 / KCP / LGU+ 모두 쉽게 붙이는 Woo-bootpay )
    6  * Version: 1.0.8
     6 * Version: 1.0.9
    77 * Author: Gosomi
    88 * Author URI: https://blog.areum.io
     
    154154            add_action( 'woocommerce_order_details_after_order_table', [$this, 'bootpay_order_table'] );
    155155            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 );
    158158            add_action( 'wp_ajax_iamport_payment_info', [$this, 'ajax_bootpay_payment_info'] );
    159159            add_filter( 'wc_checkout_params', [$this, 'inject_checkout_params'] );
     
    242242                        $cats[] = $term->slug;
    243243                    }
    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 );
    245245                    array_push( $items, [
    246246                        'item_name' => $item['name'],
  • woo-bootpay/trunk/readme.txt

    r1857604 r1857621  
    55Requires at least: 3.6
    66Tested up to: 4.9.1
    7 Stable tag: 1.0.8
     7Stable tag: 1.0.9
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1212
    1313== Description ==
     14
     15버전 1.0.9
     16스트립트 호출 우선순위를 뒤로 변경
    1417
    1518버전 1.0.8
Note: See TracChangeset for help on using the changeset viewer.