-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
17742bb
commit 294d4fc
Showing
3 changed files
with
22 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,8 +9,8 @@ | |
Author URI: https://pepro.dev/ | ||
Developer URI: https://amirhp.com | ||
Plugin URI: https://peprodev.com/pepro-woocommerce-ultimate-invoice/ | ||
Version: 2.0.8 | ||
Stable tag: 2.0.8 | ||
Version: 2.0.9 | ||
Stable tag: 2.0.9 | ||
Tested up to: 6.6.1 | ||
WC tested up to: 9.2.3 | ||
Requires at least: 5.0 | ||
|
@@ -22,7 +22,7 @@ | |
License: GPLv2 or later | ||
License URI: https://www.gnu.org/licenses/gpl-2.0.html | ||
* @Last modified by: amirhp-com <[email protected]> | ||
* @Last modified time: 2024/09/08 10:16:13 | ||
* @Last modified time: 2024/11/13 16:09:28 | ||
*/ | ||
|
||
namespace peproulitmateinvoice; | ||
|
@@ -44,12 +44,12 @@ | |
*/ | ||
class PeproUltimateInvoice { | ||
public $td; | ||
public $version = "2.0.9"; | ||
public $plugin_dir; | ||
public $plugin_url; | ||
public $assets_url; | ||
public $plugin_basename; | ||
public $plugin_file; | ||
public $version; | ||
public $db_slug; | ||
public $title; | ||
public $url; | ||
|
@@ -75,9 +75,8 @@ class PeproUltimateInvoice { | |
* @license https://pepro.dev/license Pepro.dev License | ||
*/ | ||
public function __construct() { | ||
load_plugin_textdomain("pepro-ultimate-invoice", false, dirname(plugin_basename(__FILE__)) . "/languages/"); | ||
add_action("after_setup_theme", function(){load_plugin_textdomain("pepro-ultimate-invoice", false, dirname(plugin_basename(__FILE__)) . "/languages/");}); | ||
$this->td = "pepro-ultimate-invoice"; | ||
$this->version = "2.0.8"; | ||
$this->db_slug = $this->td; | ||
$this->plugin_file = __FILE__; | ||
$this->plugin_dir = plugin_dir_path(__FILE__); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters