Plugin Directory

Changeset 3463774


Ignore:
Timestamp:
02/17/2026 07:22:43 PM (6 weeks ago)
Author:
phppoet
Message:

Update codebase of 3.7.21

Location:
customize-my-account-for-woocommerce
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • customize-my-account-for-woocommerce/tags/3.7.21/customize-my-account-for-woocommerce.php

    r3463751 r3463774  
    44    Plugin URI: https://sysbasics.com
    55    Description: Customize My account page. Add/Edit/Remove Endpoints.
    6     Version: 3.7.20
     6    Version: 3.7.21
    77    Author: SysBasics
    88    Author URI: https://sysbasics.com
  • customize-my-account-for-woocommerce/tags/3.7.21/include/admin/wrap/endpoints-content.php

    r3463751 r3463774  
    150150            <label class=" wcmamtx_accordion_label">
    151151                <?php echo esc_html__('Content Before','customize-my-account-for-woocommerce'); ?>
     152                <?php echo $key; ?>   
     153                <?php echo esc_html__('Content','customize-my-account-for-woocommerce'); ?>
     154            </label>
     155        </td>
     156        <td>
     157            <?php wcmamtx_show_disabled_toggle_image(); ?>
     158
     159        </td>
     160    </tr>
     161    <tr>
     162        <td>
     163            <label class=" wcmamtx_accordion_label">
     164                <?php echo esc_html__('Content After','customize-my-account-for-woocommerce'); ?>
    152165                <?php echo $key; ?>   
    153166                <?php echo esc_html__('Content','customize-my-account-for-woocommerce'); ?>
  • customize-my-account-for-woocommerce/tags/3.7.21/include/admin/wrap/subwrap/countof-settings.php

    r3463725 r3463774  
    140140                    <?php
    141141
    142                     if  (($key != "orders") && ($key != "downloads")) {
     142                    if  (($key != "orders") && ($key != "downloads") && ($key != "woo-wallet")) {
    143143                        ?>
    144144                        <div class="wcmamtx_count_div_section" style="<?php echo $section_style; ?>">
  • customize-my-account-for-woocommerce/tags/3.7.21/include/wcmamtx_countof_functions.php

    r3463725 r3463774  
    6464                $wallet_balance = (float) apply_filters( 'woo_wallet_current_balance', $wallet_balance, $user_id );
    6565            }
    66             return wc_price( $wallet_balance);
     66            return $wallet_balance;
    6767
    6868       
     
    204204            ?>
    205205            <span class="<?php if (isset($sidebar)) { echo 'wcmamtx-banner-counter-sidebar'; } else {  echo 'wcmamtx-banner-counter';} ?>">
    206                 <?php echo wcmamtx_get_total_woowallet_count(); ?>
     206                <?php echo wc_price(wcmamtx_get_total_woowallet_count()); ?>
    207207
    208208            </span>
  • customize-my-account-for-woocommerce/tags/3.7.21/readme.txt

    r3463751 r3463774  
    77WC Requires at least: 4.0
    88Requires PHP: 5.2
    9 Stable tag: 3.7.20
     9Stable tag: 3.7.21
    1010Requires Plugins: woocommerce
    1111License: GPLv2 or later
  • customize-my-account-for-woocommerce/trunk/customize-my-account-for-woocommerce.php

    r3463751 r3463774  
    44    Plugin URI: https://sysbasics.com
    55    Description: Customize My account page. Add/Edit/Remove Endpoints.
    6     Version: 3.7.20
     6    Version: 3.7.21
    77    Author: SysBasics
    88    Author URI: https://sysbasics.com
  • customize-my-account-for-woocommerce/trunk/include/admin/wrap/endpoints-content.php

    r3463751 r3463774  
    150150            <label class=" wcmamtx_accordion_label">
    151151                <?php echo esc_html__('Content Before','customize-my-account-for-woocommerce'); ?>
     152                <?php echo $key; ?>   
     153                <?php echo esc_html__('Content','customize-my-account-for-woocommerce'); ?>
     154            </label>
     155        </td>
     156        <td>
     157            <?php wcmamtx_show_disabled_toggle_image(); ?>
     158
     159        </td>
     160    </tr>
     161    <tr>
     162        <td>
     163            <label class=" wcmamtx_accordion_label">
     164                <?php echo esc_html__('Content After','customize-my-account-for-woocommerce'); ?>
    152165                <?php echo $key; ?>   
    153166                <?php echo esc_html__('Content','customize-my-account-for-woocommerce'); ?>
  • customize-my-account-for-woocommerce/trunk/include/admin/wrap/subwrap/countof-settings.php

    r3463725 r3463774  
    140140                    <?php
    141141
    142                     if  (($key != "orders") && ($key != "downloads")) {
     142                    if  (($key != "orders") && ($key != "downloads") && ($key != "woo-wallet")) {
    143143                        ?>
    144144                        <div class="wcmamtx_count_div_section" style="<?php echo $section_style; ?>">
  • customize-my-account-for-woocommerce/trunk/include/wcmamtx_countof_functions.php

    r3463725 r3463774  
    6464                $wallet_balance = (float) apply_filters( 'woo_wallet_current_balance', $wallet_balance, $user_id );
    6565            }
    66             return wc_price( $wallet_balance);
     66            return $wallet_balance;
    6767
    6868       
     
    204204            ?>
    205205            <span class="<?php if (isset($sidebar)) { echo 'wcmamtx-banner-counter-sidebar'; } else {  echo 'wcmamtx-banner-counter';} ?>">
    206                 <?php echo wcmamtx_get_total_woowallet_count(); ?>
     206                <?php echo wc_price(wcmamtx_get_total_woowallet_count()); ?>
    207207
    208208            </span>
  • customize-my-account-for-woocommerce/trunk/readme.txt

    r3463751 r3463774  
    77WC Requires at least: 4.0
    88Requires PHP: 5.2
    9 Stable tag: 3.7.20
     9Stable tag: 3.7.21
    1010Requires Plugins: woocommerce
    1111License: GPLv2 or later
Note: See TracChangeset for help on using the changeset viewer.