Changeset 3252992
- Timestamp:
- 03/10/2025 12:18:29 AM (13 months ago)
- Location:
- pgall-for-woocommerce/trunk
- Files:
-
- 4 edited
-
includes/class-pafw-payment-method-controller.php (modified) (1 diff)
-
languages/pgall-for-woocommerce.pot (modified) (2 diffs)
-
pgall-for-woocommerce.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pgall-for-woocommerce/trunk/includes/class-pafw-payment-method-controller.php
r3238253 r3252992 242 242 $product_ids['parent_id'][] = $item->get_product_id(); 243 243 244 foreach ( $item->get_all_formatted_meta_data() as $meta ) { 245 $product_ids['variations'][] = array( 246 'attribute' => $meta->key, 247 'slug' => $meta->value 248 ); 244 if ( is_callable( array( $item, 'get_all_formatted_meta_data' ) ) ) { 245 foreach ( $item->get_all_formatted_meta_data() as $meta ) { 246 $product_ids['variations'][] = array( 247 'attribute' => $meta->key, 248 'slug' => $meta->value 249 ); 250 } 249 251 } 250 252 } -
pgall-for-woocommerce/trunk/languages/pgall-for-woocommerce.pot
r3238253 r3252992 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: pgall-for-woocommerce 5.2. 6\n"5 "Project-Id-Version: pgall-for-woocommerce 5.2.8\n" 6 6 "Report-Msgid-Bugs-To: " 7 7 "https://wordpress.org/support/plugin/pgall-for-woocommerce\n" 8 "POT-Creation-Date: 2025-0 2-11 00:19:11+00:00\n"8 "POT-Creation-Date: 2025-03-10 00:16:14+00:00\n" 9 9 "MIME-Version: 1.0\n" 10 10 "Content-Type: text/plain; charset=utf-8\n" … … 3332 3332 msgstr "" 3333 3333 3334 #: includes/class-pafw-payment-method-controller.php:32 53334 #: includes/class-pafw-payment-method-controller.php:327 3335 3335 msgid "%s 상품은 장바구니에 있는 상품과 함께 구매하실 수 없습니다." 3336 3336 msgstr "" -
pgall-for-woocommerce/trunk/pgall-for-woocommerce.php
r3238253 r3252992 6 6 Plugin URI: 7 7 Description: 코드엠샵에서 개발, 운영되는 우커머스 전용 결제 통합 시스템 입니다. 8 Version: 5.2. 68 Version: 5.2.8 9 9 Author: CodeMShop 10 10 Author URI: www.codemshop.com … … 29 29 private static $_instance = null; 30 30 protected $slug; 31 protected $version = '5.2. 6';31 protected $version = '5.2.8'; 32 32 protected $plugin_url; 33 33 protected $plugin_path; … … 57 57 add_action( 'woocommerce_init', array( $this, 'woocommerce_init' ) ); 58 58 add_action( 'before_woocommerce_init', array( $this, 'declare_woocommerce_compatibility' ) ); 59 add_action( ' plugins_loaded', array( $this, 'load_plugin_textdomain' ) );59 add_action( 'init', array( $this, 'load_plugin_textdomain' ) ); 60 60 add_action( 'admin_notices', array( $this, 'admin_notices' ) ); 61 61 -
pgall-for-woocommerce/trunk/readme.txt
r3238253 r3252992 6 6 Tested up to: 6.7 7 7 Requires PHP: 7.2 8 Stable tag: 5.2. 68 Stable tag: 5.2.8 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 84 84 == Changelog == 85 85 86 = 5.2.8 = 87 [공통] 언어팩 로딩 순서 변경 88 89 = 5.2.7 = 90 [결제수단 노출제어] 우커머스 구버전( 6.x ) 호환성 업데이트 91 86 92 = 5.2.6 = 87 93 [(구)LGUPLUS] 우커머스 토큰결제 지원
Note: See TracChangeset
for help on using the changeset viewer.