Plugin Directory

Changeset 2758159


Ignore:
Timestamp:
07/18/2022 07:53:52 PM (4 years ago)
Author:
nucleusgenius
Message:

version 1.6

Location:
quasar-variable-attributes
Files:
81 added
4 edited

Legend:

Unmodified
Added
Removed
  • quasar-variable-attributes/trunk/admin.php

    r2756088 r2758159  
    1010        <div class='swap-logo-header-q'>
    1111            <div class='logo-header-q'>
    12                 <div class='version-q-form'><span class='name-plugin-q'>Quasar Variable Attributes</span> <?php esc_html_e('Version','quasar-attr-variable');?> <span>1.5</span></div>
     12                <div class='version-q-form'><span class='name-plugin-q'>Quasar Variable Attributes</span> <?php esc_html_e('Version','quasar-attr-variable');?> <span>1.6</span></div>
    1313            </div>
    1414        </div>
  • quasar-variable-attributes/trunk/assets/js/frontend.js

    r2756088 r2758159  
    400400    let link_card = '';
    401401    if ( link.attr('data-card-url') !='' ){
    402         let otn_link = link.attr('data-card-url').split('/');
    403         $.each(otn_link, function(index,value){
    404             if ( index > 2 ){
    405                 link_card = link_card +'/'+value;
    406             }
    407         });
     402        if ( typeof link.attr('data-card-url') !='undefined' ){
     403            let otn_link = link.attr('data-card-url').split('/');
     404            $.each(otn_link, function(index,value){
     405                if ( index > 2 ){
     406                    link_card = link_card +'/'+value;
     407                }
     408            });
     409        }
    408410       
    409411    }
  • quasar-variable-attributes/trunk/quasar-variable-attributes-main.php

    r2756088 r2758159  
    44Plugin URI: https://quasar-variable-attributes.quasar-form.com
    55Description: Make the choice of options in your variable products beautiful and convenient
    6 Version: 1.5
     6Version: 1.6
    77Author: nucleus_genius
    88
     
    1010
    1111//v
    12 define( 'quasar_variable_free_attributes_version', '1.5' );
     12define( 'quasar_variable_free_attributes_version', '1.6' );
    1313define( 'quasar_variable_free_attributes_url', plugins_url( '/', __FILE__ ) );
    1414
  • quasar-variable-attributes/trunk/readme.txt

    r2756091 r2758159  
    55Requires at least: 4.8
    66Tested up to: 6.0
    7 Stable tag: 1.5
     7Stable tag: 1.6
    88Requires PHP: 5.6
    99License: GPLv2 or later
Note: See TracChangeset for help on using the changeset viewer.