Changeset 3433436
- Timestamp:
- 01/06/2026 10:07:52 AM (2 weeks ago)
- Location:
- pixobe-product-designer/trunk
- Files:
-
- 8 edited
-
functions.php (modified) (1 diff)
-
includes/utils/activation_utils.php (modified) (1 diff)
-
languages/pixobe-product-designer-pt_BR.mo (modified) (previous)
-
languages/pixobe-product-designer-pt_BR.pot (modified) (1 diff)
-
languages/pixobe-product-designer-pt_PT.mo (modified) (previous)
-
languages/pixobe-product-designer-pt_PT.pot (modified) (1 diff)
-
pixobe-product-designer.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pixobe-product-designer/trunk/functions.php
r3430343 r3433436 37 37 function pixobe_enqueue_frontend_scripts() 38 38 { 39 if (!function_exists('is_product') || !function_exists('is_cart') || !function_exists('is_checkout')) { 40 return; 41 } 42 43 if (!is_product() && !is_cart() && !is_checkout()) { 44 return; 45 } 46 47 pixobe_enqueue_scripts(); 39 // Early return if WooCommerce functions don't exist 40 if (!function_exists('is_product')) { 41 return; 42 } 43 44 // Check WooCommerce pages first (most common case) 45 if (is_product() || is_cart() || is_checkout()) { 46 pixobe_enqueue_scripts(); 47 return; 48 } 49 50 // Only check for shortcode if on other pages 51 global $post; 52 if ($post && has_shortcode($post->post_content, 'product_page')) { 53 pixobe_enqueue_scripts(); 54 } 48 55 } 49 56 -
pixobe-product-designer/trunk/includes/utils/activation_utils.php
r3430343 r3433436 3 3 namespace PixobeProductDesigner\Plugins; 4 4 5 if (!defined('PIXOBE_API_ENDPOINT')) { 6 define('PIXOBE_API_ENDPOINT', 'https://pixobe.com/api/v2'); 7 } 5 8 // Function to call backend API on plugin activation 6 9 function pixobe_product_designer_activate() -
pixobe-product-designer/trunk/languages/pixobe-product-designer-pt_BR.pot
r3430343 r3433436 4 4 msgid "" 5 5 msgstr "" 6 "Project-Id-Version: Pixobe Product 0.0. 1\n"6 "Project-Id-Version: Pixobe Product 0.0.2\n" 7 7 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/pixobe-product\n" 8 8 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -
pixobe-product-designer/trunk/languages/pixobe-product-designer-pt_PT.pot
r3430343 r3433436 4 4 msgid "" 5 5 msgstr "" 6 "Project-Id-Version: Pixobe Product 0.0. 1\n"6 "Project-Id-Version: Pixobe Product 0.0.2\n" 7 7 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/pixobe-product\n" 8 8 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -
pixobe-product-designer/trunk/pixobe-product-designer.php
r3430343 r3433436 4 4 * Plugin URI: https://pixobe.com/ 5 5 * Description: Product Designer for WooCommerce 6 * Version: 0.0. 17 * Requires at least: 6. 56 * Version: 0.0.2 7 * Requires at least: 6.9 8 8 * Requires PHP: 7.4 9 9 * Author: Pixobe … … 30 30 } 31 31 32 if (!defined('PIXOBE_API_ENDPOINT')) {33 define('PIXOBE_API_ENDPOINT', 'https://pixobe.com/api');34 }35 32 36 33 define('PIXOBE_PRODUCT_DESIGNER_APP_NAME', 'ProductDesigner'); 37 define('PIXOBE_PRODUCT_DESIGNER_VERSION', '0.0. 1');34 define('PIXOBE_PRODUCT_DESIGNER_VERSION', '0.0.2'); 38 35 define('PIXOBE_PRODUCT_CATEGORY', 'pixobe-product'); 39 36 define('PIXOBE_PRODUCT_PLUGIN_URL', trailingslashit(plugin_dir_url(__FILE__))); -
pixobe-product-designer/trunk/readme.txt
r3430343 r3433436 4 4 Tags: woocommerce, product customizer, product designer, ai product design, laser etching 5 5 Requires at least: 6.5 6 Tested up to: 6. 87 Stable tag: 0.0. 16 Tested up to: 6.9 7 Stable tag: 0.0.2 8 8 Requires PHP: 7.4 9 9 License: GPL-2.0-or-later … … 86 86 87 87 == Changelog 88 = 0.0. 1=88 = 0.0.2 = 89 89 * First public release of Pixobe Product Designer. 90 90 Customize WooCommerce products with AI-powered design, text, images, and laser etching previews. … … 92 92 93 93 == Upgrade Notice == 94 = 0.0. 1=94 = 0.0.2 = 95 95 First public release of Pixobe Product Designer. 96 96 Customize WooCommerce products with AI-powered design, text, images, and laser etching previews.
Note: See TracChangeset
for help on using the changeset viewer.