Changeset 2817812
- Timestamp:
- 11/14/2022 05:35:58 PM (3 years ago)
- Location:
- pwf-wc-product-filters
- Files:
-
- 5 edited
- 11 copied
-
tags/1.1.4 (copied) (copied from pwf-wc-product-filters/trunk)
-
tags/1.1.4/README.txt (copied) (copied from pwf-wc-product-filters/trunk/README.txt) (2 diffs)
-
tags/1.1.4/assets/css/admin/plugins-page.css (copied) (copied from pwf-wc-product-filters/trunk/assets/css/admin/plugins-page.css)
-
tags/1.1.4/changelog.txt (copied) (copied from pwf-wc-product-filters/trunk/changelog.txt) (1 diff)
-
tags/1.1.4/includes/class-pwf-main.php (copied) (copied from pwf-wc-product-filters/trunk/includes/class-pwf-main.php)
-
tags/1.1.4/includes/classes/admin/analytic/class-pwf-analytic-page.php (copied) (copied from pwf-wc-product-filters/trunk/includes/classes/admin/analytic/class-pwf-analytic-page.php)
-
tags/1.1.4/includes/classes/admin/class-pwf-admin-main.php (copied) (copied from pwf-wc-product-filters/trunk/includes/classes/admin/class-pwf-admin-main.php)
-
tags/1.1.4/includes/classes/admin/class-pwf-admin-settings-page.php (copied) (copied from pwf-wc-product-filters/trunk/includes/classes/admin/class-pwf-admin-settings-page.php)
-
tags/1.1.4/includes/classes/admin/meta/class-pwf-meta-data.php (modified) (2 diffs)
-
tags/1.1.4/includes/classes/class-pwf-analytic-query.php (copied) (copied from pwf-wc-product-filters/trunk/includes/classes/class-pwf-analytic-query.php)
-
tags/1.1.4/includes/classes/class-pwf-autoloader.php (copied) (copied from pwf-wc-product-filters/trunk/includes/classes/class-pwf-autoloader.php)
-
tags/1.1.4/pwfwoofilter.php (copied) (copied from pwf-wc-product-filters/trunk/pwfwoofilter.php) (2 diffs)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/includes/classes/admin/meta/class-pwf-meta-data.php (modified) (2 diffs)
-
trunk/pwfwoofilter.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pwf-wc-product-filters/tags/1.1.4/README.txt
r2804123 r2817812 1 1 === PWF - Products Filter for WooCommerce === 2 2 Contributors: mostafaabd 3 Tags: woocommerce, filter, woocommerce filter, woocommerce product filter, ajaxfilter3 Tags: filter, ajax filter, woocommerce filter, product filter, woocommerce product filter 4 4 Requires at least: 4.7 5 Tested up to: 6. 0.36 Stable tag: 1.1. 35 Tested up to: 6.1 6 Stable tag: 1.1.4 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 207 207 208 208 == Changelog == 209 =1.1.2= 210 Fix some issues 211 =1.1.1= 212 Fix some issues 213 =1.1.0= 214 Change plugin name. 215 =1.0.9= 216 Fix DIVI page builder. 217 Fix JS on backend. 218 = 1.0.7 = 219 Fix upload plugin errors. 209 =1.1.3= 210 Fixed: If the WooCommerce plugin doesn't exsit. 211 =1.1.3= 212 Fixed: admin functions related to anlytics 213 Addes: A link to PRO on the setting page. -
pwf-wc-product-filters/tags/1.1.4/changelog.txt
r2802962 r2817812 1 1 == Changelog == 2 =1.1.3= 3 Fixed: If WooCommerce doesn't exsit. 2 4 =1.1.3= 3 5 Fixed: admin functions related to anlytics -
pwf-wc-product-filters/tags/1.1.4/includes/classes/admin/meta/class-pwf-meta-data.php
r2745829 r2817812 7 7 class Pwf_Meta_Data { 8 8 9 function __construct() {9 public function __construct() { 10 10 } 11 11 … … 169 169 170 170 public function proudct_attributes() { 171 $data = array(); 172 $attributes = wc_get_attribute_taxonomies(); 173 if ( ! empty( $attributes ) ) { 174 foreach ( $attributes as $attribute ) { 175 $term_name = wc_attribute_taxonomy_name( $attribute->attribute_name ); 176 177 $data[] = array( 178 'id' => esc_attr( $term_name ), 179 'text' => esc_attr( $attribute->attribute_label ), 180 ); 171 $data = array(); 172 if ( function_exists( 'wc_get_attribute_taxonomies' ) ) { 173 $attributes = wc_get_attribute_taxonomies(); 174 if ( ! empty( $attributes ) ) { 175 foreach ( $attributes as $attribute ) { 176 $term_name = wc_attribute_taxonomy_name( $attribute->attribute_name ); 177 178 $data[] = array( 179 'id' => esc_attr( $term_name ), 180 'text' => esc_attr( $attribute->attribute_label ), 181 ); 182 } 181 183 } 182 184 } -
pwf-wc-product-filters/tags/1.1.4/pwfwoofilter.php
r2802962 r2817812 3 3 Plugin Name: PWF - Products Filter for WooCommerce 4 4 Description: Filter WooCommerce products and WordPress post types. Filter by any criteria including categories, tags, taxonomies, price, and custom fields. 5 Version: 1.1. 35 Version: 1.1.4 6 6 Author: Mostafa 7 7 Author URI: https://mostafaa.net/ … … 13 13 Requires PHP: 7.4 14 14 WC requires at least: 4.3.0 15 WC tested up to: 7. 0.015 WC tested up to: 7.1.0 16 16 ------------------------------------------------------------------------------*/ 17 17 18 18 defined( 'ABSPATH' ) || exit; // exit if file is called directly 19 19 20 const PWF_WOO_FILTER_VER = '1.1. 3';20 const PWF_WOO_FILTER_VER = '1.1.4'; 21 21 const PWF_WOO_FILTER_DB_VERSION = '1.0.1'; 22 22 -
pwf-wc-product-filters/trunk/README.txt
r2804123 r2817812 1 1 === PWF - Products Filter for WooCommerce === 2 2 Contributors: mostafaabd 3 Tags: woocommerce, filter, woocommerce filter, woocommerce product filter, ajaxfilter3 Tags: filter, ajax filter, woocommerce filter, product filter, woocommerce product filter 4 4 Requires at least: 4.7 5 Tested up to: 6. 0.36 Stable tag: 1.1. 35 Tested up to: 6.1 6 Stable tag: 1.1.4 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 207 207 208 208 == Changelog == 209 =1.1.2= 210 Fix some issues 211 =1.1.1= 212 Fix some issues 213 =1.1.0= 214 Change plugin name. 215 =1.0.9= 216 Fix DIVI page builder. 217 Fix JS on backend. 218 = 1.0.7 = 219 Fix upload plugin errors. 209 =1.1.3= 210 Fixed: If the WooCommerce plugin doesn't exsit. 211 =1.1.3= 212 Fixed: admin functions related to anlytics 213 Addes: A link to PRO on the setting page. -
pwf-wc-product-filters/trunk/changelog.txt
r2802962 r2817812 1 1 == Changelog == 2 =1.1.3= 3 Fixed: If WooCommerce doesn't exsit. 2 4 =1.1.3= 3 5 Fixed: admin functions related to anlytics -
pwf-wc-product-filters/trunk/includes/classes/admin/meta/class-pwf-meta-data.php
r2745829 r2817812 7 7 class Pwf_Meta_Data { 8 8 9 function __construct() {9 public function __construct() { 10 10 } 11 11 … … 169 169 170 170 public function proudct_attributes() { 171 $data = array(); 172 $attributes = wc_get_attribute_taxonomies(); 173 if ( ! empty( $attributes ) ) { 174 foreach ( $attributes as $attribute ) { 175 $term_name = wc_attribute_taxonomy_name( $attribute->attribute_name ); 176 177 $data[] = array( 178 'id' => esc_attr( $term_name ), 179 'text' => esc_attr( $attribute->attribute_label ), 180 ); 171 $data = array(); 172 if ( function_exists( 'wc_get_attribute_taxonomies' ) ) { 173 $attributes = wc_get_attribute_taxonomies(); 174 if ( ! empty( $attributes ) ) { 175 foreach ( $attributes as $attribute ) { 176 $term_name = wc_attribute_taxonomy_name( $attribute->attribute_name ); 177 178 $data[] = array( 179 'id' => esc_attr( $term_name ), 180 'text' => esc_attr( $attribute->attribute_label ), 181 ); 182 } 181 183 } 182 184 } -
pwf-wc-product-filters/trunk/pwfwoofilter.php
r2802962 r2817812 3 3 Plugin Name: PWF - Products Filter for WooCommerce 4 4 Description: Filter WooCommerce products and WordPress post types. Filter by any criteria including categories, tags, taxonomies, price, and custom fields. 5 Version: 1.1. 35 Version: 1.1.4 6 6 Author: Mostafa 7 7 Author URI: https://mostafaa.net/ … … 13 13 Requires PHP: 7.4 14 14 WC requires at least: 4.3.0 15 WC tested up to: 7. 0.015 WC tested up to: 7.1.0 16 16 ------------------------------------------------------------------------------*/ 17 17 18 18 defined( 'ABSPATH' ) || exit; // exit if file is called directly 19 19 20 const PWF_WOO_FILTER_VER = '1.1. 3';20 const PWF_WOO_FILTER_VER = '1.1.4'; 21 21 const PWF_WOO_FILTER_DB_VERSION = '1.0.1'; 22 22
Note: See TracChangeset
for help on using the changeset viewer.