Changeset 3165399
- Timestamp:
- 10/09/2024 05:48:38 AM (18 months ago)
- Location:
- wc-pickup-store
- Files:
-
- 38 added
- 4 edited
-
tags/1.8.7 (added)
-
tags/1.8.7/assets (added)
-
tags/1.8.7/assets/css (added)
-
tags/1.8.7/assets/css/stores.css (added)
-
tags/1.8.7/assets/css/stores.min.css (added)
-
tags/1.8.7/assets/images (added)
-
tags/1.8.7/assets/images/icon_waze.svg (added)
-
tags/1.8.7/assets/images/wps_placeholder.png (added)
-
tags/1.8.7/assets/js (added)
-
tags/1.8.7/assets/js/stores.js (added)
-
tags/1.8.7/assets/js/stores.min.js (added)
-
tags/1.8.7/includes (added)
-
tags/1.8.7/includes/admin (added)
-
tags/1.8.7/includes/admin/wps-admin.php (added)
-
tags/1.8.7/includes/admin/wps-settings.php (added)
-
tags/1.8.7/includes/class-wps-init.php (added)
-
tags/1.8.7/includes/cpt-store.php (added)
-
tags/1.8.7/includes/integrations (added)
-
tags/1.8.7/includes/integrations/class-vc_stores.php (added)
-
tags/1.8.7/includes/integrations/class-widget-stores.php (added)
-
tags/1.8.7/includes/wps-functions.php (added)
-
tags/1.8.7/index.php (added)
-
tags/1.8.7/languages (added)
-
tags/1.8.7/languages/wc-pickup-store-es_CR.mo (added)
-
tags/1.8.7/languages/wc-pickup-store-es_CR.po (added)
-
tags/1.8.7/languages/wc-pickup-store-es_ES.mo (added)
-
tags/1.8.7/languages/wc-pickup-store-es_ES.po (added)
-
tags/1.8.7/languages/wc-pickup-store-fr_FR.mo (added)
-
tags/1.8.7/languages/wc-pickup-store-fr_FR.po (added)
-
tags/1.8.7/languages/wc-pickup-store.pot (added)
-
tags/1.8.7/readme.txt (added)
-
tags/1.8.7/templates (added)
-
tags/1.8.7/templates/archive-store.php (added)
-
tags/1.8.7/templates/selected-store-details.php (added)
-
tags/1.8.7/templates/single-store.php (added)
-
tags/1.8.7/templates/wrapper-store.php (added)
-
tags/1.8.7/templates/wrapper-vc_stores.php (added)
-
tags/1.8.7/wc-pickup-store.php (added)
-
trunk/includes/admin/wps-admin.php (modified) (2 diffs)
-
trunk/includes/class-wps-init.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/wc-pickup-store.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wc-pickup-store/trunk/includes/admin/wps-admin.php
r3156086 r3165399 46 46 * Get Stores in admin customizer 47 47 * 48 * @version 1.8. 748 * @version 1.8.8 49 49 * @since 1.x 50 50 * … … 81 81 if ( $store_posts ) { 82 82 foreach ( $store_posts as $store_id ) { 83 $store_title = get_the_title( $store_id ); 83 $post = get_post( $store_id ); 84 $store_title = isset( $post->post_title ) ? $post->post_title : ''; 84 85 if ( $array_keys ) { 85 86 $stores[] = array( -
wc-pickup-store/trunk/includes/class-wps-init.php
r3156086 r3165399 13 13 * Declare Shipping Method 14 14 * 15 * @version 1.8. 715 * @version 1.8.8 16 16 * @since 1.x 17 17 */ … … 288 288 } 289 289 new WC_PICKUP_STORE(); 290 291 /** 292 * Returns the main instance for WC_PICKUP_STORE class 293 */ 294 function wps() { 295 return new WC_PICKUP_STORE(); 296 } 290 297 } 291 298 } 292 299 add_action( 'init', 'wps_store_shipping_method_init' ); 293 294 /**295 * Returns the main instance for WC_PICKUP_STORE class296 */297 function wps() {298 return new WC_PICKUP_STORE();299 } -
wc-pickup-store/trunk/readme.txt
r3156086 r3165399 5 5 Requires at least: 4.7 6 6 Tested up to: 6.6.2 7 Stable tag: 1.8. 77 Stable tag: 1.8.8 8 8 License: GPLv2 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 122 122 123 123 == Changelog == 124 = 1.8.8 = 125 * Fix: Reported issue with title that was reseting to first store after selecting certain stores from dropdown on the Checkout in wps_store_get_store_admin 126 * Fix: Reported issue of undefined class WC_PICKUP_STORE resolved in wps_store_shipping_method_init 127 124 128 = 1.8.7 = 125 129 * Improvement: Libraries for Bootstrap and Font Awesome are now not loading by default … … 319 323 320 324 == Upgrade Notice == 325 = 1.8.8 = 326 * Fix: Reported issues of store selector on the Checkout and class WC_PICKUP_STORE initialization error 327 321 328 = 1.8.5 = 322 329 * New: Custom setting to override wps_store_select_first_option filter for dropdown first option text -
wc-pickup-store/trunk/wc-pickup-store.php
r3156086 r3165399 4 4 * Plugin URI: https://www.keylormendoza.com/plugins/wc-pickup-store/ 5 5 * Description: Allows you to set up a custom post type for stores available to use it as shipping method Local pickup in WooCommerce. It also allows your clients to choose an store on the Checkout page and also adds the store fields to the order details and email. 6 * Version: 1.8. 76 * Version: 1.8.8 7 7 * Requires at least: 4.7 8 8 * Tested up to: 6.6.2 9 9 * WC requires at least: 3.0 10 * WC tested up to: 9.3. 210 * WC tested up to: 9.3.3 11 11 * Author: Keylor Mendoza A. 12 12 * Author URI: https://www.keylormendoza.com … … 22 22 23 23 if ( !defined( 'WPS_PLUGIN_VERSION' ) ) { 24 define( 'WPS_PLUGIN_VERSION', '1.8. 7' );24 define( 'WPS_PLUGIN_VERSION', '1.8.8' ); 25 25 } 26 26
Note: See TracChangeset
for help on using the changeset viewer.