Plugin Directory

Changeset 3289468


Ignore:
Timestamp:
05/08/2025 12:09:58 AM (11 months ago)
Author:
levelfourstorefront
Message:

Committing version 5.8.3, check the change log for more info.

Location:
wp-easycart/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wp-easycart/trunk/design/theme/base-responsive-v3/ec-store.js

    r3289462 r3289468  
    11// JavaScript Document
    22function wp_easycart_init_location_buttons() {
    3     if ( jQuery( '.wpeasycart-location-popup' ) ) {
     3    if ( jQuery( '.wpeasycart-location-popup' ).length ) {
    44        jQuery( '.wpeasycart-location-popup' ).appendTo( 'body' );
    55        if ( 0 == Number( wpeasycart_ajax_object.location_id ) ) {
  • wp-easycart/trunk/design/theme/base-responsive-v3/ec-store.min.js

    r3289462 r3289468  
    1 function wp_easycart_init_location_buttons(){if(jQuery('.wpeasycart-location-popup')){jQuery('.wpeasycart-location-popup').appendTo('body');if(0==Number(wpeasycart_ajax_object.location_id)){jQuery('.wpeasycart-location-popup').fadeIn();wpeasycart_trigger_location_geo()}
     1function wp_easycart_init_location_buttons(){if(jQuery('.wpeasycart-location-popup').length){jQuery('.wpeasycart-location-popup').appendTo('body');if(0==Number(wpeasycart_ajax_object.location_id)){jQuery('.wpeasycart-location-popup').fadeIn();wpeasycart_trigger_location_geo()}
    22jQuery('.wpeasycart-location-popup-find-btn').on('click',function(){jQuery('.wpeasycart-location-list-loader').show();jQuery('.wpeasycart-location-list').html('');var data={action:'ec_ajax_location_search',search:jQuery('#wpeasycart_location_input').val(),nonce:jQuery('#wpeasycart_location_nonce').val()};jQuery.ajax({url:wpeasycart_ajax_object.ajax_url,type:'post',data:data,success:function(response){jQuery('.wpeasycart-location-list-loader').hide();if(response.data.locations){wpeasycart_load_locations(response.data.locations)}}})});jQuery('.wpeasycart-location-popup-use-location-btn').on('click',function(){wpeasycart_trigger_location_geo()});jQuery(document).on('click','.wpeasycart-location-popup-select-store-btn',function(){jQuery('.wpeasycart-location-list-loader').show();jQuery('.wpeasycart-location-list').html('');var data={action:'ec_ajax_location_set_selected',location_id:jQuery(this).attr('data-location-id'),nonce:jQuery('#wpeasycart_location_nonce').val()};jQuery.ajax({url:wpeasycart_ajax_object.ajax_url,type:'post',data:data,success:function(response){location.reload()}})});jQuery('.wpeasycart-location-popup-modal-close-btn').on('click',function(){jQuery('.wpeasycart-location-popup').fadeOut()});jQuery('.ec_product_select_location').on('click',function(){jQuery('.wpeasycart-location-popup').fadeIn();if(jQuery(this).attr('data-product-id')){wpeasycart_trigger_location_geo(Number(jQuery(this).attr('data-product-id')))}else if(jQuery(this).attr('data-type')&&'cart'==jQuery(this).attr('data-type')){wpeasycart_trigger_location_geo(!1,'cart')}else{wpeasycart_trigger_location_geo()}})}}
    33jQuery(document).ready(function(){wp_easycart_init_location_buttons();if(jQuery('#wpeasycart_cart_holder').length){wpeasycart_load_cart(jQuery('#wpeasycart_cart_holder').data('cart-page'),jQuery('#wpeasycart_cart_holder').data('success-code'),jQuery('#wpeasycart_cart_holder').data('error-code'),jQuery('#wpeasycart_cart_holder').data('language'),jQuery('#wpeasycart_cart_holder').data('nonce'))}
  • wp-easycart/trunk/readme.txt

    r3289462 r3289468  
    33Tags: shopping cart, ecommerce, e-commerce, store, paypal, stripe, square, facebook, apple pay
    44Tested up to: 6.8
    5 Stable tag: 5.8.2
     5Stable tag: 5.8.3
    66License: WP EasyCart License
    77License URI: http://www.wpeasycart.com/terms-and-conditions/
     
    215215
    216216== Changelog ==
    217 = 5.8.2 =
     217= 5.8.3 =
     218* Patch from 5.8.2 - Error in the main store js quick fix.
    218219* Improvement - Order list keeps the name visible.
    219220* Improvement - Order list combined first and last name into a customer name column.
  • wp-easycart/trunk/wpeasycart.php

    r3289462 r3289468  
    55 * Description: The WordPress Shopping Cart by WP EasyCart is a simple eCommerce solution that installs into new or existing WordPress blogs. Customers purchase directly from your store! Get a full ecommerce platform in WordPress! Sell products, downloadable goods, gift cards, clothing and more! Now with WordPress, the powerful features are still very easy to administrate! If you have any questions, please view our website at <a href="http://www.wpeasycart.com" target="_blank">WP EasyCart</a>.
    66
    7  * Version: 5.8.2
     7 * Version: 5.8.3
    88 * Author: WP EasyCart
    99 * Author URI: http://www.wpeasycart.com
     
    1414 *
    1515 * @package wpeasycart
    16  * @version 5.8.2
     16 * @version 5.8.3
    1717 * @author WP EasyCart <[email protected]>
    1818 * @copyright Copyright (c) 2012, WP EasyCart
     
    2323define( 'EC_PLUGIN_DIRECTORY', __DIR__ );
    2424define( 'EC_PLUGIN_DATA_DIRECTORY', __DIR__ . '-data' );
    25 define( 'EC_CURRENT_VERSION', '5_8_2' );
     25define( 'EC_CURRENT_VERSION', '5_8_3' );
    2626define( 'EC_CURRENT_DB', '1_30' );/* Backwards Compatibility */
    2727define( 'EC_UPGRADE_DB', '95' );
Note: See TracChangeset for help on using the changeset viewer.