Plugin Directory

Changeset 3405530


Ignore:
Timestamp:
11/28/2025 11:10:42 PM (7 weeks ago)
Author:
quadlayers
Message:

Update to version 2.5.7 from GitHub

Location:
woo-ajax-add-to-cart
Files:
2 added
26 edited
1 copied

Legend:

Unmodified
Added
Removed
  • woo-ajax-add-to-cart/tags/2.5.7/jetpack_vendor/automattic/jetpack-assets/CHANGELOG.md

    r3383515 r3405530  
    55The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
    66and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
     7
     8## [4.3.13] - 2025-11-17
     9### Changed
     10- Update package dependencies. [#45915]
     11- Update package dependencies. [#45958]
     12
     13## [4.3.12] - 2025-11-10
     14### Changed
     15- Tests: Ensure PHP 8.5 compatibility. [#45769]
     16- Update package dependencies. [#45756]
     17
     18### Fixed
     19- Tests: Improve compatibility with PHP 8.5. [#45771]
     20
     21## [4.3.11] - 2025-10-28
     22### Changed
     23- Update dependencies. [#42554]
    724
    825## [4.3.10] - 2025-10-02
     
    725742- Statically access asset tools
    726743
     744[4.3.13]: https://github.com/Automattic/jetpack-assets/compare/v4.3.12...v4.3.13
     745[4.3.12]: https://github.com/Automattic/jetpack-assets/compare/v4.3.11...v4.3.12
     746[4.3.11]: https://github.com/Automattic/jetpack-assets/compare/v4.3.10...v4.3.11
    727747[4.3.10]: https://github.com/Automattic/jetpack-assets/compare/v4.3.9...v4.3.10
    728748[4.3.9]: https://github.com/Automattic/jetpack-assets/compare/v4.3.8...v4.3.9
  • woo-ajax-add-to-cart/tags/2.5.7/jetpack_vendor/automattic/jetpack-status/CHANGELOG.md

    r3383515 r3405530  
    55The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
    66and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
     7
     8## [6.1.1] - 2025-11-03
     9### Fixed
     10- Phan: Address PhanRedundantCondition, PhanRedundantArrayValuesCall, and PhanPluginRedundantAssignment violations. [#45681]
    711
    812## [6.1.0] - 2025-10-13
     
    514518- Packages: Introduce a status package
    515519
     520[6.1.1]: https://github.com/Automattic/jetpack-status/compare/v6.1.0...v6.1.1
    516521[6.1.0]: https://github.com/Automattic/jetpack-status/compare/v6.0.4...v6.1.0
    517522[6.0.4]: https://github.com/Automattic/jetpack-status/compare/v6.0.3...v6.0.4
  • woo-ajax-add-to-cart/tags/2.5.7/jetpack_vendor/automattic/jetpack-status/src/class-cookiestate.php

    r3367296 r3405530  
    2626    public function state( $key = null, $value = null, $restate = false ) {
    2727        static $state = array();
    28         static $path, $domain;
     28        static $path, $domain; // this initializes values to null
    2929        if ( ! isset( $path ) ) {
    3030            require_once ABSPATH . 'wp-admin/includes/plugin.php';
     
    3535                $path   = ( isset( $bits['path'] ) ) ? dirname( $bits['path'] ) : null;
    3636                $domain = ( isset( $bits['host'] ) ) ? $bits['host'] : null;
    37             } else {
    38                 $path   = null;
    39                 $domain = null;
    4037            }
    4138        }
  • woo-ajax-add-to-cart/tags/2.5.7/jetpack_vendor/i18n-map.php

    r3383515 r3405530  
    77    'jetpack-assets' => array(
    88      'path' => 'jetpack_vendor/automattic/jetpack-assets',
    9       'ver' => '4.3.10',
     9      'ver' => '4.3.13',
    1010    ),
    1111    'wp-dashboard-widget-news' => array(
     
    1515    'wp-notice-plugin-promote' => array(
    1616      'path' => 'jetpack_vendor/quadlayers/wp-notice-plugin-promote',
    17       'ver' => '1.1.7',
     17      'ver' => '1.1.8',
    1818    ),
    1919    'wp-notice-plugin-required' => array(
  • woo-ajax-add-to-cart/tags/2.5.7/jetpack_vendor/quadlayers/wp-notice-plugin-promote/src/Load.php

    r3197488 r3405530  
    408408                $notice,
    409409                array(
    410                     'notice_more_label' => esc_html__( 'Get more info', 'wp-notice-plugin-promote' ),
     410                    'notice_more_label' => esc_html__( 'Learn more', 'wp-notice-plugin-promote' ),
    411411                )
    412412            );
  • woo-ajax-add-to-cart/tags/2.5.7/jetpack_vendor/quadlayers/wp-notice-plugin-promote/src/Traits/PluginActions.php

    r2870610 r3405530  
    4141        }
    4242
    43         return esc_html__( 'Install', 'wp-notice-plugin-promote' );
     43        return esc_html__( 'Install free', 'wp-notice-plugin-promote' );
    4444    }
    4545
  • woo-ajax-add-to-cart/tags/2.5.7/jetpack_vendor/quadlayers/wp-notice-plugin-promote/src/templates/notice.php

    r3197488 r3405530  
    2020        </div>
    2121        <div class="notice-content" style="margin-left: 15px;">
    22             <p>
     22            <?php
     23            // Check if title contains block-level HTML tags
     24            $has_block_tags = ! empty( $notice_title ) && preg_match( '/<(h[1-6]|div|p|ul|ol|li|blockquote|pre|table|form|section|article|header|footer|nav|aside)\b/i', $notice_title );
     25            ?>
     26            <?php if ( $has_block_tags ) : ?>
    2327                <?php if ( ! empty( $notice_title ) ) : ?>
    2428                    <?php echo wp_kses_post( $notice_title ); ?>
    25                     <br/>
    2629                <?php endif; ?>
    2730                <?php if ( ! empty( $notice_description ) ) : ?>
    28                     <?php echo wp_kses_post( $notice_description ); ?>
     31                    <p>
     32                        <?php echo wp_kses_post( $notice_description ); ?>
     33                    </p>
    2934                <?php endif; ?>
    30             </p>
     35            <?php else : ?>
     36                <p>
     37                    <?php if ( ! empty( $notice_title ) ) : ?>
     38                        <?php echo wp_kses_post( $notice_title ); ?>
     39                        <br/>
     40                    <?php endif; ?>
     41                    <?php if ( ! empty( $notice_description ) ) : ?>
     42                        <?php echo wp_kses_post( $notice_description ); ?>
     43                    <?php endif; ?>
     44                </p>
     45            <?php endif; ?>
    3146            <div style="display:flex;gap: 1em;align-items: center;" >
    32                 <a href="#" title="<?php echo esc_html__( 'I would not, close this alert.', 'wp-notice-plugin-promote' ); ?>" class="button-secondary link-dismiss" data-notice_index="<?php echo esc_attr( $notice_index ); ?>">
    33                     <?php echo esc_html__( 'I would not', 'wp-notice-plugin-promote' ); ?>
     47                <a href="#" title="<?php echo esc_html__( 'Not interested, close this alert.', 'wp-notice-plugin-promote' ); ?>" class="button-secondary link-dismiss" data-notice_index="<?php echo esc_attr( $notice_index ); ?>">
     48                    <?php echo esc_html__( 'Not interested', 'wp-notice-plugin-promote' ); ?>
    3449                </a>
    3550                <?php
  • woo-ajax-add-to-cart/tags/2.5.7/languages/woo-ajax-add-to-cart.pot

    r3383515 r3405530  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Ajax add to cart for WooCommerce 2.5.6\n"
     5"Project-Id-Version: Ajax add to cart for WooCommerce 2.5.7\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woo-ajax-add-to-cart\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-10-23T14:24:26+00:00\n"
     12"POT-Creation-Date: 2025-11-28T23:10:19+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.12.0\n"
     
    3636msgstr ""
    3737
    38 #: vendor_packages/wp-notice-plugin-promote.php:25
    39 msgid "This plugin allows you to add custom fields to the checkout page, related to billing, shipping or additional fields sections."
     38#: vendor_packages/wp-notice-plugin-promote.php:30
     39msgid "Turn more visitors into customers."
    4040msgstr ""
    4141
    42 #: vendor_packages/wp-notice-plugin-promote.php:33
    43 msgid "Perfect WooCommerce Brands the perfect tool to improve customer experience on your site. It allows you to highlight product brands and organize them in lists, dropdowns, thumbnails, and as a widget."
    44 msgstr ""
    45 
    46 #: vendor_packages/wp-notice-plugin-promote.php:45
    47 #, php-format
    48 msgid "Hello! %2$s We've spent countless hours developing this free plugin for you and would really appreciate it if you could drop us a quick rating. Your feedback is extremely valuable to us. %3$s It helps us to get better. Thanks for using %1$s."
     42#: vendor_packages/wp-notice-plugin-promote.php:39
     43msgid "Social Chat allows your users to start a conversation from your website directly to your WhatsApp phone number with one click."
    4944msgstr ""
    5045
    5146#: vendor_packages/wp-notice-plugin-promote.php:52
     47msgid "Customize your checkout in minutes."
     48msgstr ""
     49
     50#: vendor_packages/wp-notice-plugin-promote.php:61
     51msgid "WooCommerce Checkout Manager allows you to add custom fields to the checkout page, related to billing, Shipping or Additional fields sections."
     52msgstr ""
     53
     54#: vendor_packages/wp-notice-plugin-promote.php:75
     55msgid "Enjoying WooCommerce Ajax Add to Cart?"
     56msgstr ""
     57
     58#: vendor_packages/wp-notice-plugin-promote.php:83
     59msgid "A quick 5-star review helps us keep improving the plugin and supporting users like you. It only takes 2 seconds — thank you!"
     60msgstr ""
     61
     62#: vendor_packages/wp-notice-plugin-promote.php:86
    5263msgid "Report a bug"
    5364msgstr ""
    5465
    55 #: vendor_packages/wp-notice-plugin-promote.php:60
     66#: vendor_packages/wp-notice-plugin-promote.php:94
    5667msgid "Purchase Now"
    5768msgstr ""
    5869
    59 #: vendor_packages/wp-notice-plugin-promote.php:66
    60 msgid "Hello! We have a special gift!"
     70#: vendor_packages/wp-notice-plugin-promote.php:103
     71msgid "Save 20% today!"
    6172msgstr ""
    6273
    63 #: vendor_packages/wp-notice-plugin-promote.php:71
     74#: vendor_packages/wp-notice-plugin-promote.php:112
    6475#, php-format
    6576msgid "Today we have a special gift for you. Use the coupon code %1$s within the next 48 hours to receive a %2$s discount on the premium version of the %3$s plugin."
    66 msgstr ""
    67 
    68 #: vendor_packages/wp-notice-plugin-promote.php:86
    69 #: vendor_packages/wp-notice-plugin-promote.php:100
    70 #, php-format
    71 msgid "Hello! We want to invite you to try our %s plugin!"
    7277msgstr ""
    7378
  • woo-ajax-add-to-cart/tags/2.5.7/readme.txt

    r3383515 r3405530  
    66Requires PHP: 5.6
    77Tested up to: 6.8
    8 Stable tag: 2.5.6
     8Stable tag: 2.5.7
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    3232== Changelog ==
    3333
     34= 2.5.7 =
     35* WooCommerce compatibility
     36
    3437= 2.5.6 =
    3538* WooCommerce compatibility
  • woo-ajax-add-to-cart/tags/2.5.7/vendor/composer/installed.json

    r3383515 r3405530  
    33        {
    44            "name": "automattic/jetpack-assets",
    5             "version": "v4.3.10",
    6             "version_normalized": "4.3.10.0",
     5            "version": "v4.3.13",
     6            "version_normalized": "4.3.13.0",
    77            "source": {
    88                "type": "git",
    99                "url": "https://github.com/Automattic/jetpack-assets.git",
    10                 "reference": "6c0a138b68b6b02977038d6f1d5f4f503311005f"
    11             },
    12             "dist": {
    13                 "type": "zip",
    14                 "url": "https://api.github.com/repos/Automattic/jetpack-assets/zipball/6c0a138b68b6b02977038d6f1d5f4f503311005f",
    15                 "reference": "6c0a138b68b6b02977038d6f1d5f4f503311005f",
     10                "reference": "7403da3dfea8d33825ed995b64df4bbcbb3c38bb"
     11            },
     12            "dist": {
     13                "type": "zip",
     14                "url": "https://api.github.com/repos/Automattic/jetpack-assets/zipball/7403da3dfea8d33825ed995b64df4bbcbb3c38bb",
     15                "reference": "7403da3dfea8d33825ed995b64df4bbcbb3c38bb",
    1616                "shasum": ""
    1717            },
    1818            "require": {
    1919                "automattic/jetpack-constants": "^3.0.8",
    20                 "automattic/jetpack-status": "^6.0.4",
     20                "automattic/jetpack-status": "^6.1.1",
    2121                "php": ">=7.2"
    2222            },
    2323            "require-dev": {
    24                 "automattic/jetpack-changelogger": "^6.0.7",
     24                "automattic/jetpack-changelogger": "^6.0.9",
    2525                "automattic/phpunit-select-config": "^1.0.3",
    2626                "brain/monkey": "^2.6.2",
     
    3131                "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
    3232            },
    33             "time": "2025-10-02T04:43:17+00:00",
     33            "time": "2025-11-17T21:23:58+00:00",
    3434            "type": "jetpack-library",
    3535            "extra": {
     
    5959            "description": "Asset management utilities for Jetpack ecosystem packages",
    6060            "support": {
    61                 "source": "https://github.com/Automattic/jetpack-assets/tree/v4.3.10"
     61                "source": "https://github.com/Automattic/jetpack-assets/tree/v4.3.13"
    6262            },
    6363            "install-path": "../../jetpack_vendor/automattic/jetpack-assets"
     
    181181        {
    182182            "name": "automattic/jetpack-status",
    183             "version": "v6.1.0",
    184             "version_normalized": "6.1.0.0",
     183            "version": "v6.1.1",
     184            "version_normalized": "6.1.1.0",
    185185            "source": {
    186186                "type": "git",
    187187                "url": "https://github.com/Automattic/jetpack-status.git",
    188                 "reference": "7dbcfff7f1005611a3d27e3553df9389c658b3a8"
    189             },
    190             "dist": {
    191                 "type": "zip",
    192                 "url": "https://api.github.com/repos/Automattic/jetpack-status/zipball/7dbcfff7f1005611a3d27e3553df9389c658b3a8",
    193                 "reference": "7dbcfff7f1005611a3d27e3553df9389c658b3a8",
     188                "reference": "100acd2ad87f05b0782deac3905d52f9765725ce"
     189            },
     190            "dist": {
     191                "type": "zip",
     192                "url": "https://api.github.com/repos/Automattic/jetpack-status/zipball/100acd2ad87f05b0782deac3905d52f9765725ce",
     193                "reference": "100acd2ad87f05b0782deac3905d52f9765725ce",
    194194                "shasum": ""
    195195            },
     
    210210                "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
    211211            },
    212             "time": "2025-10-13T20:12:54+00:00",
     212            "time": "2025-11-03T08:47:38+00:00",
    213213            "type": "jetpack-library",
    214214            "extra": {
     
    240240            "description": "Used to retrieve information about the current status of Jetpack and the site overall.",
    241241            "support": {
    242                 "source": "https://github.com/Automattic/jetpack-status/tree/v6.1.0"
     242                "source": "https://github.com/Automattic/jetpack-status/tree/v6.1.1"
    243243            },
    244244            "install-path": "../../jetpack_vendor/automattic/jetpack-status"
     
    341341        {
    342342            "name": "quadlayers/wp-notice-plugin-promote",
    343             "version": "1.1.7",
    344             "version_normalized": "1.1.7.0",
     343            "version": "1.1.8",
     344            "version_normalized": "1.1.8.0",
    345345            "source": {
    346346                "type": "git",
    347347                "url": "https://github.com/franmastromarino/wp-notice-plugin-promote.git",
    348                 "reference": "e947d41c606f1ab679518d87f2b51230a9d74c92"
    349             },
    350             "dist": {
    351                 "type": "zip",
    352                 "url": "https://api.github.com/repos/franmastromarino/wp-notice-plugin-promote/zipball/e947d41c606f1ab679518d87f2b51230a9d74c92",
    353                 "reference": "e947d41c606f1ab679518d87f2b51230a9d74c92",
     348                "reference": "21c4a760a999cddd7896eba5034b7c8163dba133"
     349            },
     350            "dist": {
     351                "type": "zip",
     352                "url": "https://api.github.com/repos/franmastromarino/wp-notice-plugin-promote/zipball/21c4a760a999cddd7896eba5034b7c8163dba133",
     353                "reference": "21c4a760a999cddd7896eba5034b7c8163dba133",
    354354                "shasum": ""
    355355            },
     
    362362                "wp-coding-standards/wpcs": "^2.3.0"
    363363            },
    364             "time": "2024-11-27T20:38:40+00:00",
     364            "time": "2025-11-27T20:59:29+00:00",
    365365            "type": "jetpack-library",
    366366            "extra": {
     
    392392            "support": {
    393393                "issues": "https://github.com/franmastromarino/wp-notice-plugin-promote/issues",
    394                 "source": "https://github.com/franmastromarino/wp-notice-plugin-promote/tree/1.1.7"
     394                "source": "https://github.com/franmastromarino/wp-notice-plugin-promote/tree/1.1.8"
    395395            },
    396396            "install-path": "../../jetpack_vendor/quadlayers/wp-notice-plugin-promote"
  • woo-ajax-add-to-cart/tags/2.5.7/vendor/composer/installed.php

    r3383515 r3405530  
    22    'root' => array(
    33        'name' => 'quadlayers/woo-ajax-add-to-cart',
    4         'pretty_version' => 'v2.5.6',
    5         'version' => '2.5.6.0',
    6         'reference' => '5138e08931e378e6b5475646b01522d62ee4d423',
     4        'pretty_version' => 'v2.5.7',
     5        'version' => '2.5.7.0',
     6        'reference' => '2f1ff1b5d6ccf2d7fdbcc4bcd802e3fe54ea5142',
    77        'type' => 'project',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'automattic/jetpack-assets' => array(
    14             'pretty_version' => 'v4.3.10',
    15             'version' => '4.3.10.0',
    16             'reference' => '6c0a138b68b6b02977038d6f1d5f4f503311005f',
     14            'pretty_version' => 'v4.3.13',
     15            'version' => '4.3.13.0',
     16            'reference' => '7403da3dfea8d33825ed995b64df4bbcbb3c38bb',
    1717            'type' => 'jetpack-library',
    1818            'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-assets',
     
    3939        ),
    4040        'automattic/jetpack-status' => array(
    41             'pretty_version' => 'v6.1.0',
    42             'version' => '6.1.0.0',
    43             'reference' => '7dbcfff7f1005611a3d27e3553df9389c658b3a8',
     41            'pretty_version' => 'v6.1.1',
     42            'version' => '6.1.1.0',
     43            'reference' => '100acd2ad87f05b0782deac3905d52f9765725ce',
    4444            'type' => 'jetpack-library',
    4545            'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-status',
     
    5757        ),
    5858        'quadlayers/woo-ajax-add-to-cart' => array(
    59             'pretty_version' => 'v2.5.6',
    60             'version' => '2.5.6.0',
    61             'reference' => '5138e08931e378e6b5475646b01522d62ee4d423',
     59            'pretty_version' => 'v2.5.7',
     60            'version' => '2.5.7.0',
     61            'reference' => '2f1ff1b5d6ccf2d7fdbcc4bcd802e3fe54ea5142',
    6262            'type' => 'project',
    6363            'install_path' => __DIR__ . '/../../',
     
    7575        ),
    7676        'quadlayers/wp-notice-plugin-promote' => array(
    77             'pretty_version' => '1.1.7',
    78             'version' => '1.1.7.0',
    79             'reference' => 'e947d41c606f1ab679518d87f2b51230a9d74c92',
     77            'pretty_version' => '1.1.8',
     78            'version' => '1.1.8.0',
     79            'reference' => '21c4a760a999cddd7896eba5034b7c8163dba133',
    8080            'type' => 'jetpack-library',
    8181            'install_path' => __DIR__ . '/../../jetpack_vendor/quadlayers/wp-notice-plugin-promote',
  • woo-ajax-add-to-cart/tags/2.5.7/vendor_packages/wp-notice-plugin-promote.php

    r3340849 r3405530  
    2121         * Notice cross sell 1
    2222         */
    23         define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_1_SLUG', 'woocommerce-checkout-manager' );
    24         define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_1_NAME', 'WooCommerce Checkout Manager' );
    25         define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_1_DESCRIPTION', esc_html__( 'This plugin allows you to add custom fields to the checkout page, related to billing, shipping or additional fields sections.', 'woo-ajax-add-to-cart' ) );
    26         define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_1_URL', 'https://quadlayers.com/products/woocommerce-checkout-manager/?utm_source=qlwcajax_plugin&utm_medium=dashboard_notice&utm_campaign=cross_sell&utm_content=checkout_manager_link' );
    27         define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_1_LOGO_SRC', plugins_url( '/assets/backend/img/woocommerce-checkout-manager.jpg', QLWCAJAX_PLUGIN_FILE ) );
     23        define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_1_SLUG', 'wp-whatsapp-chat' );
     24        define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_1_NAME', 'Social Chat' );
     25        define(
     26            'QLWCAJAX_PROMOTE_CROSS_INSTALL_1_TITLE',
     27            wp_kses(
     28                sprintf(
     29                    '<h3 style="margin:0">%s</h3>',
     30                    esc_html__( 'Turn more visitors into customers.', 'woo-ajax-add-to-cart' )
     31                ),
     32                array(
     33                    'h3' => array(
     34                        'style' => array()
     35                    )
     36                )
     37            )
     38        );
     39        define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_1_DESCRIPTION', esc_html__( 'Social Chat allows your users to start a conversation from your website directly to your WhatsApp phone number with one click.', 'woo-ajax-add-to-cart' ) );
     40        define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_1_URL', 'https://quadlayers.com/products/whatsapp-chat/?utm_source=qlwcajax_plugin&utm_medium=dashboard_notice&utm_campaign=cross_sell&utm_content=social_chat_link' );
     41        define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_1_LOGO_SRC', plugins_url( '/assets/backend/img/wp-whatsapp-chat.jpeg', QLWCAJAX_PLUGIN_FILE ) );
    2842        /**
    2943         * Notice cross sell 2
    3044         */
    31         define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_2_SLUG', 'perfect-woocommerce-brands' );
    32         define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_2_NAME', 'Perfect WooCommerce Brands' );
    33         define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_2_DESCRIPTION', esc_html__( 'Perfect WooCommerce Brands the perfect tool to improve customer experience on your site. It allows you to highlight product brands and organize them in lists, dropdowns, thumbnails, and as a widget.', 'woo-ajax-add-to-cart' ) );
    34         define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_2_URL', 'https://quadlayers.com/products/perfect-woocommerce-brands/?utm_source=qlwcajax_plugin&utm_medium=dashboard_notice&utm_campaign=cross_sell&utm_content=perfect_brands_link' );
     45        define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_2_SLUG', 'woocommerce-checkout-manager' );
     46        define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_2_NAME', 'WooCommerce Checkout Manager' );
     47        define(
     48            'QLWCAJAX_PROMOTE_CROSS_INSTALL_2_TITLE',
     49            wp_kses(
     50                sprintf(
     51                    '<h3 style="margin:0">%s</h3>',
     52                    esc_html__( 'Customize your checkout in minutes.', 'woo-ajax-add-to-cart' )
     53                ),
     54                array(
     55                    'h3' => array(
     56                        'style' => array()
     57                    )
     58                )
     59            )
     60        );
     61        define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_2_DESCRIPTION', esc_html__( 'WooCommerce Checkout Manager allows you to add custom fields to the checkout page, related to billing, Shipping or Additional fields sections.', 'woo-ajax-add-to-cart' ) );
     62        define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_2_URL', 'https://quadlayers.com/products/woocommerce-checkout-manager/?utm_source=qlwcajax_plugin&utm_medium=dashboard_notice&utm_campaign=cross_sell&utm_content=checkout_manager_link' );
    3563        define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_2_LOGO_SRC', plugins_url( '/assets/backend/img/woocommerce-checkout-manager.jpg', QLWCAJAX_PLUGIN_FILE ) );
    3664
     
    4270                    'notice_delay'       => 0,
    4371                    'notice_logo'        => QLWCAJAX_PROMOTE_LOGO_SRC,
    44                     'notice_description' => sprintf(
    45                                     esc_html__( 'Hello! %2$s We\'ve spent countless hours developing this free plugin for you and would really appreciate it if you could drop us a quick rating. Your feedback is extremely valuable to us. %3$s It helps us to get better. Thanks for using %1$s.', 'woo-ajax-add-to-cart' ),
    46                                     '<b>'.QLWCAJAX_PLUGIN_NAME.'</b>',
    47                                     '<span style="font-size: 16px;">🙂</span>',
    48                                     '<br>'
     72                    'notice_title'       => wp_kses(
     73                        sprintf(
     74                            '<h3 style="margin:0">%s</h3>',
     75                            esc_html__( 'Enjoying WooCommerce Ajax Add to Cart?', 'woo-ajax-add-to-cart' )
     76                        ),
     77                        array(
     78                            'h3' => array(
     79                                'style' => array()
     80                            )
     81                        )
    4982                    ),
     83                    'notice_description' => esc_html__( 'A quick 5-star review helps us keep improving the plugin and supporting users like you. It only takes 2 seconds — thank you!', 'woo-ajax-add-to-cart' ),
    5084                    'notice_link'        => QLWCAJAX_PROMOTE_REVIEW_URL,
    5185                    'notice_more_link'   => 'https://quadlayers.com/account/support/?utm_source=qlwcajax_plugin&utm_medium=dashboard_notice&utm_campaign=support&utm_content=report_bug_button',
     
    6498                    'notice_delay'       => WEEK_IN_SECONDS,
    6599                    'notice_logo'        => QLWCAJAX_PROMOTE_LOGO_SRC,
    66                     'notice_title'       => esc_html__(
    67                         'Hello! We have a special gift!',
    68                         'woo-ajax-add-to-cart'
     100                    'notice_title'       => wp_kses(
     101                        sprintf(
     102                            '<h3 style="margin:0">%s</h3>',
     103                            esc_html__( 'Save 20% today!', 'woo-ajax-add-to-cart' )
     104                        ),
     105                        array(
     106                            'h3' => array(
     107                                'style' => array()
     108                            )
     109                        )
    69110                    ),
    70111                    'notice_description' => sprintf(
     
    83124                    'notice_delay'       => MONTH_IN_SECONDS * 3,
    84125                    'notice_logo'        => QLWCAJAX_PROMOTE_CROSS_INSTALL_1_LOGO_SRC,
    85                     'notice_title'       => sprintf(
    86                         esc_html__(
    87                             'Hello! We want to invite you to try our %s plugin!',
    88                             'woo-ajax-add-to-cart'
    89                         ),
    90                         QLWCAJAX_PROMOTE_CROSS_INSTALL_1_NAME
    91                     ),
     126                    'notice_title'       => QLWCAJAX_PROMOTE_CROSS_INSTALL_1_TITLE,
    92127                    'notice_description' => QLWCAJAX_PROMOTE_CROSS_INSTALL_1_DESCRIPTION,
    93128                    'notice_more_link'   => QLWCAJAX_PROMOTE_CROSS_INSTALL_1_URL
     
    97132                    'notice_delay'       => MONTH_IN_SECONDS * 6,
    98133                    'notice_logo'        => QLWCAJAX_PROMOTE_CROSS_INSTALL_2_LOGO_SRC,
    99                     'notice_title'       => sprintf(
    100                         esc_html__(
    101                             'Hello! We want to invite you to try our %s plugin!',
    102                             'woo-ajax-add-to-cart'
    103                         ),
    104                         QLWCAJAX_PROMOTE_CROSS_INSTALL_2_NAME
    105                     ),
     134                    'notice_title'       => QLWCAJAX_PROMOTE_CROSS_INSTALL_2_TITLE,
    106135                    'notice_description' => QLWCAJAX_PROMOTE_CROSS_INSTALL_2_DESCRIPTION,
    107136                    'notice_more_link'   => QLWCAJAX_PROMOTE_CROSS_INSTALL_2_URL
  • woo-ajax-add-to-cart/tags/2.5.7/woo-ajax-add-to-cart.php

    r3383515 r3405530  
    55 * Plugin URI:              https://quadlayers.com
    66 * Description:             Ajax add to cart for WooCommerce products
    7  * Version:                 2.5.6
     7 * Version:                 2.5.7
    88 * Text Domain:             woo-ajax-add-to-cart
    99 * Author:                  QuadLayers
     
    2323
    2424define( 'QLWCAJAX_PLUGIN_NAME', 'Ajax add to cart for WooCommerce' );
    25 define( 'QLWCAJAX_PLUGIN_VERSION', '2.5.6' );
     25define( 'QLWCAJAX_PLUGIN_VERSION', '2.5.7' );
    2626define( 'QLWCAJAX_PLUGIN_FILE', __FILE__ );
    2727define( 'QLWCAJAX_PLUGIN_DIR', __DIR__ . DIRECTORY_SEPARATOR );
  • woo-ajax-add-to-cart/trunk/jetpack_vendor/automattic/jetpack-assets/CHANGELOG.md

    r3383515 r3405530  
    55The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
    66and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
     7
     8## [4.3.13] - 2025-11-17
     9### Changed
     10- Update package dependencies. [#45915]
     11- Update package dependencies. [#45958]
     12
     13## [4.3.12] - 2025-11-10
     14### Changed
     15- Tests: Ensure PHP 8.5 compatibility. [#45769]
     16- Update package dependencies. [#45756]
     17
     18### Fixed
     19- Tests: Improve compatibility with PHP 8.5. [#45771]
     20
     21## [4.3.11] - 2025-10-28
     22### Changed
     23- Update dependencies. [#42554]
    724
    825## [4.3.10] - 2025-10-02
     
    725742- Statically access asset tools
    726743
     744[4.3.13]: https://github.com/Automattic/jetpack-assets/compare/v4.3.12...v4.3.13
     745[4.3.12]: https://github.com/Automattic/jetpack-assets/compare/v4.3.11...v4.3.12
     746[4.3.11]: https://github.com/Automattic/jetpack-assets/compare/v4.3.10...v4.3.11
    727747[4.3.10]: https://github.com/Automattic/jetpack-assets/compare/v4.3.9...v4.3.10
    728748[4.3.9]: https://github.com/Automattic/jetpack-assets/compare/v4.3.8...v4.3.9
  • woo-ajax-add-to-cart/trunk/jetpack_vendor/automattic/jetpack-status/CHANGELOG.md

    r3383515 r3405530  
    55The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
    66and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
     7
     8## [6.1.1] - 2025-11-03
     9### Fixed
     10- Phan: Address PhanRedundantCondition, PhanRedundantArrayValuesCall, and PhanPluginRedundantAssignment violations. [#45681]
    711
    812## [6.1.0] - 2025-10-13
     
    514518- Packages: Introduce a status package
    515519
     520[6.1.1]: https://github.com/Automattic/jetpack-status/compare/v6.1.0...v6.1.1
    516521[6.1.0]: https://github.com/Automattic/jetpack-status/compare/v6.0.4...v6.1.0
    517522[6.0.4]: https://github.com/Automattic/jetpack-status/compare/v6.0.3...v6.0.4
  • woo-ajax-add-to-cart/trunk/jetpack_vendor/automattic/jetpack-status/src/class-cookiestate.php

    r3367296 r3405530  
    2626    public function state( $key = null, $value = null, $restate = false ) {
    2727        static $state = array();
    28         static $path, $domain;
     28        static $path, $domain; // this initializes values to null
    2929        if ( ! isset( $path ) ) {
    3030            require_once ABSPATH . 'wp-admin/includes/plugin.php';
     
    3535                $path   = ( isset( $bits['path'] ) ) ? dirname( $bits['path'] ) : null;
    3636                $domain = ( isset( $bits['host'] ) ) ? $bits['host'] : null;
    37             } else {
    38                 $path   = null;
    39                 $domain = null;
    4037            }
    4138        }
  • woo-ajax-add-to-cart/trunk/jetpack_vendor/i18n-map.php

    r3383515 r3405530  
    77    'jetpack-assets' => array(
    88      'path' => 'jetpack_vendor/automattic/jetpack-assets',
    9       'ver' => '4.3.10',
     9      'ver' => '4.3.13',
    1010    ),
    1111    'wp-dashboard-widget-news' => array(
     
    1515    'wp-notice-plugin-promote' => array(
    1616      'path' => 'jetpack_vendor/quadlayers/wp-notice-plugin-promote',
    17       'ver' => '1.1.7',
     17      'ver' => '1.1.8',
    1818    ),
    1919    'wp-notice-plugin-required' => array(
  • woo-ajax-add-to-cart/trunk/jetpack_vendor/quadlayers/wp-notice-plugin-promote/src/Load.php

    r3197488 r3405530  
    408408                $notice,
    409409                array(
    410                     'notice_more_label' => esc_html__( 'Get more info', 'wp-notice-plugin-promote' ),
     410                    'notice_more_label' => esc_html__( 'Learn more', 'wp-notice-plugin-promote' ),
    411411                )
    412412            );
  • woo-ajax-add-to-cart/trunk/jetpack_vendor/quadlayers/wp-notice-plugin-promote/src/Traits/PluginActions.php

    r2870610 r3405530  
    4141        }
    4242
    43         return esc_html__( 'Install', 'wp-notice-plugin-promote' );
     43        return esc_html__( 'Install free', 'wp-notice-plugin-promote' );
    4444    }
    4545
  • woo-ajax-add-to-cart/trunk/jetpack_vendor/quadlayers/wp-notice-plugin-promote/src/templates/notice.php

    r3197488 r3405530  
    2020        </div>
    2121        <div class="notice-content" style="margin-left: 15px;">
    22             <p>
     22            <?php
     23            // Check if title contains block-level HTML tags
     24            $has_block_tags = ! empty( $notice_title ) && preg_match( '/<(h[1-6]|div|p|ul|ol|li|blockquote|pre|table|form|section|article|header|footer|nav|aside)\b/i', $notice_title );
     25            ?>
     26            <?php if ( $has_block_tags ) : ?>
    2327                <?php if ( ! empty( $notice_title ) ) : ?>
    2428                    <?php echo wp_kses_post( $notice_title ); ?>
    25                     <br/>
    2629                <?php endif; ?>
    2730                <?php if ( ! empty( $notice_description ) ) : ?>
    28                     <?php echo wp_kses_post( $notice_description ); ?>
     31                    <p>
     32                        <?php echo wp_kses_post( $notice_description ); ?>
     33                    </p>
    2934                <?php endif; ?>
    30             </p>
     35            <?php else : ?>
     36                <p>
     37                    <?php if ( ! empty( $notice_title ) ) : ?>
     38                        <?php echo wp_kses_post( $notice_title ); ?>
     39                        <br/>
     40                    <?php endif; ?>
     41                    <?php if ( ! empty( $notice_description ) ) : ?>
     42                        <?php echo wp_kses_post( $notice_description ); ?>
     43                    <?php endif; ?>
     44                </p>
     45            <?php endif; ?>
    3146            <div style="display:flex;gap: 1em;align-items: center;" >
    32                 <a href="#" title="<?php echo esc_html__( 'I would not, close this alert.', 'wp-notice-plugin-promote' ); ?>" class="button-secondary link-dismiss" data-notice_index="<?php echo esc_attr( $notice_index ); ?>">
    33                     <?php echo esc_html__( 'I would not', 'wp-notice-plugin-promote' ); ?>
     47                <a href="#" title="<?php echo esc_html__( 'Not interested, close this alert.', 'wp-notice-plugin-promote' ); ?>" class="button-secondary link-dismiss" data-notice_index="<?php echo esc_attr( $notice_index ); ?>">
     48                    <?php echo esc_html__( 'Not interested', 'wp-notice-plugin-promote' ); ?>
    3449                </a>
    3550                <?php
  • woo-ajax-add-to-cart/trunk/languages/woo-ajax-add-to-cart.pot

    r3383515 r3405530  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Ajax add to cart for WooCommerce 2.5.6\n"
     5"Project-Id-Version: Ajax add to cart for WooCommerce 2.5.7\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woo-ajax-add-to-cart\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-10-23T14:24:26+00:00\n"
     12"POT-Creation-Date: 2025-11-28T23:10:19+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.12.0\n"
     
    3636msgstr ""
    3737
    38 #: vendor_packages/wp-notice-plugin-promote.php:25
    39 msgid "This plugin allows you to add custom fields to the checkout page, related to billing, shipping or additional fields sections."
     38#: vendor_packages/wp-notice-plugin-promote.php:30
     39msgid "Turn more visitors into customers."
    4040msgstr ""
    4141
    42 #: vendor_packages/wp-notice-plugin-promote.php:33
    43 msgid "Perfect WooCommerce Brands the perfect tool to improve customer experience on your site. It allows you to highlight product brands and organize them in lists, dropdowns, thumbnails, and as a widget."
    44 msgstr ""
    45 
    46 #: vendor_packages/wp-notice-plugin-promote.php:45
    47 #, php-format
    48 msgid "Hello! %2$s We've spent countless hours developing this free plugin for you and would really appreciate it if you could drop us a quick rating. Your feedback is extremely valuable to us. %3$s It helps us to get better. Thanks for using %1$s."
     42#: vendor_packages/wp-notice-plugin-promote.php:39
     43msgid "Social Chat allows your users to start a conversation from your website directly to your WhatsApp phone number with one click."
    4944msgstr ""
    5045
    5146#: vendor_packages/wp-notice-plugin-promote.php:52
     47msgid "Customize your checkout in minutes."
     48msgstr ""
     49
     50#: vendor_packages/wp-notice-plugin-promote.php:61
     51msgid "WooCommerce Checkout Manager allows you to add custom fields to the checkout page, related to billing, Shipping or Additional fields sections."
     52msgstr ""
     53
     54#: vendor_packages/wp-notice-plugin-promote.php:75
     55msgid "Enjoying WooCommerce Ajax Add to Cart?"
     56msgstr ""
     57
     58#: vendor_packages/wp-notice-plugin-promote.php:83
     59msgid "A quick 5-star review helps us keep improving the plugin and supporting users like you. It only takes 2 seconds — thank you!"
     60msgstr ""
     61
     62#: vendor_packages/wp-notice-plugin-promote.php:86
    5263msgid "Report a bug"
    5364msgstr ""
    5465
    55 #: vendor_packages/wp-notice-plugin-promote.php:60
     66#: vendor_packages/wp-notice-plugin-promote.php:94
    5667msgid "Purchase Now"
    5768msgstr ""
    5869
    59 #: vendor_packages/wp-notice-plugin-promote.php:66
    60 msgid "Hello! We have a special gift!"
     70#: vendor_packages/wp-notice-plugin-promote.php:103
     71msgid "Save 20% today!"
    6172msgstr ""
    6273
    63 #: vendor_packages/wp-notice-plugin-promote.php:71
     74#: vendor_packages/wp-notice-plugin-promote.php:112
    6475#, php-format
    6576msgid "Today we have a special gift for you. Use the coupon code %1$s within the next 48 hours to receive a %2$s discount on the premium version of the %3$s plugin."
    66 msgstr ""
    67 
    68 #: vendor_packages/wp-notice-plugin-promote.php:86
    69 #: vendor_packages/wp-notice-plugin-promote.php:100
    70 #, php-format
    71 msgid "Hello! We want to invite you to try our %s plugin!"
    7277msgstr ""
    7378
  • woo-ajax-add-to-cart/trunk/readme.txt

    r3383515 r3405530  
    66Requires PHP: 5.6
    77Tested up to: 6.8
    8 Stable tag: 2.5.6
     8Stable tag: 2.5.7
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    3232== Changelog ==
    3333
     34= 2.5.7 =
     35* WooCommerce compatibility
     36
    3437= 2.5.6 =
    3538* WooCommerce compatibility
  • woo-ajax-add-to-cart/trunk/vendor/composer/installed.json

    r3383515 r3405530  
    33        {
    44            "name": "automattic/jetpack-assets",
    5             "version": "v4.3.10",
    6             "version_normalized": "4.3.10.0",
     5            "version": "v4.3.13",
     6            "version_normalized": "4.3.13.0",
    77            "source": {
    88                "type": "git",
    99                "url": "https://github.com/Automattic/jetpack-assets.git",
    10                 "reference": "6c0a138b68b6b02977038d6f1d5f4f503311005f"
    11             },
    12             "dist": {
    13                 "type": "zip",
    14                 "url": "https://api.github.com/repos/Automattic/jetpack-assets/zipball/6c0a138b68b6b02977038d6f1d5f4f503311005f",
    15                 "reference": "6c0a138b68b6b02977038d6f1d5f4f503311005f",
     10                "reference": "7403da3dfea8d33825ed995b64df4bbcbb3c38bb"
     11            },
     12            "dist": {
     13                "type": "zip",
     14                "url": "https://api.github.com/repos/Automattic/jetpack-assets/zipball/7403da3dfea8d33825ed995b64df4bbcbb3c38bb",
     15                "reference": "7403da3dfea8d33825ed995b64df4bbcbb3c38bb",
    1616                "shasum": ""
    1717            },
    1818            "require": {
    1919                "automattic/jetpack-constants": "^3.0.8",
    20                 "automattic/jetpack-status": "^6.0.4",
     20                "automattic/jetpack-status": "^6.1.1",
    2121                "php": ">=7.2"
    2222            },
    2323            "require-dev": {
    24                 "automattic/jetpack-changelogger": "^6.0.7",
     24                "automattic/jetpack-changelogger": "^6.0.9",
    2525                "automattic/phpunit-select-config": "^1.0.3",
    2626                "brain/monkey": "^2.6.2",
     
    3131                "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
    3232            },
    33             "time": "2025-10-02T04:43:17+00:00",
     33            "time": "2025-11-17T21:23:58+00:00",
    3434            "type": "jetpack-library",
    3535            "extra": {
     
    5959            "description": "Asset management utilities for Jetpack ecosystem packages",
    6060            "support": {
    61                 "source": "https://github.com/Automattic/jetpack-assets/tree/v4.3.10"
     61                "source": "https://github.com/Automattic/jetpack-assets/tree/v4.3.13"
    6262            },
    6363            "install-path": "../../jetpack_vendor/automattic/jetpack-assets"
     
    181181        {
    182182            "name": "automattic/jetpack-status",
    183             "version": "v6.1.0",
    184             "version_normalized": "6.1.0.0",
     183            "version": "v6.1.1",
     184            "version_normalized": "6.1.1.0",
    185185            "source": {
    186186                "type": "git",
    187187                "url": "https://github.com/Automattic/jetpack-status.git",
    188                 "reference": "7dbcfff7f1005611a3d27e3553df9389c658b3a8"
    189             },
    190             "dist": {
    191                 "type": "zip",
    192                 "url": "https://api.github.com/repos/Automattic/jetpack-status/zipball/7dbcfff7f1005611a3d27e3553df9389c658b3a8",
    193                 "reference": "7dbcfff7f1005611a3d27e3553df9389c658b3a8",
     188                "reference": "100acd2ad87f05b0782deac3905d52f9765725ce"
     189            },
     190            "dist": {
     191                "type": "zip",
     192                "url": "https://api.github.com/repos/Automattic/jetpack-status/zipball/100acd2ad87f05b0782deac3905d52f9765725ce",
     193                "reference": "100acd2ad87f05b0782deac3905d52f9765725ce",
    194194                "shasum": ""
    195195            },
     
    210210                "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
    211211            },
    212             "time": "2025-10-13T20:12:54+00:00",
     212            "time": "2025-11-03T08:47:38+00:00",
    213213            "type": "jetpack-library",
    214214            "extra": {
     
    240240            "description": "Used to retrieve information about the current status of Jetpack and the site overall.",
    241241            "support": {
    242                 "source": "https://github.com/Automattic/jetpack-status/tree/v6.1.0"
     242                "source": "https://github.com/Automattic/jetpack-status/tree/v6.1.1"
    243243            },
    244244            "install-path": "../../jetpack_vendor/automattic/jetpack-status"
     
    341341        {
    342342            "name": "quadlayers/wp-notice-plugin-promote",
    343             "version": "1.1.7",
    344             "version_normalized": "1.1.7.0",
     343            "version": "1.1.8",
     344            "version_normalized": "1.1.8.0",
    345345            "source": {
    346346                "type": "git",
    347347                "url": "https://github.com/franmastromarino/wp-notice-plugin-promote.git",
    348                 "reference": "e947d41c606f1ab679518d87f2b51230a9d74c92"
    349             },
    350             "dist": {
    351                 "type": "zip",
    352                 "url": "https://api.github.com/repos/franmastromarino/wp-notice-plugin-promote/zipball/e947d41c606f1ab679518d87f2b51230a9d74c92",
    353                 "reference": "e947d41c606f1ab679518d87f2b51230a9d74c92",
     348                "reference": "21c4a760a999cddd7896eba5034b7c8163dba133"
     349            },
     350            "dist": {
     351                "type": "zip",
     352                "url": "https://api.github.com/repos/franmastromarino/wp-notice-plugin-promote/zipball/21c4a760a999cddd7896eba5034b7c8163dba133",
     353                "reference": "21c4a760a999cddd7896eba5034b7c8163dba133",
    354354                "shasum": ""
    355355            },
     
    362362                "wp-coding-standards/wpcs": "^2.3.0"
    363363            },
    364             "time": "2024-11-27T20:38:40+00:00",
     364            "time": "2025-11-27T20:59:29+00:00",
    365365            "type": "jetpack-library",
    366366            "extra": {
     
    392392            "support": {
    393393                "issues": "https://github.com/franmastromarino/wp-notice-plugin-promote/issues",
    394                 "source": "https://github.com/franmastromarino/wp-notice-plugin-promote/tree/1.1.7"
     394                "source": "https://github.com/franmastromarino/wp-notice-plugin-promote/tree/1.1.8"
    395395            },
    396396            "install-path": "../../jetpack_vendor/quadlayers/wp-notice-plugin-promote"
  • woo-ajax-add-to-cart/trunk/vendor/composer/installed.php

    r3383515 r3405530  
    22    'root' => array(
    33        'name' => 'quadlayers/woo-ajax-add-to-cart',
    4         'pretty_version' => 'v2.5.6',
    5         'version' => '2.5.6.0',
    6         'reference' => '5138e08931e378e6b5475646b01522d62ee4d423',
     4        'pretty_version' => 'v2.5.7',
     5        'version' => '2.5.7.0',
     6        'reference' => '2f1ff1b5d6ccf2d7fdbcc4bcd802e3fe54ea5142',
    77        'type' => 'project',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'automattic/jetpack-assets' => array(
    14             'pretty_version' => 'v4.3.10',
    15             'version' => '4.3.10.0',
    16             'reference' => '6c0a138b68b6b02977038d6f1d5f4f503311005f',
     14            'pretty_version' => 'v4.3.13',
     15            'version' => '4.3.13.0',
     16            'reference' => '7403da3dfea8d33825ed995b64df4bbcbb3c38bb',
    1717            'type' => 'jetpack-library',
    1818            'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-assets',
     
    3939        ),
    4040        'automattic/jetpack-status' => array(
    41             'pretty_version' => 'v6.1.0',
    42             'version' => '6.1.0.0',
    43             'reference' => '7dbcfff7f1005611a3d27e3553df9389c658b3a8',
     41            'pretty_version' => 'v6.1.1',
     42            'version' => '6.1.1.0',
     43            'reference' => '100acd2ad87f05b0782deac3905d52f9765725ce',
    4444            'type' => 'jetpack-library',
    4545            'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-status',
     
    5757        ),
    5858        'quadlayers/woo-ajax-add-to-cart' => array(
    59             'pretty_version' => 'v2.5.6',
    60             'version' => '2.5.6.0',
    61             'reference' => '5138e08931e378e6b5475646b01522d62ee4d423',
     59            'pretty_version' => 'v2.5.7',
     60            'version' => '2.5.7.0',
     61            'reference' => '2f1ff1b5d6ccf2d7fdbcc4bcd802e3fe54ea5142',
    6262            'type' => 'project',
    6363            'install_path' => __DIR__ . '/../../',
     
    7575        ),
    7676        'quadlayers/wp-notice-plugin-promote' => array(
    77             'pretty_version' => '1.1.7',
    78             'version' => '1.1.7.0',
    79             'reference' => 'e947d41c606f1ab679518d87f2b51230a9d74c92',
     77            'pretty_version' => '1.1.8',
     78            'version' => '1.1.8.0',
     79            'reference' => '21c4a760a999cddd7896eba5034b7c8163dba133',
    8080            'type' => 'jetpack-library',
    8181            'install_path' => __DIR__ . '/../../jetpack_vendor/quadlayers/wp-notice-plugin-promote',
  • woo-ajax-add-to-cart/trunk/vendor_packages/wp-notice-plugin-promote.php

    r3340849 r3405530  
    2121         * Notice cross sell 1
    2222         */
    23         define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_1_SLUG', 'woocommerce-checkout-manager' );
    24         define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_1_NAME', 'WooCommerce Checkout Manager' );
    25         define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_1_DESCRIPTION', esc_html__( 'This plugin allows you to add custom fields to the checkout page, related to billing, shipping or additional fields sections.', 'woo-ajax-add-to-cart' ) );
    26         define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_1_URL', 'https://quadlayers.com/products/woocommerce-checkout-manager/?utm_source=qlwcajax_plugin&utm_medium=dashboard_notice&utm_campaign=cross_sell&utm_content=checkout_manager_link' );
    27         define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_1_LOGO_SRC', plugins_url( '/assets/backend/img/woocommerce-checkout-manager.jpg', QLWCAJAX_PLUGIN_FILE ) );
     23        define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_1_SLUG', 'wp-whatsapp-chat' );
     24        define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_1_NAME', 'Social Chat' );
     25        define(
     26            'QLWCAJAX_PROMOTE_CROSS_INSTALL_1_TITLE',
     27            wp_kses(
     28                sprintf(
     29                    '<h3 style="margin:0">%s</h3>',
     30                    esc_html__( 'Turn more visitors into customers.', 'woo-ajax-add-to-cart' )
     31                ),
     32                array(
     33                    'h3' => array(
     34                        'style' => array()
     35                    )
     36                )
     37            )
     38        );
     39        define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_1_DESCRIPTION', esc_html__( 'Social Chat allows your users to start a conversation from your website directly to your WhatsApp phone number with one click.', 'woo-ajax-add-to-cart' ) );
     40        define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_1_URL', 'https://quadlayers.com/products/whatsapp-chat/?utm_source=qlwcajax_plugin&utm_medium=dashboard_notice&utm_campaign=cross_sell&utm_content=social_chat_link' );
     41        define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_1_LOGO_SRC', plugins_url( '/assets/backend/img/wp-whatsapp-chat.jpeg', QLWCAJAX_PLUGIN_FILE ) );
    2842        /**
    2943         * Notice cross sell 2
    3044         */
    31         define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_2_SLUG', 'perfect-woocommerce-brands' );
    32         define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_2_NAME', 'Perfect WooCommerce Brands' );
    33         define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_2_DESCRIPTION', esc_html__( 'Perfect WooCommerce Brands the perfect tool to improve customer experience on your site. It allows you to highlight product brands and organize them in lists, dropdowns, thumbnails, and as a widget.', 'woo-ajax-add-to-cart' ) );
    34         define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_2_URL', 'https://quadlayers.com/products/perfect-woocommerce-brands/?utm_source=qlwcajax_plugin&utm_medium=dashboard_notice&utm_campaign=cross_sell&utm_content=perfect_brands_link' );
     45        define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_2_SLUG', 'woocommerce-checkout-manager' );
     46        define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_2_NAME', 'WooCommerce Checkout Manager' );
     47        define(
     48            'QLWCAJAX_PROMOTE_CROSS_INSTALL_2_TITLE',
     49            wp_kses(
     50                sprintf(
     51                    '<h3 style="margin:0">%s</h3>',
     52                    esc_html__( 'Customize your checkout in minutes.', 'woo-ajax-add-to-cart' )
     53                ),
     54                array(
     55                    'h3' => array(
     56                        'style' => array()
     57                    )
     58                )
     59            )
     60        );
     61        define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_2_DESCRIPTION', esc_html__( 'WooCommerce Checkout Manager allows you to add custom fields to the checkout page, related to billing, Shipping or Additional fields sections.', 'woo-ajax-add-to-cart' ) );
     62        define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_2_URL', 'https://quadlayers.com/products/woocommerce-checkout-manager/?utm_source=qlwcajax_plugin&utm_medium=dashboard_notice&utm_campaign=cross_sell&utm_content=checkout_manager_link' );
    3563        define( 'QLWCAJAX_PROMOTE_CROSS_INSTALL_2_LOGO_SRC', plugins_url( '/assets/backend/img/woocommerce-checkout-manager.jpg', QLWCAJAX_PLUGIN_FILE ) );
    3664
     
    4270                    'notice_delay'       => 0,
    4371                    'notice_logo'        => QLWCAJAX_PROMOTE_LOGO_SRC,
    44                     'notice_description' => sprintf(
    45                                     esc_html__( 'Hello! %2$s We\'ve spent countless hours developing this free plugin for you and would really appreciate it if you could drop us a quick rating. Your feedback is extremely valuable to us. %3$s It helps us to get better. Thanks for using %1$s.', 'woo-ajax-add-to-cart' ),
    46                                     '<b>'.QLWCAJAX_PLUGIN_NAME.'</b>',
    47                                     '<span style="font-size: 16px;">🙂</span>',
    48                                     '<br>'
     72                    'notice_title'       => wp_kses(
     73                        sprintf(
     74                            '<h3 style="margin:0">%s</h3>',
     75                            esc_html__( 'Enjoying WooCommerce Ajax Add to Cart?', 'woo-ajax-add-to-cart' )
     76                        ),
     77                        array(
     78                            'h3' => array(
     79                                'style' => array()
     80                            )
     81                        )
    4982                    ),
     83                    'notice_description' => esc_html__( 'A quick 5-star review helps us keep improving the plugin and supporting users like you. It only takes 2 seconds — thank you!', 'woo-ajax-add-to-cart' ),
    5084                    'notice_link'        => QLWCAJAX_PROMOTE_REVIEW_URL,
    5185                    'notice_more_link'   => 'https://quadlayers.com/account/support/?utm_source=qlwcajax_plugin&utm_medium=dashboard_notice&utm_campaign=support&utm_content=report_bug_button',
     
    6498                    'notice_delay'       => WEEK_IN_SECONDS,
    6599                    'notice_logo'        => QLWCAJAX_PROMOTE_LOGO_SRC,
    66                     'notice_title'       => esc_html__(
    67                         'Hello! We have a special gift!',
    68                         'woo-ajax-add-to-cart'
     100                    'notice_title'       => wp_kses(
     101                        sprintf(
     102                            '<h3 style="margin:0">%s</h3>',
     103                            esc_html__( 'Save 20% today!', 'woo-ajax-add-to-cart' )
     104                        ),
     105                        array(
     106                            'h3' => array(
     107                                'style' => array()
     108                            )
     109                        )
    69110                    ),
    70111                    'notice_description' => sprintf(
     
    83124                    'notice_delay'       => MONTH_IN_SECONDS * 3,
    84125                    'notice_logo'        => QLWCAJAX_PROMOTE_CROSS_INSTALL_1_LOGO_SRC,
    85                     'notice_title'       => sprintf(
    86                         esc_html__(
    87                             'Hello! We want to invite you to try our %s plugin!',
    88                             'woo-ajax-add-to-cart'
    89                         ),
    90                         QLWCAJAX_PROMOTE_CROSS_INSTALL_1_NAME
    91                     ),
     126                    'notice_title'       => QLWCAJAX_PROMOTE_CROSS_INSTALL_1_TITLE,
    92127                    'notice_description' => QLWCAJAX_PROMOTE_CROSS_INSTALL_1_DESCRIPTION,
    93128                    'notice_more_link'   => QLWCAJAX_PROMOTE_CROSS_INSTALL_1_URL
     
    97132                    'notice_delay'       => MONTH_IN_SECONDS * 6,
    98133                    'notice_logo'        => QLWCAJAX_PROMOTE_CROSS_INSTALL_2_LOGO_SRC,
    99                     'notice_title'       => sprintf(
    100                         esc_html__(
    101                             'Hello! We want to invite you to try our %s plugin!',
    102                             'woo-ajax-add-to-cart'
    103                         ),
    104                         QLWCAJAX_PROMOTE_CROSS_INSTALL_2_NAME
    105                     ),
     134                    'notice_title'       => QLWCAJAX_PROMOTE_CROSS_INSTALL_2_TITLE,
    106135                    'notice_description' => QLWCAJAX_PROMOTE_CROSS_INSTALL_2_DESCRIPTION,
    107136                    'notice_more_link'   => QLWCAJAX_PROMOTE_CROSS_INSTALL_2_URL
  • woo-ajax-add-to-cart/trunk/woo-ajax-add-to-cart.php

    r3383515 r3405530  
    55 * Plugin URI:              https://quadlayers.com
    66 * Description:             Ajax add to cart for WooCommerce products
    7  * Version:                 2.5.6
     7 * Version:                 2.5.7
    88 * Text Domain:             woo-ajax-add-to-cart
    99 * Author:                  QuadLayers
     
    2323
    2424define( 'QLWCAJAX_PLUGIN_NAME', 'Ajax add to cart for WooCommerce' );
    25 define( 'QLWCAJAX_PLUGIN_VERSION', '2.5.6' );
     25define( 'QLWCAJAX_PLUGIN_VERSION', '2.5.7' );
    2626define( 'QLWCAJAX_PLUGIN_FILE', __FILE__ );
    2727define( 'QLWCAJAX_PLUGIN_DIR', __DIR__ . DIRECTORY_SEPARATOR );
Note: See TracChangeset for help on using the changeset viewer.