๐
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| input[type=number]::-webkit-inner-spin-button, | |
| input[type=number]::-webkit-outer-spin-button { | |
| opacity: 1 | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Add tracking code on Order received/thank you page. | |
| * | |
| * @return void | |
| */ | |
| function md_thankyou_page_tracking_code() { | |
| if ( ! is_wc_endpoint_url( 'order-received' ) ) { | |
| return; | |
| } | |
| ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # How to emulate/activate prefers-color-scheme on Chrome (Desktop): | |
| 1. Press F12 key (or Command+Shift+C on Mac) | |
| 2. Click on the tree dots symbol (customize and control DevTools) | |
| 3. Point your mouse on the more tools option, and then click in rendering option. | |
| 4. The option Emulate CSS media feature prefers-color-scheme near the end it's your destination ! | |
| # How to emulate/activate prefers-color-scheme on Chrome (Mobile): | |
| 1. Click on the tree dots symbol. |
OlderNewer