Plugin Directory

Changeset 3252992


Ignore:
Timestamp:
03/10/2025 12:18:29 AM (13 months ago)
Author:
codemstory
Message:

5.2.8

[공통] 언어팩 로딩 순서 변경

5.2.7

[결제수단 노출제어] 우커머스 구버전( 6.x ) 호환성 업데이트

Location:
pgall-for-woocommerce/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • pgall-for-woocommerce/trunk/includes/class-pafw-payment-method-controller.php

    r3238253 r3252992  
    242242                        $product_ids['parent_id'][] = $item->get_product_id();
    243243
    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                            }
    249251                        }
    250252                    }
  • pgall-for-woocommerce/trunk/languages/pgall-for-woocommerce.pot

    r3238253 r3252992  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: pgall-for-woocommerce 5.2.6\n"
     5"Project-Id-Version: pgall-for-woocommerce 5.2.8\n"
    66"Report-Msgid-Bugs-To: "
    77"https://wordpress.org/support/plugin/pgall-for-woocommerce\n"
    8 "POT-Creation-Date: 2025-02-11 00:19:11+00:00\n"
     8"POT-Creation-Date: 2025-03-10 00:16:14+00:00\n"
    99"MIME-Version: 1.0\n"
    1010"Content-Type: text/plain; charset=utf-8\n"
     
    33323332msgstr ""
    33333333
    3334 #: includes/class-pafw-payment-method-controller.php:325
     3334#: includes/class-pafw-payment-method-controller.php:327
    33353335msgid "%s 상품은 장바구니에 있는 상품과 함께 구매하실 수 없습니다."
    33363336msgstr ""
  • pgall-for-woocommerce/trunk/pgall-for-woocommerce.php

    r3238253 r3252992  
    66Plugin URI:
    77Description: 코드엠샵에서 개발, 운영되는 우커머스 전용 결제 통합 시스템 입니다.
    8 Version: 5.2.6
     8Version: 5.2.8
    99Author: CodeMShop
    1010Author URI: www.codemshop.com
     
    2929        private static $_instance = null;
    3030        protected $slug;
    31         protected $version = '5.2.6';
     31        protected $version = '5.2.8';
    3232        protected $plugin_url;
    3333        protected $plugin_path;
     
    5757            add_action( 'woocommerce_init', array( $this, 'woocommerce_init' ) );
    5858            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' ) );
    6060            add_action( 'admin_notices', array( $this, 'admin_notices' ) );
    6161
  • pgall-for-woocommerce/trunk/readme.txt

    r3238253 r3252992  
    66Tested up to: 6.7
    77Requires PHP: 7.2
    8 Stable tag: 5.2.6
     8Stable tag: 5.2.8
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8484== Changelog ==
    8585
     86= 5.2.8 =
     87[공통] 언어팩 로딩 순서 변경
     88
     89= 5.2.7 =
     90[결제수단 노출제어] 우커머스 구버전( 6.x ) 호환성 업데이트
     91
    8692= 5.2.6 =
    8793[(구)LGUPLUS] 우커머스 토큰결제 지원
Note: See TracChangeset for help on using the changeset viewer.