Changeset 3478633
- Timestamp:
- 03/10/2026 12:06:23 AM (3 weeks ago)
- Location:
- customize-my-account-for-woocommerce
- Files:
-
- 10 edited
- 1 copied
-
tags/3.8.7 (copied) (copied from customize-my-account-for-woocommerce/trunk)
-
tags/3.8.7/assets/css/admin.css (modified) (2 diffs)
-
tags/3.8.7/assets/js/admin.js (modified) (1 diff)
-
tags/3.8.7/customize-my-account-for-woocommerce.php (modified) (1 diff)
-
tags/3.8.7/include/admin/admin_settings.php (modified) (3 diffs)
-
tags/3.8.7/readme.txt (modified) (1 diff)
-
trunk/assets/css/admin.css (modified) (2 diffs)
-
trunk/assets/js/admin.js (modified) (1 diff)
-
trunk/customize-my-account-for-woocommerce.php (modified) (1 diff)
-
trunk/include/admin/admin_settings.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
customize-my-account-for-woocommerce/tags/3.8.7/assets/css/admin.css
r3478598 r3478633 169 169 input#wcmamtx_reset_tabs_button { 170 170 float: right; 171 margin-right: 40px;171 margin-right: 20px; 172 172 } 173 173 … … 645 645 display: none; 646 646 } 647 input#wcmamtx_bulk_actions_button { 648 float: right; 649 margin-right: 20px; 650 } 651 652 button.btn.btn-secondary.bulk.apply { 653 float: right; 654 background: #468446; 655 } 656 select.wcmamtx_bulk_action_select{ 657 /* float: right; */ 658 width: 100%; 659 min-width: 100%; 660 } -
customize-my-account-for-woocommerce/tags/3.8.7/assets/js/admin.js
r3455183 r3478633 132 132 this.checked = !this.checked; 133 133 }.bind(this), 100); 134 }); 135 136 $var(".wcmamtx_bulk_action_select_apply").on('click',function() { 137 138 var action_chosen = $var(".wcmamtx_bulk_action_select").val(); 139 140 if (action_chosen == null) { 141 alert(wcmamtxadmin.chosebulkaction); 142 } else { 143 switch(action_chosen) { 144 145 case "01": 146 147 $var('.wcmamtx_color_input').wpColorPicker('color', '#e9e9ef'); 148 alert(wcmamtxadmin.firstsucess); 149 150 $var("#wcmamtx_bulk_modal").modal('hide'); 151 152 break; 153 154 case "02": 155 156 $var('.wcmamtx_color_input_font').wpColorPicker('color', '#334155'); 157 alert(wcmamtxadmin.firstsucess); 158 159 $var("#wcmamtx_bulk_modal").modal('hide'); 160 161 break; 162 163 } 164 165 166 } 167 168 return false; 134 169 }); 135 170 -
customize-my-account-for-woocommerce/tags/3.8.7/customize-my-account-for-woocommerce.php
r3478598 r3478633 4 4 Plugin URI: https://sysbasics.com 5 5 Description: Customize My account page. Add/Edit/Remove Endpoints. 6 Version: 3.8. 66 Version: 3.8.7 7 7 Author: SysBasics 8 8 Author URI: https://sysbasics.com -
customize-my-account-for-woocommerce/tags/3.8.7/include/admin/admin_settings.php
r3466143 r3478633 560 560 'uploadimage' => esc_html__( 'Choose an image' ,'customize-my-account-for-woocommerce'), 561 561 'useimage' => esc_html__( 'Use Image' ,'customize-my-account-for-woocommerce'), 562 'placeholder' => wcmamtx_placeholder_img_src() 562 'placeholder' => wcmamtx_placeholder_img_src(), 563 'chosebulkaction' => esc_html__( 'No Action Selected' ,'customize-my-account-for-woocommerce'), 564 'firstsucess' => esc_html__( 'Bulk Action Applied to all sucessfully.Make sure to save changes.' ,'customize-my-account-for-woocommerce'), 563 565 564 566 ); … … 881 883 <?php if (isset($current_tab) && ($current_tab == "wcmamtx_advanced_settings") && ($current_tab != "wcmamtx_wizard_settings")) { ?> 882 884 885 <input type="button" href="#" data-toggle="modal" data-target="#wcmamtx_bulk_modal" name="submit" id="wcmamtx_bulk_actions_button" class="btn-sm btn btn-dark wcmamtx_bulk_actions_button" value="<?php echo esc_html__( 'Bulk Actions' ,'customize-my-account-for-woocommerce'); ?>"> 886 883 887 <input type="button" href="#" name="submit" id="wcmamtx_reset_tabs_button" class="btn-sm btn btn-danger wcmamtx_reset_tabs_button" value="<?php echo esc_html__( 'Restore Default' ,'customize-my-account-for-woocommerce'); ?>"> 884 888 … … 934 938 935 939 </form> 940 941 <div class="modal fade" id="wcmamtx_bulk_modal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true"> 942 <div class="modal-dialog" role="document"> 943 <div class="modal-content"> 944 945 <div class="modal-body"> 946 947 <select class="wcmamtx_bulk_action_select"> 948 <option disabled selected value><?php echo esc_html__( 'Choose Action' ,'customize-my-account-for-woocommerce'); ?></option> 949 <option value="01"><?php echo esc_html__( 'Restore Default Background Color to all Dashboard Links' ,'customize-my-account-for-woocommerce'); ?></option> 950 <option value="02"><?php echo esc_html__( 'Restore Default Font Color to all Dashboard Links' ,'customize-my-account-for-woocommerce'); ?></option> 951 </select> 952 953 954 </div> 955 <div class="modal-footer"> 956 957 <button type="button" class="btn btn-secondary bulk apply wcmamtx_bulk_action_select_apply"><?php echo esc_html__( 'Apply' ,'customize-my-account-for-woocommerce'); ?></button> 958 959 <button type="button" class="btn btn-secondary bulk" data-dismiss="modal"><?php echo esc_html__( 'Close' ,'customize-my-account-for-woocommerce'); ?></button> 960 961 </div> 962 </div> 963 </div> 964 </div> 936 965 937 966 <div class="modal fade" id="wcmamtx_example_modal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true"> -
customize-my-account-for-woocommerce/tags/3.8.7/readme.txt
r3478598 r3478633 7 7 WC Requires at least: 4.0 8 8 Requires PHP: 5.2 9 Stable tag: 3.8. 69 Stable tag: 3.8.7 10 10 Requires Plugins: woocommerce 11 11 License: GPLv2 or later -
customize-my-account-for-woocommerce/trunk/assets/css/admin.css
r3478598 r3478633 169 169 input#wcmamtx_reset_tabs_button { 170 170 float: right; 171 margin-right: 40px;171 margin-right: 20px; 172 172 } 173 173 … … 645 645 display: none; 646 646 } 647 input#wcmamtx_bulk_actions_button { 648 float: right; 649 margin-right: 20px; 650 } 651 652 button.btn.btn-secondary.bulk.apply { 653 float: right; 654 background: #468446; 655 } 656 select.wcmamtx_bulk_action_select{ 657 /* float: right; */ 658 width: 100%; 659 min-width: 100%; 660 } -
customize-my-account-for-woocommerce/trunk/assets/js/admin.js
r3455183 r3478633 132 132 this.checked = !this.checked; 133 133 }.bind(this), 100); 134 }); 135 136 $var(".wcmamtx_bulk_action_select_apply").on('click',function() { 137 138 var action_chosen = $var(".wcmamtx_bulk_action_select").val(); 139 140 if (action_chosen == null) { 141 alert(wcmamtxadmin.chosebulkaction); 142 } else { 143 switch(action_chosen) { 144 145 case "01": 146 147 $var('.wcmamtx_color_input').wpColorPicker('color', '#e9e9ef'); 148 alert(wcmamtxadmin.firstsucess); 149 150 $var("#wcmamtx_bulk_modal").modal('hide'); 151 152 break; 153 154 case "02": 155 156 $var('.wcmamtx_color_input_font').wpColorPicker('color', '#334155'); 157 alert(wcmamtxadmin.firstsucess); 158 159 $var("#wcmamtx_bulk_modal").modal('hide'); 160 161 break; 162 163 } 164 165 166 } 167 168 return false; 134 169 }); 135 170 -
customize-my-account-for-woocommerce/trunk/customize-my-account-for-woocommerce.php
r3478598 r3478633 4 4 Plugin URI: https://sysbasics.com 5 5 Description: Customize My account page. Add/Edit/Remove Endpoints. 6 Version: 3.8. 66 Version: 3.8.7 7 7 Author: SysBasics 8 8 Author URI: https://sysbasics.com -
customize-my-account-for-woocommerce/trunk/include/admin/admin_settings.php
r3466143 r3478633 560 560 'uploadimage' => esc_html__( 'Choose an image' ,'customize-my-account-for-woocommerce'), 561 561 'useimage' => esc_html__( 'Use Image' ,'customize-my-account-for-woocommerce'), 562 'placeholder' => wcmamtx_placeholder_img_src() 562 'placeholder' => wcmamtx_placeholder_img_src(), 563 'chosebulkaction' => esc_html__( 'No Action Selected' ,'customize-my-account-for-woocommerce'), 564 'firstsucess' => esc_html__( 'Bulk Action Applied to all sucessfully.Make sure to save changes.' ,'customize-my-account-for-woocommerce'), 563 565 564 566 ); … … 881 883 <?php if (isset($current_tab) && ($current_tab == "wcmamtx_advanced_settings") && ($current_tab != "wcmamtx_wizard_settings")) { ?> 882 884 885 <input type="button" href="#" data-toggle="modal" data-target="#wcmamtx_bulk_modal" name="submit" id="wcmamtx_bulk_actions_button" class="btn-sm btn btn-dark wcmamtx_bulk_actions_button" value="<?php echo esc_html__( 'Bulk Actions' ,'customize-my-account-for-woocommerce'); ?>"> 886 883 887 <input type="button" href="#" name="submit" id="wcmamtx_reset_tabs_button" class="btn-sm btn btn-danger wcmamtx_reset_tabs_button" value="<?php echo esc_html__( 'Restore Default' ,'customize-my-account-for-woocommerce'); ?>"> 884 888 … … 934 938 935 939 </form> 940 941 <div class="modal fade" id="wcmamtx_bulk_modal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true"> 942 <div class="modal-dialog" role="document"> 943 <div class="modal-content"> 944 945 <div class="modal-body"> 946 947 <select class="wcmamtx_bulk_action_select"> 948 <option disabled selected value><?php echo esc_html__( 'Choose Action' ,'customize-my-account-for-woocommerce'); ?></option> 949 <option value="01"><?php echo esc_html__( 'Restore Default Background Color to all Dashboard Links' ,'customize-my-account-for-woocommerce'); ?></option> 950 <option value="02"><?php echo esc_html__( 'Restore Default Font Color to all Dashboard Links' ,'customize-my-account-for-woocommerce'); ?></option> 951 </select> 952 953 954 </div> 955 <div class="modal-footer"> 956 957 <button type="button" class="btn btn-secondary bulk apply wcmamtx_bulk_action_select_apply"><?php echo esc_html__( 'Apply' ,'customize-my-account-for-woocommerce'); ?></button> 958 959 <button type="button" class="btn btn-secondary bulk" data-dismiss="modal"><?php echo esc_html__( 'Close' ,'customize-my-account-for-woocommerce'); ?></button> 960 961 </div> 962 </div> 963 </div> 964 </div> 936 965 937 966 <div class="modal fade" id="wcmamtx_example_modal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true"> -
customize-my-account-for-woocommerce/trunk/readme.txt
r3478598 r3478633 7 7 WC Requires at least: 4.0 8 8 Requires PHP: 5.2 9 Stable tag: 3.8. 69 Stable tag: 3.8.7 10 10 Requires Plugins: woocommerce 11 11 License: GPLv2 or later
Note: See TracChangeset
for help on using the changeset viewer.