Persian Woocommerce - Version 1.3

Version Description

  • 2.1.2
Download this release

Release Info

Developer Persianscript
Plugin Icon 128x128 Persian Woocommerce
Version 1.3
Comparing to
See all releases

Code changes from version 1.2 to 1.3

include/rial-function.php CHANGED
@@ -1,12 +1,5 @@
1
  <?php
2
- /*
3
- Plugin Name: Rial Currency Woocommerce
4
- Plugin URI: http://woocommerce.ir/
5
- Description: با استفاده از این افزونه قادر هستید براحتی واحد پولی ریال را به واحد های پولی ووکامرس اضافه کنید
6
- Version: 1.2
7
- Author: Mohammad Majidi
8
- Author URI: http://woocommerce.ir
9
- */
10
 
11
 
12
  add_filter( 'woocommerce_currencies', 'add_my_currency' );
1
  <?php
2
+
 
 
 
 
 
 
 
3
 
4
 
5
  add_filter( 'woocommerce_currencies', 'add_my_currency' );
readme.txt CHANGED
@@ -50,6 +50,8 @@ You can read complete documentations on the [woocommerce.ir](http://www.woocomme
50
 
51
 
52
  == Changelog ==
 
 
53
  = 1.2 =
54
  * Compatibility with woocommerce 2.1.x
55
  = 1.1 =
@@ -58,6 +60,8 @@ You can read complete documentations on the [woocommerce.ir](http://www.woocomme
58
  * First version
59
 
60
  == Upgrade Notice ==
 
 
61
  = 1.2 =
62
  * Compatibility with woocommerce 2.1.x
63
  = 1.1 =
50
 
51
 
52
  == Changelog ==
53
+ = 1.3 =
54
+ * سازگاری با ووکامرس 2.1.2
55
  = 1.2 =
56
  * Compatibility with woocommerce 2.1.x
57
  = 1.1 =
60
  * First version
61
 
62
  == Upgrade Notice ==
63
+ = 1.3 =
64
+ * سازگاری با ووکامرس 2.1.2
65
  = 1.2 =
66
  * Compatibility with woocommerce 2.1.x
67
  = 1.1 =
woocommerce-persian.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: ووکامرس پارسی
4
  Plugin URI: http://woocommerce.ir
5
  Description: بسته فارسی ساز ووکامرس پارسی به راحتی سیستم فروشگاه ساز ووکامرس را فارسی می کند. با فعال سازی افزونه ، واحد پولی ریال و تومان ایران و همچنین لیست استان های ایران به افزونه افزوده می شوند. پشتیبانی در <a href="http://www.woocommerce.ir/" target="_blank">ووکامرس پارسی</a>.
6
- Version: 1.2
7
  Requires at least: 3.0
8
  Author: Woocommerce.ir
9
  Author URI: http://www.woocommerce.ir
@@ -27,7 +27,6 @@ class PersianWooommercPlugin {
27
  $this->file = $file;
28
 
29
  // Filters and actions
30
- add_action( 'plugins_loaded', array( $this, 'plugins_loaded' ) );
31
  add_filter( 'load_textdomain_mofile', array( $this, 'load_mo_file' ), 10, 2 );
32
  add_action( 'activated_plugin', array( $this, 'activated_plugin' ) );
33
  }
@@ -45,11 +44,6 @@ class PersianWooommercPlugin {
45
  }
46
  }
47
 
48
- public function plugins_loaded() {
49
- $rel_path = dirname( plugin_basename( $this->file ) ) . '/languages/';
50
-
51
- load_plugin_textdomain( 'wc_gravityforms', false, $rel_path );
52
- }
53
 
54
  ////////////////////////////////////////////////////////////
55
 
3
  Plugin Name: ووکامرس پارسی
4
  Plugin URI: http://woocommerce.ir
5
  Description: بسته فارسی ساز ووکامرس پارسی به راحتی سیستم فروشگاه ساز ووکامرس را فارسی می کند. با فعال سازی افزونه ، واحد پولی ریال و تومان ایران و همچنین لیست استان های ایران به افزونه افزوده می شوند. پشتیبانی در <a href="http://www.woocommerce.ir/" target="_blank">ووکامرس پارسی</a>.
6
+ Version: 1.3
7
  Requires at least: 3.0
8
  Author: Woocommerce.ir
9
  Author URI: http://www.woocommerce.ir
27
  $this->file = $file;
28
 
29
  // Filters and actions
 
30
  add_filter( 'load_textdomain_mofile', array( $this, 'load_mo_file' ), 10, 2 );
31
  add_action( 'activated_plugin', array( $this, 'activated_plugin' ) );
32
  }
44
  }
45
  }
46
 
 
 
 
 
 
47
 
48
  ////////////////////////////////////////////////////////////
49