Version Description
*
Download this release
Release Info
Developer | hannanstd |
Plugin | Persian Woocommerce |
Version | 2.5.4 |
Comparing to | |
See all releases |
Code changes from version 2.5.3 to 2.5.4
- include/class-address.php +5 -1
- readme.txt +4 -0
- woocommerce-persian.php +2 -2
include/class-address.php
CHANGED
@@ -105,7 +105,11 @@ class Persian_Wooommerce_Address extends Persian_Wooommerce_Plugin {
|
|
105 |
$types = array('billing' , 'shipping');
|
106 |
foreach ( $types as $type) {
|
107 |
|
108 |
-
|
|
|
|
|
|
|
|
|
109 |
$city_classes = str_ireplace( 'form-row-wide', 'form-row-last', $city_classes );
|
110 |
|
111 |
$fields[$type][$type . '_city']['class'] = explode( ',', $city_classes );
|
105 |
$types = array('billing' , 'shipping');
|
106 |
foreach ( $types as $type) {
|
107 |
|
108 |
+
if ( isset($fields[$type][$type . '_city']['class']) && is_array($fields[$type][$type . '_city']['class']) )
|
109 |
+
$city_classes = implode( ',', $fields[$type][$type . '_city']['class']);
|
110 |
+
else
|
111 |
+
$city_classes = isset($fields[$type][$type . '_city']['class']) ? $fields[$type][$type . '_city']['class'] : '';
|
112 |
+
|
113 |
$city_classes = str_ireplace( 'form-row-wide', 'form-row-last', $city_classes );
|
114 |
|
115 |
$fields[$type][$type . '_city']['class'] = explode( ',', $city_classes );
|
readme.txt
CHANGED
@@ -53,6 +53,8 @@ You can read complete documentations on the [woocommerce.ir](http://www.woocomme
|
|
53 |
|
54 |
|
55 |
== Changelog ==
|
|
|
|
|
56 |
= 2.5.3 =
|
57 |
* فارسی سازی اعداد قیمت محصولات متغیر
|
58 |
* فارسی سازی اعداد سبد خرید
|
@@ -95,6 +97,8 @@ You can read complete documentations on the [woocommerce.ir](http://www.woocomme
|
|
95 |
* نسخه اولیه
|
96 |
|
97 |
== Upgrade Notice ==
|
|
|
|
|
98 |
= 2.5.3 =
|
99 |
* فارسی سازی اعداد قیمت محصولات متغیر
|
100 |
* فارسی سازی اعداد سبد خرید
|
53 |
|
54 |
|
55 |
== Changelog ==
|
56 |
+
= 2.5.4 =
|
57 |
+
* رفع باگ کوچک
|
58 |
= 2.5.3 =
|
59 |
* فارسی سازی اعداد قیمت محصولات متغیر
|
60 |
* فارسی سازی اعداد سبد خرید
|
97 |
* نسخه اولیه
|
98 |
|
99 |
== Upgrade Notice ==
|
100 |
+
= 2.5.4 =
|
101 |
+
* رفع باگ کوچک
|
102 |
= 2.5.3 =
|
103 |
* فارسی سازی اعداد قیمت محصولات متغیر
|
104 |
* فارسی سازی اعداد سبد خرید
|
woocommerce-persian.php
CHANGED
@@ -4,7 +4,7 @@ Contributors: Persianscript, hannanstd, mahdiy
|
|
4 |
Plugin Name: ووکامرس پارسی
|
5 |
Plugin URI: http://woocommerce.ir
|
6 |
Description: بسته فارسی ساز ووکامرس پارسی به راحتی سیستم فروشگاه ساز ووکامرس را فارسی می کند. با فعال سازی افزونه ، واحد پولی ریال و تومان ایران و همچنین لیست استان های ایران به افزونه افزوده می شوند. پشتیبانی در <a href="http://www.woocommerce.ir/" target="_blank">ووکامرس پارسی</a>.
|
7 |
-
Version: 2.5.
|
8 |
Requires at least: 4.0
|
9 |
Author: ووکامرس فارسی
|
10 |
Author URI: http://woocommerce.ir
|
@@ -14,7 +14,7 @@ Author URI: http://woocommerce.ir
|
|
14 |
exit; // Exit if accessed directly
|
15 |
|
16 |
if ( !defined('PERSIAN_WOOCOMMERCE_VERSION') )
|
17 |
-
define('PERSIAN_WOOCOMMERCE_VERSION', '2.5.
|
18 |
|
19 |
require_once( dirname(__FILE__) . '/include/persian-woocommerce.php');
|
20 |
|
4 |
Plugin Name: ووکامرس پارسی
|
5 |
Plugin URI: http://woocommerce.ir
|
6 |
Description: بسته فارسی ساز ووکامرس پارسی به راحتی سیستم فروشگاه ساز ووکامرس را فارسی می کند. با فعال سازی افزونه ، واحد پولی ریال و تومان ایران و همچنین لیست استان های ایران به افزونه افزوده می شوند. پشتیبانی در <a href="http://www.woocommerce.ir/" target="_blank">ووکامرس پارسی</a>.
|
7 |
+
Version: 2.5.4
|
8 |
Requires at least: 4.0
|
9 |
Author: ووکامرس فارسی
|
10 |
Author URI: http://woocommerce.ir
|
14 |
exit; // Exit if accessed directly
|
15 |
|
16 |
if ( !defined('PERSIAN_WOOCOMMERCE_VERSION') )
|
17 |
+
define('PERSIAN_WOOCOMMERCE_VERSION', '2.5.4');
|
18 |
|
19 |
require_once( dirname(__FILE__) . '/include/persian-woocommerce.php');
|
20 |
|