Changeset 3289468
- Timestamp:
- 05/08/2025 12:09:58 AM (11 months ago)
- Location:
- wp-easycart/trunk
- Files:
-
- 4 edited
-
design/theme/base-responsive-v3/ec-store.js (modified) (1 diff)
-
design/theme/base-responsive-v3/ec-store.min.js (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
wpeasycart.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-easycart/trunk/design/theme/base-responsive-v3/ec-store.js
r3289462 r3289468 1 1 // JavaScript Document 2 2 function wp_easycart_init_location_buttons() { 3 if ( jQuery( '.wpeasycart-location-popup' ) ) {3 if ( jQuery( '.wpeasycart-location-popup' ).length ) { 4 4 jQuery( '.wpeasycart-location-popup' ).appendTo( 'body' ); 5 5 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()}1 function 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()} 2 2 jQuery('.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()}})}} 3 3 jQuery(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 3 3 Tags: shopping cart, ecommerce, e-commerce, store, paypal, stripe, square, facebook, apple pay 4 4 Tested up to: 6.8 5 Stable tag: 5.8. 25 Stable tag: 5.8.3 6 6 License: WP EasyCart License 7 7 License URI: http://www.wpeasycart.com/terms-and-conditions/ … … 215 215 216 216 == Changelog == 217 = 5.8.2 = 217 = 5.8.3 = 218 * Patch from 5.8.2 - Error in the main store js quick fix. 218 219 * Improvement - Order list keeps the name visible. 219 220 * Improvement - Order list combined first and last name into a customer name column. -
wp-easycart/trunk/wpeasycart.php
r3289462 r3289468 5 5 * 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>. 6 6 7 * Version: 5.8. 27 * Version: 5.8.3 8 8 * Author: WP EasyCart 9 9 * Author URI: http://www.wpeasycart.com … … 14 14 * 15 15 * @package wpeasycart 16 * @version 5.8. 216 * @version 5.8.3 17 17 * @author WP EasyCart <[email protected]> 18 18 * @copyright Copyright (c) 2012, WP EasyCart … … 23 23 define( 'EC_PLUGIN_DIRECTORY', __DIR__ ); 24 24 define( 'EC_PLUGIN_DATA_DIRECTORY', __DIR__ . '-data' ); 25 define( 'EC_CURRENT_VERSION', '5_8_ 2' );25 define( 'EC_CURRENT_VERSION', '5_8_3' ); 26 26 define( 'EC_CURRENT_DB', '1_30' );/* Backwards Compatibility */ 27 27 define( 'EC_UPGRADE_DB', '95' );
Note: See TracChangeset
for help on using the changeset viewer.