Last active
June 1, 2022 13:42
-
-
Save dantetesta/2cb17e37882362797f1b22a4c7990d25 to your computer and use it in GitHub Desktop.
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
| /*By Jarvis + Dante */ | |
| <script> | |
| jQuery(document).ready(function(){ | |
| if(jQuery('.thwcfe-input-field:checked').val() == 'Comfort Trade'){ | |
| jQuery('#f2, #f1').remove(); | |
| jQuery('.e-checkout__column-start').append('<div id="f1"><img src="https://futcoinsbr.com.br/wp-content/uploads/2022/05/comfort2-1024x379.png"></div>'); | |
| } | |
| else if(jQuery('.thwcfe-input-field:checked').val() == 'Player Auction'){ | |
| jQuery('#f2, #f1').remove(); | |
| jQuery('.e-checkout__column-start').append('<div id="f2"><img src="https://futcoinsbr.com.br/wp-content/uploads/2022/05/player-1-1024x379.png"></div>'); | |
| } | |
| else{ | |
| jQuery('#f2, #f1').remove(); | |
| } | |
| jQuery('.thwcfe-input-field').change(function(){ | |
| if(jQuery(this).val() == 'Comfort Trade'){ | |
| jQuery('#f2, #f1').remove(); | |
| jQuery('.e-checkout__column-start').append('<div id="f1"><img src="https://futcoinsbr.com.br/wp-content/uploads/2022/05/comfort2-1024x379.png"></div>'); | |
| } | |
| if(jQuery(this).val() == 'Player Auction'){ | |
| jQuery('#f2, #f1').remove(); | |
| jQuery('.e-checkout__column-start').append('<div id="f2"><img src="https://futcoinsbr.com.br/wp-content/uploads/2022/05/player-1-1024x379.png"></div>'); | |
| } | |
| }); | |
| }); | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment