Plugin Directory

Changeset 3421932


Ignore:
Timestamp:
12/17/2025 01:01:26 PM (3 months ago)
Author:
yaycommerce
Message:

New Version 4.3.2

Location:
yaymail
Files:
629 added
19 edited

Legend:

Unmodified
Added
Removed
  • yaymail/trunk/assets/dist/yaymail/manifest.json

    r3393445 r3421932  
    185185      "yaymail-main-09390d33.css"
    186186    ],
    187     "file": "yaymail-main.tsx-2aa01018.js",
     187    "file": "yaymail-main.tsx-523766ce.js",
    188188    "imports": [
    189189      "_vendor_antd_form-9acdc172.js",
  • yaymail/trunk/readme.txt

    r3393445 r3421932  
    55Requires at least: 3.0
    66Tested up to: 6.8
    7 Stable tag: 4.3.1
     7Stable tag: 4.3.2
    88Requires PHP: 7.2
    99License: GPLv2 or later
     
    234234
    235235== Changelog ==
     236
     237= Dec 17, 2025 - Version 4.3.2 =
     238- Updated: Twitter icons
     239- Fixed: Table modern layout (Integrate with WC 10.4)
     240- Fixed: Encoding WC Cart Abandoned variables
     241- Fixed: Admin notice
     242- Fixed: Addon licenses
     243- Fixed: Order link Shortcode (Customers link should point to Account order page)
    236244
    237245= Nov 11, 2025 - Version 4.3.1 =
  • yaymail/trunk/src/Controllers/SettingController.php

    r3299315 r3421932  
    5454
    5555    public function update_settings( \WP_REST_Request $request ) {
    56         $settings               = is_array( $request->get_param( 'settings' ) ) ? array_map( 'sanitize_text_field', wp_unslash( $request->get_param( 'settings' ) ) ) : [];
    57         $settings['custom_css'] = wp_strip_all_tags( isset( $request->get_param( 'settings' )['custom_css'] ) ? $request->get_param( 'settings' )['custom_css'] : '' );
     56        $data                   = json_decode( $request->get_param( 'data' ), true );
     57        $settings               = is_array( $data ) ? array_map( 'sanitize_text_field', wp_unslash( $data ) ) : [];
     58        $settings['custom_css'] = wp_strip_all_tags( isset( $data['custom_css'] ) ? $data['custom_css'] : '' );
    5859        $this->model::update( $settings );
    5960        return [
  • yaymail/trunk/src/Controllers/TemplateController.php

    r3374098 r3421932  
    193193
    194194    public function update_template( \WP_REST_Request $request ) {
    195         $id       = sanitize_text_field( $request->get_param( 'template_id' ) );
    196         $elements = $request->get_param( 'template_elements' );
     195        $data     = json_decode( $request->get_param( 'data' ), true );
     196        $id       = sanitize_text_field( $data['template_id'] );
     197        $elements = $data['template_elements'];
    197198        // TODO: later
    198199        // $elements                   = Helpers::elements_remove_settings_empty( $request->get_param( 'template_elements' ) );
    199         $background_color         = sanitize_text_field( $request->get_param( 'background_color' ) );
    200         $text_link_color          = sanitize_text_field( $request->get_param( 'text_link_color' ) );
    201         $content_background_color = sanitize_text_field( $request->get_param( 'content_background_color' ) );
    202         $content_text_color       = sanitize_text_field( $request->get_param( 'content_text_color' ) );
    203         $title_color              = sanitize_text_field( $request->get_param( 'title_color' ) );
    204         $global_header_settings   = $request->get_param( 'global_header_settings' ) ?? YayMailTemplate::DEFAULT_DATA['global_header_settings'];
    205         $global_footer_settings   = $request->get_param( 'global_footer_settings' ) ?? YayMailTemplate::DEFAULT_DATA['global_footer_settings'];
     200        $background_color         = sanitize_text_field( $data['background_color'] );
     201        $text_link_color          = sanitize_text_field( $data['text_link_color'] );
     202        $content_background_color = sanitize_text_field( $data['content_background_color'] );
     203        $content_text_color       = sanitize_text_field( $data['content_text_color'] );
     204        $title_color              = sanitize_text_field( $data['title_color'] );
     205        $global_header_settings   = $data['global_header_settings'] ?? YayMailTemplate::DEFAULT_DATA['global_header_settings'];
     206        $global_footer_settings   = $data['global_footer_settings'] ?? YayMailTemplate::DEFAULT_DATA['global_footer_settings'];
    206207        $update_data              = [
    207208            'elements'                 => $elements,
  • yaymail/trunk/src/License/assets/js/license.js

    r3317458 r3421932  
    2828  jQuery('.yaycommerce-license-layout').on(
    2929    'click',
    30     `#${slug}_license_card .yaycommerce-license-message .yaycommerce-license-message__close`,
     30    `#${jQuery.escapeSelector(
     31      slug,
     32    )}_license_card .yaycommerce-license-message .yaycommerce-license-message__close`,
    3133    function () {
    3234      hideMessage(slug);
     
    4042    beforeCallAPI(plugin, 'activate');
    4143    hideMessage(plugin);
    42     const licenseKey = jQuery(`#${plugin}_license_input`).val();
     44    const licenseKey = jQuery(`#${jQuery.escapeSelector(plugin)}_license_input`).val();
    4345
    4446    const response = await fetch(`${REST_URL}/license/activate`, {
     
    9294
    9395  function replaceSuccessfullContent(data) {
    94     jQuery(`#${data.slug}_license_card`).replaceWith(data.html);
     96    jQuery(`#${jQuery.escapeSelector(data.slug)}_license_card`).replaceWith(data.html);
    9597    if (data.core_plugin_licese_inactive != null) {
    9698      jQuery('.yaycommerce-license__important-notice').attr(
     
    101103  }
    102104  function replaceActivatorContent(data) {
    103     jQuery(`#${data.slug}_license_card`).replaceWith(data.html);
     105    jQuery(`#${jQuery.escapeSelector(data.slug)}_license_card`).replaceWith(data.html);
    104106    if (data.core_plugin_licese_inactive != null) {
    105107      jQuery('.yaycommerce-license__important-notice').attr(
     
    111113
    112114  function hideMessage(slug) {
    113     jQuery(`#${slug}_license_card .yaycommerce-license-message`).removeClass('show');
    114     jQuery(`#${slug}_license_card .yaycommerce-license-message`).html('');
     115    jQuery(`#${jQuery.escapeSelector(slug)}_license_card .yaycommerce-license-message`).removeClass(
     116      'show',
     117    );
     118    jQuery(`#${jQuery.escapeSelector(slug)}_license_card .yaycommerce-license-message`).html('');
    115119  }
    116120  function clearMessages() {
     
    135139
    136140  function beforeCallAPI(plugin, action) {
     141    const escapedPlugin = jQuery.escapeSelector(plugin);
    137142    if (action === 'activate') {
    138       jQuery(`.yaycommerce-activate-license-button[data-plugin=${plugin}]`)
     143      jQuery(`.yaycommerce-activate-license-button[data-plugin='${escapedPlugin}']`)
    139144        .find('.activate-loading')
    140145        .css('display', 'inline-flex');
     
    142147
    143148    if (action === 'update') {
    144       jQuery(`.yaycommerce-update-license[data-plugin=${plugin}]`)
     149      jQuery(`.yaycommerce-update-license[data-plugin='${escapedPlugin}']`)
    145150        .find('.activate-loading')
    146151        .css('display', 'inline-flex');
     
    148153
    149154    if (action === 'remove') {
    150       jQuery(`.yaycommerce-remove-license[data-plugin=${plugin}]`)
     155      jQuery(`.yaycommerce-remove-license[data-plugin='${escapedPlugin}']`)
    151156        .find('.activate-loading')
    152157        .css('display', 'inline-flex');
    153158    }
    154159
    155     jQuery(`.yaycommerce-activate-license-button[data-plugin=${plugin}]`).attr('disabled', true);
    156     jQuery(`.yaycommerce-update-license[data-plugin=${plugin}]`).attr('disabled', true);
    157     jQuery(`.yaycommerce-remove-license[data-plugin="${plugin}"]`).attr('disabled', true);
     160    jQuery(`.yaycommerce-activate-license-button[data-plugin='${escapedPlugin}']`).attr(
     161      'disabled',
     162      true,
     163    );
     164    jQuery(`.yaycommerce-update-license[data-plugin='${escapedPlugin}']`).attr('disabled', true);
     165    jQuery(`.yaycommerce-remove-license[data-plugin='${escapedPlugin}']`).attr('disabled', true);
    158166  }
    159167
    160168  function afterCallAPI(plugin, action) {
     169    const escapedPlugin = jQuery.escapeSelector(plugin);
    161170    if (action === 'activate') {
    162       jQuery(`.yaycommerce-activate-license-button[data-plugin=${plugin}]`)
     171      jQuery(`.yaycommerce-activate-license-button[data-plugin='${escapedPlugin}']`)
    163172        .find('.activate-loading')
    164173        .hide();
     
    166175
    167176    if (action === 'update') {
    168       jQuery(`.yaycommerce-update-license[data-plugin=${plugin}]`).find('.activate-loading').hide();
     177      jQuery(`.yaycommerce-update-license[data-plugin='${escapedPlugin}']`)
     178        .find('.activate-loading')
     179        .hide();
    169180    }
    170181
    171182    if (action === 'remove') {
    172       jQuery(`.yaycommerce-remove-license[data-plugin=${plugin}]`).find('.activate-loading').hide();
     183      jQuery(`.yaycommerce-remove-license[data-plugin='${escapedPlugin}']`)
     184        .find('.activate-loading')
     185        .hide();
    173186    }
    174     jQuery(`.yaycommerce-activate-license-button[data-plugin=${plugin}]`).attr('disabled', false);
    175     jQuery(`.yaycommerce-update-license[data-plugin=${plugin}]`).attr('disabled', false);
    176     jQuery(`.yaycommerce-remove-license[data-plugin="${plugin}"]`).attr('disabled', false);
     187    jQuery(`.yaycommerce-activate-license-button[data-plugin='${escapedPlugin}']`).attr(
     188      'disabled',
     189      false,
     190    );
     191    jQuery(`.yaycommerce-update-license[data-plugin='${escapedPlugin}']`).attr('disabled', false);
     192    jQuery(`.yaycommerce-remove-license[data-plugin='${escapedPlugin}']`).attr('disabled', false);
    177193  }
    178194});
  • yaymail/trunk/src/Notices/NoticeMain.php

    r3329833 r3421932  
    4141        }
    4242
    43         if ( time() >= (int) get_option( 'yaymail_next_recommendation_notice_time' ) || time() >= (int) get_option( 'yaymail_next_recommendation_suggest_addons_notice_time' ) || time() >= (int) get_option( 'yaymail_next_recommendation_upgrade_notice_time' ) ) {
    44             wp_enqueue_script( 'yaymail-notice', YAYMAIL_PLUGIN_URL . 'assets/scripts/notice.js', [ 'jquery' ], YAYMAIL_VERSION, false );
     43        if ( is_admin() ) {
     44            if ( time() >= (int) get_option( 'yaymail_next_recommendation_notice_time' ) || time() >= (int) get_option( 'yaymail_next_recommendation_suggest_addons_notice_time' ) || time() >= (int) get_option( 'yaymail_next_recommendation_upgrade_notice_time' ) ) {
     45                wp_enqueue_script( 'yaymail-notice', YAYMAIL_PLUGIN_URL . 'assets/scripts/notice.js', [ 'jquery' ], YAYMAIL_VERSION, false );
     46            }
     47
     48            wp_localize_script(
     49                'yaymail-notice',
     50                'yaymail_notice',
     51                [
     52                    'admin_ajax' => admin_url( 'admin-ajax.php' ),
     53                    'nonce'      => wp_create_nonce( 'yaymail_nonce' ),
     54                ]
     55            );
    4556        }
    46 
    47         wp_localize_script(
    48             'yaymail-notice',
    49             'yaymail_notice',
    50             [
    51                 'admin_ajax' => admin_url( 'admin-ajax.php' ),
    52                 'nonce'      => wp_create_nonce( 'yaymail_nonce' ),
    53             ]
    54         );
    5557
    5658        add_action(
  • yaymail/trunk/src/Shortcodes/OrderDetails/OrderDetailsShortcodes.php

    r3374098 r3421932  
    300300        $text_link_color = ! empty( $template ) ? $template->get_text_link_color() : YAYMAIL_COLOR_WC_DEFAULT;
    301301
     302        $element_type = isset( $data['element']['type'] ) ? $data['element']['type'] : '';
     303
    302304        $link_style = TemplateHelpers::get_style(
    303305            [
    304                 'color'           => 'heading' === $data['element']['type'] ? 'inherit' : $text_link_color,
    305                 'text-decoration' => 'heading' !== $data['element']['type'] ? 'underline' : 'none',
     306                'color'           => 'heading' === $element_type ? 'inherit' : $text_link_color,
     307                'text-decoration' => 'heading' !== $element_type ? 'underline' : 'none',
    306308            ]
    307309        );
     
    367369
    368370    public function yaymail_order_link( $data, $shortcode_atts = [] ) {
    369 
    370         $render_data = isset( $data['render_data'] ) ? $data['render_data'] : [];
     371        $order_url = $this->yaymail_order_url( $data );
     372
     373        if ( empty( $order_url ) ) {
     374            return '';
     375        }
    371376
    372377        $is_placeholder = isset( $data['is_placeholder'] ) ? $data['is_placeholder'] : false;
     
    374379        $text_link = isset( $shortcode_atts['text_link'] ) ? $shortcode_atts['text_link'] : TemplateHelpers::get_content_as_placeholder( 'text_link', __( 'Order', 'yaymail' ), $is_placeholder );
    375380
    376         if ( ! empty( $render_data['is_sample'] ) ) {
    377             /**
    378              * Is sample order
    379              */
    380             return '<a href="' . esc_url( get_home_url() ) . '">' . $text_link . '</a>';
    381         }
    382 
    383         $order = Helpers::get_order_from_shortcode_data( $render_data );
    384 
    385         if ( empty( $order ) ) {
    386             /**
    387              * Not having order_id
    388              */
    389             return '';
    390         }
    391 
    392         $edit_order_url = $order->get_edit_order_url();
    393 
    394         if ( empty( $edit_order_url ) ) {
    395             return '';
    396         }
    397 
    398         return wp_kses_post( "<a href='{$edit_order_url}'>" . $text_link . '</a>' );
     381        return wp_kses_post( "<a href='{$order_url}'>" . $text_link . '</a>' );
    399382    }
    400383
     
    419402        }
    420403
    421         $edit_order_url = $order->get_edit_order_url();
    422 
    423         if ( empty( $edit_order_url ) ) {
    424             return '';
    425         }
    426 
    427         return esc_url( $edit_order_url );
     404        $sent_to_admin = isset( $render_data['sent_to_admin'] ) ? $render_data['sent_to_admin'] : false;
     405
     406        $order_url = $sent_to_admin ? $order->get_edit_order_url() : $order->get_view_order_url();
     407
     408        if ( empty( $order_url ) ) {
     409            return '';
     410        }
     411
     412        return esc_url( $order_url );
    428413    }
    429414
  • yaymail/trunk/templates/elements/billing-address.php

    r3344175 r3421932  
    6060    /* Modern layout */
    6161    <?php if ( $is_layout_type_modern ) { ?>
    62     [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail-billing-address-wrap {
     62    .yaymail-element-<?php echo esc_attr( $element['id'] ); ?> .yaymail-billing-address-wrap {
    6363        border: 0 !important;
    6464        padding-left: 0 !important;
  • yaymail/trunk/templates/elements/billing-shipping-address.php

    r3344175 r3421932  
    6363    /* Modern layout */
    6464    <?php if ( $is_layout_type_modern ) { ?>
    65     [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail-billing-address-wrap,
    66     [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail-shipping-address-wrap {
     65    .yaymail-element-<?php echo esc_attr( $element['id'] ); ?> .yaymail-billing-address-wrap,
     66    .yaymail-element-<?php echo esc_attr( $element['id'] ); ?> .yaymail-shipping-address-wrap {
    6767        border: 0 !important;
    6868        padding-left: 0 !important;
  • yaymail/trunk/templates/elements/element-wrapper.php

    r3344175 r3421932  
    4242if ( ! empty( trim( wp_kses_post( $content_html ) ) ) ) {
    4343    ?>
    44     <div class="yaymail-element <?php echo esc_attr( $user_custom_classes ); ?>" data-yaymail-element-type="<?php echo esc_attr( $element['type'] ); ?>" style="width: 100%; margin: 0 auto;" data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>">
     44    <div class="yaymail-element yaymail-element-<?php echo esc_attr( $element['id'] ); ?> <?php echo esc_attr( $user_custom_classes ); ?>" data-yaymail-element-type="<?php echo esc_attr( $element['type'] ); ?>" style="width: 100%; margin: 0 auto;" data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>">
    4545        <table cellpadding="0" cellspacing="0"  class="yaymail-element__content" style="<?php echo esc_attr( $wrapper_style ); ?>">
    4646            <tbody>
  • yaymail/trunk/templates/elements/order-details-download.php

    r3344175 r3421932  
    5050    /* Modern layout */
    5151    <?php if ( $is_layout_type_modern ) { ?>
    52     [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail-order-details-download-content {
     52    .yaymail-element-<?php echo esc_attr( $element['id'] ); ?> .yaymail-order-details-download-content {
    5353        border: 0 !important;
    5454    }
    55     [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail-order-details-download-content th,
    56     [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail-order-details-download-content td {
     55    .yaymail-element-<?php echo esc_attr( $element['id'] ); ?> .yaymail-order-details-download-content th,
     56    .yaymail-element-<?php echo esc_attr( $element['id'] ); ?> .yaymail-order-details-download-content td {
    5757        border: 0 !important;
    5858        padding-left: 0 !important;
     
    6060    }
    6161
    62     [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail-order-details-download-title--download,
    63     [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail-order-details-download-content--download {
     62    .yaymail-element-<?php echo esc_attr( $element['id'] ); ?> .yaymail-order-details-download-title--download,
     63    .yaymail-element-<?php echo esc_attr( $element['id'] ); ?> .yaymail-order-details-download-content--download {
    6464        text-align: right !important;
    6565    }
  • yaymail/trunk/templates/elements/order-details.php

    r3344175 r3421932  
    6161    /* Modern layout */
    6262    <?php if ( $is_layout_type_modern ) { ?>
    63     [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail-order-details-table {
     63    .yaymail-element-<?php echo esc_attr( $element['id'] ); ?> .yaymail-order-details-table {
    6464        border: 0 !important;
    6565    }
    66     [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail-order-details-table th,
    67     [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail-order-details-table td {
     66    .yaymail-element-<?php echo esc_attr( $element['id'] ); ?> .yaymail-order-details-table th,
     67    .yaymail-element-<?php echo esc_attr( $element['id'] ); ?> .yaymail-order-details-table td {
    6868        border: 0 !important;
    6969        padding-left: 0 !important;
     
    7171    }
    7272
    73     [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail_item_price_title,
    74     [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail_item_price_content,
    75     [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail_element_foot_order_details tr td {
     73    .yaymail-element-<?php echo esc_attr( $element['id'] ); ?> .yaymail_item_price_title,
     74    .yaymail-element-<?php echo esc_attr( $element['id'] ); ?> .yaymail_item_price_content,
     75    .yaymail-element-<?php echo esc_attr( $element['id'] ); ?> .yaymail_element_foot_order_details tr td {
    7676        text-align: right !important;
    7777    }
    7878
    79     [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail_item_quantity_title,
    80     [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail_item_quantity_content,
    81     [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail_item_cost_title,
    82     [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail_item_cost_content {
     79    .yaymail-element-<?php echo esc_attr( $element['id'] ); ?> .yaymail_item_quantity_title,
     80    .yaymail-element-<?php echo esc_attr( $element['id'] ); ?> .yaymail_item_quantity_content,
     81    .yaymail-element-<?php echo esc_attr( $element['id'] ); ?> .yaymail_item_cost_title,
     82    .yaymail-element-<?php echo esc_attr( $element['id'] ); ?> .yaymail_item_cost_content {
    8383        text-align: center !important;
    8484    }
    85     [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail-quantity-type-modern {
     85    .yaymail-element-<?php echo esc_attr( $element['id'] ); ?> .yaymail-quantity-type-modern {
    8686        display: inline-block !important;
    8787    }
    8888
    8989
    90     [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail-order-details-table .order_item:last-child td {
     90    .yaymail-element-<?php echo esc_attr( $element['id'] ); ?> .yaymail-order-details-table .order_item:last-child td {
    9191        border-bottom: 1px solid <?php echo esc_attr( $border_color ); ?> !important;
    9292    }
    9393
    94     [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail-order-details-table .yaymail-order-detail-row-payment_method td,
    95     [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail-order-details-table .yaymail-order-detail-row-payment_method th {
     94    .yaymail-element-<?php echo esc_attr( $element['id'] ); ?> .yaymail-order-details-table .yaymail-order-detail-row-payment_method td,
     95    .yaymail-element-<?php echo esc_attr( $element['id'] ); ?> .yaymail-order-details-table .yaymail-order-detail-row-payment_method th {
    9696        border-bottom: 1px solid <?php echo esc_attr( $border_color ); ?> !important;
    9797    }
    9898
    99     [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail-order-details-table th {
     99    .yaymail-element-<?php echo esc_attr( $element['id'] ); ?> .yaymail-order-details-table th {
    100100        font-size: <?php echo esc_attr( $table_heading_font_size ); ?>px !important;
    101101    }
    102102
    103     [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail-order-details-table td {
     103    .yaymail-element-<?php echo esc_attr( $element['id'] ); ?> .yaymail-order-details-table td {
    104104        font-size: <?php echo esc_attr( $table_content_font_size ); ?>px !important;
    105105    }
     
    111111    /* Hide table header */
    112112    <?php if ( ! $show_table_header ) { ?>
    113     [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail_element_head_order_details {
     113    .yaymail-element-<?php echo esc_attr( $element['id'] ); ?> .yaymail_element_head_order_details {
    114114        display: none !important;
    115115    }
  • yaymail/trunk/templates/elements/shipping-address.php

    r3344175 r3421932  
    6060    /* Modern layout */
    6161    <?php if ( $is_layout_type_modern ) { ?>
    62     [data-yaymail-element-id="<?php echo esc_attr( $element['id'] ); ?>"] .yaymail-shipping-address-wrap {
     62    .yaymail-element-<?php echo esc_attr( $element['id'] ); ?> .yaymail-shipping-address-wrap {
    6363        border: 0 !important;
    6464        padding-left: 0 !important;
  • yaymail/trunk/vendor/composer/installed.php

    r3393445 r3421932  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => '349cbe600901a6f41bf5cdf4f664e1315860eaa5',
     6        'reference' => '6ca158b98a4c24b309f9cbbd300842c40b336caa',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    3232            'pretty_version' => 'dev-master',
    3333            'version' => 'dev-master',
    34             'reference' => '349cbe600901a6f41bf5cdf4f664e1315860eaa5',
     34            'reference' => '6ca158b98a4c24b309f9cbbd300842c40b336caa',
    3535            'type' => 'library',
    3636            'install_path' => __DIR__ . '/../../',
  • yaymail/trunk/yaymail.php

    r3393445 r3421932  
    44 * Plugin URI: https://yaycommerce.com/yaymail-woocommerce-email-customizer/
    55 * Description: Create awesome transactional emails with a drag and drop email builder
    6  * Version: 4.3.1
     6 * Version: 4.3.2
    77 * Author: YayCommerce
    88 * Author URI: https://yaycommerce.com
     
    2828
    2929if ( ! defined( 'YAYMAIL_VERSION' ) ) {
    30     define( 'YAYMAIL_VERSION', '4.3.1' );
     30    define( 'YAYMAIL_VERSION', '4.3.2' );
    3131}
    3232
Note: See TracChangeset for help on using the changeset viewer.