Changes between Initial Version and Version 2 of Ticket #51035
- Timestamp:
- 08/16/2020 06:37:56 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #51035
- Property Milestone Awaiting Review
- Property Resolution → invalid
- Property Severity critical → normal
- Property Status new → closed
-
Ticket #51035 – Description
initial v2 3 3 4 4 After a LOT of digging, I found that plugin uses this CSS: 5 {{{ 5 6 #woocommerce-shipment-tracking #shipment-tracking-form{display:none} 7 }}} 6 8 7 9 And then a Javascript function in admin.js is supposed to change the display to show it: 10 {{{ 8 11 jQuery( function( $ ) { 9 12 … … 127 130 window.wc_shipment_tracking_refresh = wc_shipment_tracking_items.refresh_items; 128 131 } ); 129 132 }}} 130 133 BUT, this no longer worked after updating to WP 5.5! I had to change the Javascript code to move the "jQuery" (namespace?) to a different location in the script: 134 {{{ 131 135 ( function( $ ) { 132 136 … … 250 254 window.wc_shipment_tracking_refresh = wc_shipment_tracking_items.refresh_items; 251 255 } )(jQuery); //FIXED DAK 8/14/20 252 256 }}} 253 257 Now that plugin works like before on the Edit Order page. 254 258
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)