Plugin Directory

Changeset 3423378


Ignore:
Timestamp:
12/19/2025 06:08:29 AM (2 months ago)
Author:
redefiningtheweb
Message:

Fix Bug to version 2.0.4

Location:
woo-dynamic-pricing-discounts-lite/trunk
Files:
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • woo-dynamic-pricing-discounts-lite/trunk/README.txt

    r3423011 r3423378  
    44Tags:  woocommerce, dynamic discount, dynamic pricing, bulk discount, bogo
    55Requires at least: 5.0.0
    6 Tested up to: 6.8.3
     6Tested up to: 6.9
    77Stable tag: 2.0.4
    88License: GPLv2 or later
  • woo-dynamic-pricing-discounts-lite/trunk/dynamic-pricing-discounts-lite-for-woocommerce.php

    r3423011 r3423378  
    2525 * Domain Path:       /languages
    2626 * Requires Plugins:  woocommerce
     27 * Tested up to: 6.9
    2728 * WC requires at least: 4.0
    2829 * WC tested up to: 10.4.2
  • woo-dynamic-pricing-discounts-lite/trunk/includes/rtwwdpdl-class-woo-dynamic-pricing-discounts-lite.php

    r3423011 r3423378  
    7474        $this->rtwwdpdl_plugin_name = 'woo-dynamic-pricing-discounts-with-ai';
    7575        $this->rtwwdpdl_load_dependencies();
    76         $this->rtwwdpdl_set_locale();
    7776        $this->rtwwdpdl_define_admin_hooks();
    7877        $this->rtwwdpdl_define_public_hooks();
     
    101100         */
    102101        require_once plugin_dir_path(dirname(__FILE__)) . 'includes/rtwwdpdl-class-woo-dynamic-pricing-discounts-lite-loader.php';
    103         /**
    104          * The class responsible for defining internationalization functionality
    105          * of the plugin.
    106          */
    107         require_once plugin_dir_path(dirname(__FILE__)) . 'includes/rtwwdpdl-class-woo-dynamic-pricing-discounts-lite-i18n.php';
     102       
    108103        /**
    109104         * The class responsible for defining all actions that occur in the admin area.
     
    117112        $this->rtwwdpdl_loader = new Rtwwdpdl_Woo_Dynamic_Pricing_Discounts_Lite_Loader();
    118113    }
    119     /**
    120      * Define the locale for this plugin for internationalization.
    121      *
    122      * Uses the Rtwwdpdl_Woo_Dynamic_Pricing_Discounts_Lite_i18n class in order to set the domain and to register the hook
    123      * with WordPress.
    124      *
    125      * @since    1.0.0
    126      * @access   private
    127      */
    128     private function rtwwdpdl_set_locale()
    129     {
    130         $rtwwdpdl_plugin_i18n = new Rtwwdpdl_Woo_Dynamic_Pricing_Discounts_Lite_i18n();
    131         $this->rtwwdpdl_loader->rtwwdpdl_add_action('plugins_loaded', $rtwwdpdl_plugin_i18n, 'rtwwdpdl_load_plugin_textdomain');
    132     }
     114   
    133115    /**
    134116     * Register all of the hooks related to the admin area functionality
Note: See TracChangeset for help on using the changeset viewer.