Skip to content

Instantly share code, notes, and snippets.

#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)
{
"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.
#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
@batataboy16
batataboy16 / Update Posts when User Profile Updates
Last active February 16, 2022 14:17
Update Posts when User Profile Updates
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 );
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' ); ?>&nbsp;<span class="required">*</span></label>
<input type="file" class="woocommerce-Input" name="photo" id="photo">
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");