Plugin Directory

Changeset 2817812


Ignore:
Timestamp:
11/14/2022 05:35:58 PM (3 years ago)
Author:
mostafaabd
Message:

Update tag version 1.1.4

Location:
pwf-wc-product-filters
Files:
5 edited
11 copied

Legend:

Unmodified
Added
Removed
  • pwf-wc-product-filters/tags/1.1.4/README.txt

    r2804123 r2817812  
    11=== PWF - Products Filter for WooCommerce ===
    22Contributors: mostafaabd
    3 Tags: woocommerce, filter, woocommerce filter, woocommerce product filter, ajax filter
     3Tags: filter, ajax filter, woocommerce filter, product filter, woocommerce product filter
    44Requires at least: 4.7
    5 Tested up to: 6.0.3
    6 Stable tag: 1.1.3
     5Tested up to: 6.1
     6Stable tag: 1.1.4
    77Requires PHP: 7.4
    88License: GPLv2 or later
     
    207207
    208208== 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=
     210Fixed: If the WooCommerce plugin doesn't exsit.
     211=1.1.3=
     212Fixed: admin functions related to anlytics
     213Addes: A link to PRO on the setting page.
  • pwf-wc-product-filters/tags/1.1.4/changelog.txt

    r2802962 r2817812  
    11== Changelog ==
     2=1.1.3=
     3Fixed: If WooCommerce doesn't exsit.
    24=1.1.3=
    35Fixed: admin functions related to anlytics
  • pwf-wc-product-filters/tags/1.1.4/includes/classes/admin/meta/class-pwf-meta-data.php

    r2745829 r2817812  
    77    class Pwf_Meta_Data {
    88
    9         function __construct() {
     9        public function __construct() {
    1010        }
    1111
     
    169169
    170170        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                    }
    181183                }
    182184            }
  • pwf-wc-product-filters/tags/1.1.4/pwfwoofilter.php

    r2802962 r2817812  
    33Plugin Name: PWF - Products Filter for WooCommerce
    44Description: Filter WooCommerce products and WordPress post types. Filter by any criteria including categories, tags, taxonomies, price, and custom fields.
    5 Version:     1.1.3
     5Version:     1.1.4
    66Author:      Mostafa
    77Author URI:  https://mostafaa.net/
     
    1313Requires PHP: 7.4
    1414WC requires at least: 4.3.0
    15 WC tested up to: 7.0.0
     15WC tested up to: 7.1.0
    1616------------------------------------------------------------------------------*/
    1717
    1818defined( 'ABSPATH' ) || exit; // exit if file is called directly
    1919
    20 const PWF_WOO_FILTER_VER        = '1.1.3';
     20const PWF_WOO_FILTER_VER        = '1.1.4';
    2121const PWF_WOO_FILTER_DB_VERSION = '1.0.1';
    2222
  • pwf-wc-product-filters/trunk/README.txt

    r2804123 r2817812  
    11=== PWF - Products Filter for WooCommerce ===
    22Contributors: mostafaabd
    3 Tags: woocommerce, filter, woocommerce filter, woocommerce product filter, ajax filter
     3Tags: filter, ajax filter, woocommerce filter, product filter, woocommerce product filter
    44Requires at least: 4.7
    5 Tested up to: 6.0.3
    6 Stable tag: 1.1.3
     5Tested up to: 6.1
     6Stable tag: 1.1.4
    77Requires PHP: 7.4
    88License: GPLv2 or later
     
    207207
    208208== 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=
     210Fixed: If the WooCommerce plugin doesn't exsit.
     211=1.1.3=
     212Fixed: admin functions related to anlytics
     213Addes: A link to PRO on the setting page.
  • pwf-wc-product-filters/trunk/changelog.txt

    r2802962 r2817812  
    11== Changelog ==
     2=1.1.3=
     3Fixed: If WooCommerce doesn't exsit.
    24=1.1.3=
    35Fixed: admin functions related to anlytics
  • pwf-wc-product-filters/trunk/includes/classes/admin/meta/class-pwf-meta-data.php

    r2745829 r2817812  
    77    class Pwf_Meta_Data {
    88
    9         function __construct() {
     9        public function __construct() {
    1010        }
    1111
     
    169169
    170170        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                    }
    181183                }
    182184            }
  • pwf-wc-product-filters/trunk/pwfwoofilter.php

    r2802962 r2817812  
    33Plugin Name: PWF - Products Filter for WooCommerce
    44Description: Filter WooCommerce products and WordPress post types. Filter by any criteria including categories, tags, taxonomies, price, and custom fields.
    5 Version:     1.1.3
     5Version:     1.1.4
    66Author:      Mostafa
    77Author URI:  https://mostafaa.net/
     
    1313Requires PHP: 7.4
    1414WC requires at least: 4.3.0
    15 WC tested up to: 7.0.0
     15WC tested up to: 7.1.0
    1616------------------------------------------------------------------------------*/
    1717
    1818defined( 'ABSPATH' ) || exit; // exit if file is called directly
    1919
    20 const PWF_WOO_FILTER_VER        = '1.1.3';
     20const PWF_WOO_FILTER_VER        = '1.1.4';
    2121const PWF_WOO_FILTER_DB_VERSION = '1.0.1';
    2222
Note: See TracChangeset for help on using the changeset viewer.