Plugin Directory

Changeset 2871058


Ignore:
Timestamp:
02/25/2023 07:26:16 PM (3 years ago)
Author:
ascendedcrow
Message:

Version = 1.0.22 =

Location:
shop-2-api/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • shop-2-api/trunk/includes/Base/EnqueueWC.php

    r2868951 r2871058  
    2525    }
    2626
    27     public function register()
     27    public function register(): void
    2828    {
    2929        // Actions
     
    181181        );
    182182        echo wp_kses('</div>', $this->allowed_html);
     183
     184        // Add EAN Number
     185        $shop2api_ean_number = get_post_meta( $post->ID, 'shop2api_ean_number', true);
     186        woocommerce_wp_text_input(
     187            array(
     188                'id'            => 'shop2api_ean_number',
     189                'wrapper_class' => 'cfwc-custom-field',
     190                'label'         => __('Bol EAN Number', 'woocommerce'),
     191                //'description'   => __( 'An optional EAN Number that you can map on Shop-2-api or use for orders.', 'woocommerce' ),
     192                'value'         => $shop2api_ean_number
     193            )
     194        );
     195        // Add COMBI EAN Number
     196        $shop2api_combi_ean_number = get_post_meta( $post->ID, 'shop2api_combi_ean_number', true);
     197        woocommerce_wp_text_input(
     198            array(
     199                'id'            => 'shop2api_combi_ean_number',
     200                'wrapper_class' => 'cfwc-custom-field',
     201                'label'         => __('Combideal EAN Number', 'woocommerce'),
     202                //'description'   => __( 'An optional EAN Number that you can map on Shop-2-api or use for orders.', 'woocommerce' ),
     203                'value'         => $shop2api_combi_ean_number
     204            )
     205        );
    183206    }
    184207
  • shop-2-api/trunk/readme.txt

    r2868951 r2871058  
    33Plugin URI: https://wordpress.org/plugins/shop-2-api/
    44Tags: WooCommerce, Bol
    5 Stable Tag: 1.0.18
     5Stable Tag: 1.0.22
    66Requires at least: 5.0
    77Requires PHP: 7.2
     
    1281281) Implementation of Combo Deals
    129129
     130= 1.0.22 =
     1311) Fix bug where the EAN numbers gets overwritten on quick-save.
     132
    130133== Instructions ==
    1311341) After installing Shop2Api, a new menu item will be available in your WordPress installation, you can continue and click on it and enter you token which was mailed to you.
  • shop-2-api/trunk/shop-2-api.php

    r2868951 r2871058  
    55Plugin URI: https://wordpress.org/plugins/shop-2-api/
    66Description: The plugin Shop2Api will sync products between e-Commerce platforms. The current supported e-Commerce platforms are WooCommerce to Bol.com, and we are working on Amazon, Shopify and others.  We added a koopblok service so that you can check if you lower your price can you get koopblok.
    7 Version: 1.0.21
     7Version: 1.0.22
    88Requires at least: 5.0
    99Requires PHP:      7.2
     
    3434define('SHOP2API_PLUGIN_URL', plugin_dir_url( __FILE__ ));
    3535define('SHOP2API_PLUGIN', plugin_basename( __FILE__ ));
    36 define ('VERSION', '1.0.21');
     36define ('VERSION', '1.0.22');
    3737
    3838// Register items in the project.
Note: See TracChangeset for help on using the changeset viewer.