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
| #EXTM3U | |
| #EXTINF:-1 tvg-id="TVCidadaAlagoas.br" tvg-logo="https://i.imgur.com/m8J8zhr.png" group-title="Legislative;News",TV Cidadã Alagoas (540p) | |
| https://livefocamundo.com:8081/tvcidada/index.m3u8 | |
| #EXTINF:-1 tvg-id="TVCNAgitos.br" tvg-logo="https://i.imgur.com/5gvGC0P.png" group-title="Entertainment",TV CN Agitos (360p) | |
| https://serv2.videovox.pw/cnagitos/cnagitos/playlist.m3u8 | |
| #EXTINF:-1 tvg-id="TVMaceio.br" tvg-logo="https://i.imgur.com/zZ9LEOZ.png" group-title="General",TV Maceió (360p) | |
| https://srv5.zcast.com.br/paulo4100/paulo4100/playlist.m3u8 | |
| #EXTM3U | |
| #EXTINF:-1 tvg-id="TVSaoRaimundo.br" tvg-logo="https://i.imgur.com/f34CQIG.png" group-title="General",TV São Raimundo (268p) |
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
| { | |
| "instances": [ | |
| { | |
| "app": "Invidious", | |
| "region": "Europe", | |
| "country": "Germany", | |
| "flag": "🇩🇪", | |
| "url": "https://invidious.vonbrasche.de" | |
| } | |
| ] |
This file has been truncated, but you can view the full file.
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
| #EXTM3U | |
| #EXTINF:-1 group-title="DANZ" tvg-logo="http://rochagalaxia.live/logos/dazn250.png",DAZN 1 HD₁ | |
| http://45.95.66.9:80/Formigatv/offilinetv2301/10398.ts | |
| #EXTINF:-1 group-title="DANZ" tvg-logo="http://rochagalaxia.live/logos/dazn250.png",DAZN 2 HD₁ | |
| http://45.95.66.9:80/Formigatv/offilinetv2301/10400.ts | |
| #EXTINF:-1 group-title="DANZ" tvg-logo="http://rochagalaxia.live/logos/dazn250.png",DAZN 3 FHD² | |
| http://45.95.66.9:80/Formigatv/offilinetv2301/10402.ts | |
| #EXTINF:-1 group-title="DANZ" tvg-logo="http://rochagalaxia.live/logos/dazn250.png",DAZN 3 HD² | |
| http://45.95.66.9:80/Formigatv/offilinetv2301/10403.ts | |
| #EXTINF:-1 group-title="DANZ" tvg-logo="http://rochagalaxia.live/logos/dazn250.png",DAZN FHD |
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
| function my_profile_update( $user_id, $old_user_data ) { | |
| $args = array( | |
| 'post_type' => 'produkt', | |
| 'fields' => 'ids', | |
| 'numberposts' => -1 | |
| ); | |
| $all_posts = get_posts($args); | |
| foreach ($all_posts as $single_post){ | |
| //$single_post->post_ID = $single_post->post_ID.''; | |
| //wp_update_post( $single_post ); |
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_action('woocommerce_edit_account_form_tag',function(){ | |
| echo ' enctype="multipart/form-data"'; | |
| }); | |
| add_action('woocommerce_edit_account_form_start',function(){ | |
| ?> | |
| <legend style="font-size: 24px; font-weight: 500; color: #0f0f0f;">Über Mich</legend> | |
| <p class="woocommerce-form-row woocommerce-form-row--wide form-row form-row-wide"> | |
| <label for="photo"><?php esc_html_e( 'Image', 'woocommerce' ); ?> <span class="required">*</span></label> | |
| <input type="file" class="woocommerce-Input" name="photo" id="photo"> |
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
| jQuery(document).ready(function( $ ){ | |
| var hbtn = $(".visibleBlock"); | |
| var hcon = $(".hiddenBlock"); | |
| hcon.hide(); | |
| hbtn.hover(function(e) { | |
| var index = hbtn.index(this) | |
| $(hcon).eq(index).slideToggle("slow"); |