Changeset 3392495
- Timestamp:
- 11/09/2025 06:51:55 PM (5 months ago)
- Location:
- printapp
- Files:
-
- 8 edited
- 1 copied
-
tags/2.2.3 (copied) (copied from printapp/trunk)
-
tags/2.2.3/functions/front/accounts.php (modified) (1 diff)
-
tags/2.2.3/functions/front/projects.php (modified) (1 diff)
-
tags/2.2.3/printapp.php (modified) (2 diffs)
-
tags/2.2.3/readme.txt (modified) (2 diffs)
-
trunk/functions/front/accounts.php (modified) (1 diff)
-
trunk/functions/front/projects.php (modified) (1 diff)
-
trunk/printapp.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
printapp/tags/2.2.3/functions/front/accounts.php
r3392165 r3392495 19 19 $run_url = PRINT_APP_RUN_BASE_URL . "user/{$printapp_domain_key}/{$user_id}/wp?signature={$credentials['signature']}&time={$credentials['timestamp']}&lang={$lang_code}"; 20 20 wp_enqueue_script('print_app_class', $run_url, '', '', true); 21 22 wp_localize_script('print_app_class', 'printAppParams', array( 23 'pluginRoot' => site_url() . '/print_app', 24 'cookieKey' => PRINT_APP_CUSTOMIZATION_KEY, 25 'wp_ajax_url' => admin_url('admin-ajax.php'), 26 )); 21 27 22 28 echo '<div id="print-app-user-projects" class="print-app-user-projects"></div>'; 23 29 } 24 -
printapp/tags/2.2.3/functions/front/projects.php
r3274694 r3392495 21 21 $product_id = absint($_POST['product_id']); // Sanitize product_id 22 22 $result = General\save_customization_data($product_id, $value); 23 if ($result !== FALSE) 24 return wp_send_json_success('Customization data saved successfully: ' . $result); 23 24 if ($result !== FALSE) { 25 $product_url = get_permalink($product_id); 26 return wp_send_json_success(['success' => true, 'productUrl' => $product_url]); 27 } 25 28 26 29 wp_send_json_error('Failed to save customization data'); -
printapp/tags/2.2.3/printapp.php
r3392165 r3392495 4 4 * Plugin URI: https://print.app 5 5 * Description: Empower your customers to personalize products like Business Cards, Photo Prints, T-Shirts, Mugs, Banners, Canvases, etc. on your store before purchase 6 * Version: 2.2. 26 * Version: 2.2.3 7 7 * Requires at least: 3.8 8 8 * Requires PHP: 7.4 … … 46 46 * @var string 47 47 */ 48 public $version = '2.2. 2';48 public $version = '2.2.3'; 49 49 50 50 /** -
printapp/tags/2.2.3/readme.txt
r3392165 r3392495 4 4 Requires at least: 3.8 5 5 Tested up to: 6.8 6 Stable tag: 2.2. 26 Stable tag: 2.2.3 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 102 102 == Changelog == 103 103 104 = 2.2.3 = 105 Minor update for resuming save for later 106 104 107 = 2.2.2 = 105 108 Updated the release version -
printapp/trunk/functions/front/accounts.php
r3392165 r3392495 19 19 $run_url = PRINT_APP_RUN_BASE_URL . "user/{$printapp_domain_key}/{$user_id}/wp?signature={$credentials['signature']}&time={$credentials['timestamp']}&lang={$lang_code}"; 20 20 wp_enqueue_script('print_app_class', $run_url, '', '', true); 21 22 wp_localize_script('print_app_class', 'printAppParams', array( 23 'pluginRoot' => site_url() . '/print_app', 24 'cookieKey' => PRINT_APP_CUSTOMIZATION_KEY, 25 'wp_ajax_url' => admin_url('admin-ajax.php'), 26 )); 21 27 22 28 echo '<div id="print-app-user-projects" class="print-app-user-projects"></div>'; 23 29 } 24 -
printapp/trunk/functions/front/projects.php
r3274694 r3392495 21 21 $product_id = absint($_POST['product_id']); // Sanitize product_id 22 22 $result = General\save_customization_data($product_id, $value); 23 if ($result !== FALSE) 24 return wp_send_json_success('Customization data saved successfully: ' . $result); 23 24 if ($result !== FALSE) { 25 $product_url = get_permalink($product_id); 26 return wp_send_json_success(['success' => true, 'productUrl' => $product_url]); 27 } 25 28 26 29 wp_send_json_error('Failed to save customization data'); -
printapp/trunk/printapp.php
r3392165 r3392495 4 4 * Plugin URI: https://print.app 5 5 * Description: Empower your customers to personalize products like Business Cards, Photo Prints, T-Shirts, Mugs, Banners, Canvases, etc. on your store before purchase 6 * Version: 2.2. 26 * Version: 2.2.3 7 7 * Requires at least: 3.8 8 8 * Requires PHP: 7.4 … … 46 46 * @var string 47 47 */ 48 public $version = '2.2. 2';48 public $version = '2.2.3'; 49 49 50 50 /** -
printapp/trunk/readme.txt
r3392165 r3392495 4 4 Requires at least: 3.8 5 5 Tested up to: 6.8 6 Stable tag: 2.2. 26 Stable tag: 2.2.3 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 102 102 == Changelog == 103 103 104 = 2.2.3 = 105 Minor update for resuming save for later 106 104 107 = 2.2.2 = 105 108 Updated the release version
Note: See TracChangeset
for help on using the changeset viewer.