Plugin Directory

Changeset 2985886


Ignore:
Timestamp:
10/30/2023 07:57:13 AM (2 years ago)
Author:
cedcommerce
Message:

update 2.31

Location:
product-lister-etsy/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • product-lister-etsy/trunk/README.txt

    r2985807 r2985886  
    131131== Changelog ==
    132132
     133= 2.3.1 =
     134* Add - Design Update.
     135
    133136= 2.3.0 =
    134137* Add - Add admin menu of etsy and their settings at the top of the admin bar
  • product-lister-etsy/trunk/admin/class-woocommmerce-etsy-integration-admin.php

    r2985807 r2985886  
    5050        add_action( 'ced_etsy_async_update_inventory_action', array( $this, 'ced_etsy_async_update_stock_callback' ) );
    5151        add_action( 'wp_ajax_ced_etsy_load_more_logs', array( $this, 'ced_etsy_load_more_logs' ) );
    52     }
     52        add_action( 'admin_footer' , array( $this , 'ced_etsy_trademark_notice' ) );
     53
     54    }
     55
     56    public function ced_etsy_trademark_notice() {
     57        if ( isset( $_GET['page'] ) && ( 'ced_etsy_lister' == $_GET['page'] || 'cedcommerce-integrations' == $_GET['page'] ) ) {
     58            echo "<div class='ced_etsy_trademark_notice'><p><i><strong>NOTE:</strong> #The term 'Etsy' is a trademark of Etsy, Inc. This application uses the Etsy API but is not endorsed or certified by Etsy, Inc.#</i></p></div>";
     59        }
     60    }
     61   
    5362    public function ced_etsy_load_more_logs() {
    5463        $check_ajax = check_ajax_referer( 'ced-etsy-ajax-seurity-string', 'ajax_nonce' );
  • product-lister-etsy/trunk/admin/css/woocommmerce-etsy-integration-admin.css

    r2985807 r2985886  
    19021902  font-size: 14px;
    19031903}
     1904
     1905.ced_etsy_trademark_notice {
     1906  display: flex !important;
     1907  justify-content: center !important;
     1908  margin-left: 200px !important;
     1909}
  • product-lister-etsy/trunk/product-lister-etsy.php

    r2985807 r2985886  
    55 * Plugin URI:        https://cedcommerce.com
    66 * Description:       Product Lister for Etsy allows merchants to list their products on Etsy marketplace.
    7  * Version:           2.3.0
     7 * Version:           2.3.1
    88 * Author:            CedCommerce
    99 * Author URI:        https://cedcommerce.com
Note: See TracChangeset for help on using the changeset viewer.