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: ASK JARVIS + DANTE TESTA */ | |
| <script> | |
| jQuery(document).ready(function(){ | |
| var senha =""; | |
| var letras = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; | |
| for (var i = 0; i < 8; i++) { | |
| senha += letras.charAt(Math.floor(Math.random() * letras.length)); | |
| } |
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 Luciano Cezareto + Crocoblock */ | |
| /* Adicione esse trecho no functions.php do tema [ou tema filho mais seguro] */ | |
| /* no campo search do smartfilters no query variable coloque: | |
| user_prop::user_email; user_prop::user_login; user_prop::user_nicename; user_prop::ID; user_prop::user_url | |
| --->> importante use ponto e virgula (;) para adicionar mais de um termo caso necessário. */ | |
| /* | |
| Veja o Prints: | |
| https://imgur.com/a/amQwmzv | |
| https://imgur.com/a/3foNmbH |
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 e Dante*/ | |
| /* Tab que abre ao clicar no link*/ | |
| /* Defina no HREF dos links os ids das tabs = #tab1, #tab2, #tab3 */ | |
| /* Defina nas colunas/secoes onde será posto os conteudos o ids das tabs = #tab1, #tab2, #tab3 e em todos eles a classe .tab */ | |
| <script> | |
| jQuery(document).ready(function(){ | |
| jQuery('#tab1').css('display','block'); |
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
| <?php | |
| function searchfilter($query) { | |
| if ($query->is_search && !is_admin() ) { | |
| $query->set('post_type',array('post','page','produtos')); | |
| } | |
| return $query; | |
| } | |
| add_filter('pre_get_posts','searchfilter'); |
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 - sugerdio por Carlos Inventor */ | |
| <script> | |
| jQuery(document).ready(function(){ | |
| jQuery("#copy").click(function(){ | |
| var text = jQuery('#user-id h2').text(); | |
| var url = window.location.href; | |
| var id = "?ref=" + text; | |
| var data = url + id; | |
| copyToClipboard(data); |
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>'); | |
| } |
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 e Dante */ | |
| /*ID DO POPUP = 131 nesse exemplo */ | |
| <script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script> | |
| <script> | |
| jQuery(document).ready(function(){ | |
| var flag = 0; | |
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 ASK Jarvis + Dante Testa */ | |
| /* Adicione isso ao functions.php do seu tema e siga o vídeo >>> */ | |
| <?php | |
| function my_favicon() { | |
| $options = get_option('configsite'); /*SLUG DO OPTIONS PAGES*/ | |
| echo '<link rel="shortcut icon" href="'.$options['myicon'].'" />'; /* NOME DO CAMPO MEDIA URL */ | |
| } |
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
| /*NAME, PHONE*/ | |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Document</title> |
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="checkbox" class="aceito_os_termos"> | |
| <button class="btn_enviar" type="submit">Submit</button> | |
| <script> | |
| jQuery(document).ready(function(){ | |
| /*DECLARE AS CLASSES DOS CAMPOS ABAIXO*/ | |
| var checkbox_class = '.aceito_os_termos'; | |
| var button_class = '.btn_enviar'; | |