Plugin Directory

Changeset 2925280


Ignore:
Timestamp:
06/13/2023 12:17:56 PM (3 years ago)
Author:
stacks
Message:

Retrieve the original attribute name along with the translated name

Location:
stacks-mobile-app-builder
Files:
6 edited
18 copied

Legend:

Unmodified
Added
Removed
  • stacks-mobile-app-builder/tags/5.2.1/api/mobile/woocommerce/api/formatting/single-product-formatting.php

    r2898575 r2925280  
    277277                    'id' => $id,
    278278                    'name' => $this->get_attribute_taxonomy_name($attribute['name'], $this->product),
     279                    'original_name' => $attribute['name'],
    279280                    'position' => (int) $attribute['position'],
    280281                    'visible' => (bool) $attribute['is_visible'],
  • stacks-mobile-app-builder/tags/5.2.1/api/mobile/woocommerce/api/v1/pages/views/views-controller.php

    r2914380 r2925280  
    204204                    }
    205205
    206                     if ($element->widgetType == 'mobile-text-editor') {
     206                    if (!empty( $element->widgetType) && $element->widgetType == 'mobile-text-editor') {
    207207                        $element->settings->editor = stripslashes($element->settings->editor);
    208208                    }
  • stacks-mobile-app-builder/tags/5.2.1/helper_functions.php

    r2914380 r2925280  
    129129 *                                Definitions                                  *
    130130 * =========================================================================== */
    131 define('stacks_version', '5.1.1');
     131define('stacks_version', '5.2.1');
    132132define('STACKS_BRAIN', 'http://tunnel.stacksmarket.co:8083');
    133133define('STACKS_WC_API', plugin_dir_path(__FILE__) . 'api/mobile/woocommerce/api');
  • stacks-mobile-app-builder/tags/5.2.1/index.php

    r2914380 r2925280  
    66 * Author URI: stacksmarket.co
    77 * Description: Enjoy the fast and easy experience of building your Ecommerce mobile application
    8  * Version: 5.1.1
     8 * Version: 5.2.1
    99 */
    1010class stacks_app_builder {
  • stacks-mobile-app-builder/tags/5.2.1/readme.txt

    r2914380 r2925280  
    33Tags: App design, Mobile application builder, Native app
    44Requires at least: 5.7
    5 Tested up to: 6.2
     5Tested up to: 6.2.2
    66Requires PHP: 7.4
    77WC tested up to: 7.4.0
     
    121121
    122122== Changelog ==
     123
     124= 5.2.1 (13 June, 2023) =
     125* App: Retrieve the original attribute name along with the translated name
     126
     127= 5.2 (28 May, 2023) =
     128* App: Checkout fields are editable from the builder
     129* App: Fix Arabic Variations in Variable Products retrieval
    123130
    124131= 5.1.1 (18 May, 2023) =
  • stacks-mobile-app-builder/trunk/api/mobile/woocommerce/api/formatting/single-product-formatting.php

    r2898575 r2925280  
    277277                    'id' => $id,
    278278                    'name' => $this->get_attribute_taxonomy_name($attribute['name'], $this->product),
     279                    'original_name' => $attribute['name'],
    279280                    'position' => (int) $attribute['position'],
    280281                    'visible' => (bool) $attribute['is_visible'],
  • stacks-mobile-app-builder/trunk/api/mobile/woocommerce/api/v1/pages/views/views-controller.php

    r2914380 r2925280  
    204204                    }
    205205
    206                     if ($element->widgetType == 'mobile-text-editor') {
     206                    if (!empty( $element->widgetType) && $element->widgetType == 'mobile-text-editor') {
    207207                        $element->settings->editor = stripslashes($element->settings->editor);
    208208                    }
  • stacks-mobile-app-builder/trunk/helper_functions.php

    r2914380 r2925280  
    129129 *                                Definitions                                  *
    130130 * =========================================================================== */
    131 define('stacks_version', '5.1.1');
     131define('stacks_version', '5.2.1');
    132132define('STACKS_BRAIN', 'http://tunnel.stacksmarket.co:8083');
    133133define('STACKS_WC_API', plugin_dir_path(__FILE__) . 'api/mobile/woocommerce/api');
  • stacks-mobile-app-builder/trunk/index.php

    r2914380 r2925280  
    66 * Author URI: stacksmarket.co
    77 * Description: Enjoy the fast and easy experience of building your Ecommerce mobile application
    8  * Version: 5.1.1
     8 * Version: 5.2.1
    99 */
    1010class stacks_app_builder {
  • stacks-mobile-app-builder/trunk/readme.txt

    r2914380 r2925280  
    33Tags: App design, Mobile application builder, Native app
    44Requires at least: 5.7
    5 Tested up to: 6.2
     5Tested up to: 6.2.2
    66Requires PHP: 7.4
    77WC tested up to: 7.4.0
     
    121121
    122122== Changelog ==
     123
     124= 5.2.1 (13 June, 2023) =
     125* App: Retrieve the original attribute name along with the translated name
     126
     127= 5.2 (28 May, 2023) =
     128* App: Checkout fields are editable from the builder
     129* App: Fix Arabic Variations in Variable Products retrieval
    123130
    124131= 5.1.1 (18 May, 2023) =
Note: See TracChangeset for help on using the changeset viewer.