-
play_circle_filled
Fran Guzman – Viper
faceFran Guzmanlabel_outlineFran Guzman, Newstyle
jQuery(document).ready(function($) {
// Handle click on add-to-cart button for instant UI update
$(document).on('click', '.add_to_cart_button', function(e) {
var $button = $(this);
var productId = $button.data('product_id');
if (productId) {
// Find the product list item
var $productListItem = $('.qtmusicplayer-trackitem[data-product-id="' + productId + '"]');
if ($productListItem.length) {
// Hide the add-to-cart button immediately
$productListItem.find('.add_to_cart_button').closest('.qt-addtocart > span').html(
'check' +
$productListItem.find('.qt-btn-moreinfo').prop('outerHTML') + // Preserve More Info button
$productListItem.find('.tinv-wraper').closest('span').prop('outerHTML') // Preserve Wishlist button
);
}
}
});
// Handle WooCommerce AJAX added_to_cart event for consistency
$(document.body).on('added_to_cart', function(event, fragments, cart_hash, $button) {
var productId = $button.data('product_id');
if (productId) {
var $productListItem = $('.qtmusicplayer-trackitem[data-product-id="' + productId + '"]');
if ($productListItem.length) {
// Ensure the add-to-cart button is replaced with the tick icon
$productListItem.find('.qt-addtocart > span').html(
'check' +
$productListItem.find('.qt-btn-moreinfo').prop('outerHTML') +
$productListItem.find('.tinv-wraper').closest('span').prop('outerHTML')
);
}
}
});
});
-
play_circle_filled
Fran Guzman – Crazy Vibes
faceFran Guzmanlabel_outlineFran Guzman, Newstyle, U.S. Hardhouse
jQuery(document).ready(function($) {
// Handle click on add-to-cart button for instant UI update
$(document).on('click', '.add_to_cart_button', function(e) {
var $button = $(this);
var productId = $button.data('product_id');
if (productId) {
// Find the product list item
var $productListItem = $('.qtmusicplayer-trackitem[data-product-id="' + productId + '"]');
if ($productListItem.length) {
// Hide the add-to-cart button immediately
$productListItem.find('.add_to_cart_button').closest('.qt-addtocart > span').html(
'check' +
$productListItem.find('.qt-btn-moreinfo').prop('outerHTML') + // Preserve More Info button
$productListItem.find('.tinv-wraper').closest('span').prop('outerHTML') // Preserve Wishlist button
);
}
}
});
// Handle WooCommerce AJAX added_to_cart event for consistency
$(document.body).on('added_to_cart', function(event, fragments, cart_hash, $button) {
var productId = $button.data('product_id');
if (productId) {
var $productListItem = $('.qtmusicplayer-trackitem[data-product-id="' + productId + '"]');
if ($productListItem.length) {
// Ensure the add-to-cart button is replaced with the tick icon
$productListItem.find('.qt-addtocart > span').html(
'check' +
$productListItem.find('.qt-btn-moreinfo').prop('outerHTML') +
$productListItem.find('.tinv-wraper').closest('span').prop('outerHTML')
);
}
}
});
});
-
play_circle_filled
Fran Guzman – Tim Ring
faceFran Guzmanlabel_outlineFran Guzman, Newstyle
jQuery(document).ready(function($) {
// Handle click on add-to-cart button for instant UI update
$(document).on('click', '.add_to_cart_button', function(e) {
var $button = $(this);
var productId = $button.data('product_id');
if (productId) {
// Find the product list item
var $productListItem = $('.qtmusicplayer-trackitem[data-product-id="' + productId + '"]');
if ($productListItem.length) {
// Hide the add-to-cart button immediately
$productListItem.find('.add_to_cart_button').closest('.qt-addtocart > span').html(
'check' +
$productListItem.find('.qt-btn-moreinfo').prop('outerHTML') + // Preserve More Info button
$productListItem.find('.tinv-wraper').closest('span').prop('outerHTML') // Preserve Wishlist button
);
}
}
});
// Handle WooCommerce AJAX added_to_cart event for consistency
$(document.body).on('added_to_cart', function(event, fragments, cart_hash, $button) {
var productId = $button.data('product_id');
if (productId) {
var $productListItem = $('.qtmusicplayer-trackitem[data-product-id="' + productId + '"]');
if ($productListItem.length) {
// Ensure the add-to-cart button is replaced with the tick icon
$productListItem.find('.qt-addtocart > span').html(
'check' +
$productListItem.find('.qt-btn-moreinfo').prop('outerHTML') +
$productListItem.find('.tinv-wraper').closest('span').prop('outerHTML')
);
}
}
});
});
-
play_circle_filled
Fran Guzman – Wey
faceFran Guzmanlabel_outlineFran Guzman, Newstyle, U.S. Hardhouse
jQuery(document).ready(function($) {
// Handle click on add-to-cart button for instant UI update
$(document).on('click', '.add_to_cart_button', function(e) {
var $button = $(this);
var productId = $button.data('product_id');
if (productId) {
// Find the product list item
var $productListItem = $('.qtmusicplayer-trackitem[data-product-id="' + productId + '"]');
if ($productListItem.length) {
// Hide the add-to-cart button immediately
$productListItem.find('.add_to_cart_button').closest('.qt-addtocart > span').html(
'check' +
$productListItem.find('.qt-btn-moreinfo').prop('outerHTML') + // Preserve More Info button
$productListItem.find('.tinv-wraper').closest('span').prop('outerHTML') // Preserve Wishlist button
);
}
}
});
// Handle WooCommerce AJAX added_to_cart event for consistency
$(document.body).on('added_to_cart', function(event, fragments, cart_hash, $button) {
var productId = $button.data('product_id');
if (productId) {
var $productListItem = $('.qtmusicplayer-trackitem[data-product-id="' + productId + '"]');
if ($productListItem.length) {
// Ensure the add-to-cart button is replaced with the tick icon
$productListItem.find('.qt-addtocart > span').html(
'check' +
$productListItem.find('.qt-btn-moreinfo').prop('outerHTML') +
$productListItem.find('.tinv-wraper').closest('span').prop('outerHTML')
);
}
}
});
});
-
play_circle_filled
Fran Guzman – Da Manguy
faceFran Guzmanlabel_outlineFran Guzman, Newstyle, U.S. Hardhouse
jQuery(document).ready(function($) {
// Handle click on add-to-cart button for instant UI update
$(document).on('click', '.add_to_cart_button', function(e) {
var $button = $(this);
var productId = $button.data('product_id');
if (productId) {
// Find the product list item
var $productListItem = $('.qtmusicplayer-trackitem[data-product-id="' + productId + '"]');
if ($productListItem.length) {
// Hide the add-to-cart button immediately
$productListItem.find('.add_to_cart_button').closest('.qt-addtocart > span').html(
'check' +
$productListItem.find('.qt-btn-moreinfo').prop('outerHTML') + // Preserve More Info button
$productListItem.find('.tinv-wraper').closest('span').prop('outerHTML') // Preserve Wishlist button
);
}
}
});
// Handle WooCommerce AJAX added_to_cart event for consistency
$(document.body).on('added_to_cart', function(event, fragments, cart_hash, $button) {
var productId = $button.data('product_id');
if (productId) {
var $productListItem = $('.qtmusicplayer-trackitem[data-product-id="' + productId + '"]');
if ($productListItem.length) {
// Ensure the add-to-cart button is replaced with the tick icon
$productListItem.find('.qt-addtocart > span').html(
'check' +
$productListItem.find('.qt-btn-moreinfo').prop('outerHTML') +
$productListItem.find('.tinv-wraper').closest('span').prop('outerHTML')
);
}
}
});
});
-
play_circle_filled
Fran Guzman – T-Gusta Poco
faceFran Guzmanlabel_outlineFran Guzman, Newstyle, U.S. Hardhouse
jQuery(document).ready(function($) {
// Handle click on add-to-cart button for instant UI update
$(document).on('click', '.add_to_cart_button', function(e) {
var $button = $(this);
var productId = $button.data('product_id');
if (productId) {
// Find the product list item
var $productListItem = $('.qtmusicplayer-trackitem[data-product-id="' + productId + '"]');
if ($productListItem.length) {
// Hide the add-to-cart button immediately
$productListItem.find('.add_to_cart_button').closest('.qt-addtocart > span').html(
'check' +
$productListItem.find('.qt-btn-moreinfo').prop('outerHTML') + // Preserve More Info button
$productListItem.find('.tinv-wraper').closest('span').prop('outerHTML') // Preserve Wishlist button
);
}
}
});
// Handle WooCommerce AJAX added_to_cart event for consistency
$(document.body).on('added_to_cart', function(event, fragments, cart_hash, $button) {
var productId = $button.data('product_id');
if (productId) {
var $productListItem = $('.qtmusicplayer-trackitem[data-product-id="' + productId + '"]');
if ($productListItem.length) {
// Ensure the add-to-cart button is replaced with the tick icon
$productListItem.find('.qt-addtocart > span').html(
'check' +
$productListItem.find('.qt-btn-moreinfo').prop('outerHTML') +
$productListItem.find('.tinv-wraper').closest('span').prop('outerHTML')
);
}
}
});
});
-
play_circle_filled
Fran Guzman – El Grillo
faceFran Guzmanlabel_outlineFran Guzman, Newstyle
jQuery(document).ready(function($) {
// Handle click on add-to-cart button for instant UI update
$(document).on('click', '.add_to_cart_button', function(e) {
var $button = $(this);
var productId = $button.data('product_id');
if (productId) {
// Find the product list item
var $productListItem = $('.qtmusicplayer-trackitem[data-product-id="' + productId + '"]');
if ($productListItem.length) {
// Hide the add-to-cart button immediately
$productListItem.find('.add_to_cart_button').closest('.qt-addtocart > span').html(
'check' +
$productListItem.find('.qt-btn-moreinfo').prop('outerHTML') + // Preserve More Info button
$productListItem.find('.tinv-wraper').closest('span').prop('outerHTML') // Preserve Wishlist button
);
}
}
});
// Handle WooCommerce AJAX added_to_cart event for consistency
$(document.body).on('added_to_cart', function(event, fragments, cart_hash, $button) {
var productId = $button.data('product_id');
if (productId) {
var $productListItem = $('.qtmusicplayer-trackitem[data-product-id="' + productId + '"]');
if ($productListItem.length) {
// Ensure the add-to-cart button is replaced with the tick icon
$productListItem.find('.qt-addtocart > span').html(
'check' +
$productListItem.find('.qt-btn-moreinfo').prop('outerHTML') +
$productListItem.find('.tinv-wraper').closest('span').prop('outerHTML')
);
}
}
});
});
-
play_circle_filled
Fran Guzman – Sin Maletas
faceFran Guzmanlabel_outlineFran Guzman, Newstyle, U.S. Hardhouse
jQuery(document).ready(function($) {
// Handle click on add-to-cart button for instant UI update
$(document).on('click', '.add_to_cart_button', function(e) {
var $button = $(this);
var productId = $button.data('product_id');
if (productId) {
// Find the product list item
var $productListItem = $('.qtmusicplayer-trackitem[data-product-id="' + productId + '"]');
if ($productListItem.length) {
// Hide the add-to-cart button immediately
$productListItem.find('.add_to_cart_button').closest('.qt-addtocart > span').html(
'check' +
$productListItem.find('.qt-btn-moreinfo').prop('outerHTML') + // Preserve More Info button
$productListItem.find('.tinv-wraper').closest('span').prop('outerHTML') // Preserve Wishlist button
);
}
}
});
// Handle WooCommerce AJAX added_to_cart event for consistency
$(document.body).on('added_to_cart', function(event, fragments, cart_hash, $button) {
var productId = $button.data('product_id');
if (productId) {
var $productListItem = $('.qtmusicplayer-trackitem[data-product-id="' + productId + '"]');
if ($productListItem.length) {
// Ensure the add-to-cart button is replaced with the tick icon
$productListItem.find('.qt-addtocart > span').html(
'check' +
$productListItem.find('.qt-btn-moreinfo').prop('outerHTML') +
$productListItem.find('.tinv-wraper').closest('span').prop('outerHTML')
);
}
}
});
});
-
play_circle_filled
Fran Guzman – Pixto Beat
faceFran Guzmanlabel_outlineFran Guzman, Newstyle, U.S. Hardhouse
jQuery(document).ready(function($) {
// Handle click on add-to-cart button for instant UI update
$(document).on('click', '.add_to_cart_button', function(e) {
var $button = $(this);
var productId = $button.data('product_id');
if (productId) {
// Find the product list item
var $productListItem = $('.qtmusicplayer-trackitem[data-product-id="' + productId + '"]');
if ($productListItem.length) {
// Hide the add-to-cart button immediately
$productListItem.find('.add_to_cart_button').closest('.qt-addtocart > span').html(
'check' +
$productListItem.find('.qt-btn-moreinfo').prop('outerHTML') + // Preserve More Info button
$productListItem.find('.tinv-wraper').closest('span').prop('outerHTML') // Preserve Wishlist button
);
}
}
});
// Handle WooCommerce AJAX added_to_cart event for consistency
$(document.body).on('added_to_cart', function(event, fragments, cart_hash, $button) {
var productId = $button.data('product_id');
if (productId) {
var $productListItem = $('.qtmusicplayer-trackitem[data-product-id="' + productId + '"]');
if ($productListItem.length) {
// Ensure the add-to-cart button is replaced with the tick icon
$productListItem.find('.qt-addtocart > span').html(
'check' +
$productListItem.find('.qt-btn-moreinfo').prop('outerHTML') +
$productListItem.find('.tinv-wraper').closest('span').prop('outerHTML')
);
}
}
});
});
-
play_circle_filled
Fran Guzman & Javi Molina – Se-Fue
faceFran Guzmanlabel_outlineFran Guzman, Javi Molina, Newstyle, U.S. Hardhouse
jQuery(document).ready(function($) {
// Handle click on add-to-cart button for instant UI update
$(document).on('click', '.add_to_cart_button', function(e) {
var $button = $(this);
var productId = $button.data('product_id');
if (productId) {
// Find the product list item
var $productListItem = $('.qtmusicplayer-trackitem[data-product-id="' + productId + '"]');
if ($productListItem.length) {
// Hide the add-to-cart button immediately
$productListItem.find('.add_to_cart_button').closest('.qt-addtocart > span').html(
'check' +
$productListItem.find('.qt-btn-moreinfo').prop('outerHTML') + // Preserve More Info button
$productListItem.find('.tinv-wraper').closest('span').prop('outerHTML') // Preserve Wishlist button
);
}
}
});
// Handle WooCommerce AJAX added_to_cart event for consistency
$(document.body).on('added_to_cart', function(event, fragments, cart_hash, $button) {
var productId = $button.data('product_id');
if (productId) {
var $productListItem = $('.qtmusicplayer-trackitem[data-product-id="' + productId + '"]');
if ($productListItem.length) {
// Ensure the add-to-cart button is replaced with the tick icon
$productListItem.find('.qt-addtocart > span').html(
'check' +
$productListItem.find('.qt-btn-moreinfo').prop('outerHTML') +
$productListItem.find('.tinv-wraper').closest('span').prop('outerHTML')
);
}
}
});
});
-
play_circle_filled
Fran Guzman – Tribute To 90´s
faceFran Guzmanlabel_outlineBases, Fran Guzman
jQuery(document).ready(function($) {
// Handle click on add-to-cart button for instant UI update
$(document).on('click', '.add_to_cart_button', function(e) {
var $button = $(this);
var productId = $button.data('product_id');
if (productId) {
// Find the product list item
var $productListItem = $('.qtmusicplayer-trackitem[data-product-id="' + productId + '"]');
if ($productListItem.length) {
// Hide the add-to-cart button immediately
$productListItem.find('.add_to_cart_button').closest('.qt-addtocart > span').html(
'check' +
$productListItem.find('.qt-btn-moreinfo').prop('outerHTML') + // Preserve More Info button
$productListItem.find('.tinv-wraper').closest('span').prop('outerHTML') // Preserve Wishlist button
);
}
}
});
// Handle WooCommerce AJAX added_to_cart event for consistency
$(document.body).on('added_to_cart', function(event, fragments, cart_hash, $button) {
var productId = $button.data('product_id');
if (productId) {
var $productListItem = $('.qtmusicplayer-trackitem[data-product-id="' + productId + '"]');
if ($productListItem.length) {
// Ensure the add-to-cart button is replaced with the tick icon
$productListItem.find('.qt-addtocart > span').html(
'check' +
$productListItem.find('.qt-btn-moreinfo').prop('outerHTML') +
$productListItem.find('.tinv-wraper').closest('span').prop('outerHTML')
);
}
}
});
});
-
play_circle_filled
Fran Guzman & Javi Molina – Da Zorrer
faceFran Guzmanlabel_outlineFran Guzman, Javi Molina, Newstyle, U.S. Hardhouse
jQuery(document).ready(function($) {
// Handle click on add-to-cart button for instant UI update
$(document).on('click', '.add_to_cart_button', function(e) {
var $button = $(this);
var productId = $button.data('product_id');
if (productId) {
// Find the product list item
var $productListItem = $('.qtmusicplayer-trackitem[data-product-id="' + productId + '"]');
if ($productListItem.length) {
// Hide the add-to-cart button immediately
$productListItem.find('.add_to_cart_button').closest('.qt-addtocart > span').html(
'check' +
$productListItem.find('.qt-btn-moreinfo').prop('outerHTML') + // Preserve More Info button
$productListItem.find('.tinv-wraper').closest('span').prop('outerHTML') // Preserve Wishlist button
);
}
}
});
// Handle WooCommerce AJAX added_to_cart event for consistency
$(document.body).on('added_to_cart', function(event, fragments, cart_hash, $button) {
var productId = $button.data('product_id');
if (productId) {
var $productListItem = $('.qtmusicplayer-trackitem[data-product-id="' + productId + '"]');
if ($productListItem.length) {
// Ensure the add-to-cart button is replaced with the tick icon
$productListItem.find('.qt-addtocart > span').html(
'check' +
$productListItem.find('.qt-btn-moreinfo').prop('outerHTML') +
$productListItem.find('.tinv-wraper').closest('span').prop('outerHTML')
);
}
}
});
});
-
play_circle_filled
Fran Guzman & Dj Rosell – Always Newmember
faceFran Guzmanlabel_outlineDj Rosell, Fran Guzman, Hardcore
jQuery(document).ready(function($) {
// Handle click on add-to-cart button for instant UI update
$(document).on('click', '.add_to_cart_button', function(e) {
var $button = $(this);
var productId = $button.data('product_id');
if (productId) {
// Find the product list item
var $productListItem = $('.qtmusicplayer-trackitem[data-product-id="' + productId + '"]');
if ($productListItem.length) {
// Hide the add-to-cart button immediately
$productListItem.find('.add_to_cart_button').closest('.qt-addtocart > span').html(
'check' +
$productListItem.find('.qt-btn-moreinfo').prop('outerHTML') + // Preserve More Info button
$productListItem.find('.tinv-wraper').closest('span').prop('outerHTML') // Preserve Wishlist button
);
}
}
});
// Handle WooCommerce AJAX added_to_cart event for consistency
$(document.body).on('added_to_cart', function(event, fragments, cart_hash, $button) {
var productId = $button.data('product_id');
if (productId) {
var $productListItem = $('.qtmusicplayer-trackitem[data-product-id="' + productId + '"]');
if ($productListItem.length) {
// Ensure the add-to-cart button is replaced with the tick icon
$productListItem.find('.qt-addtocart > span').html(
'check' +
$productListItem.find('.qt-btn-moreinfo').prop('outerHTML') +
$productListItem.find('.tinv-wraper').closest('span').prop('outerHTML')
);
}
}
});
});
-
play_circle_filled
Fran Guzman – Klaxon
faceFran Guzmanlabel_outlineFran Guzman, Newstyle
jQuery(document).ready(function($) {
// Handle click on add-to-cart button for instant UI update
$(document).on('click', '.add_to_cart_button', function(e) {
var $button = $(this);
var productId = $button.data('product_id');
if (productId) {
// Find the product list item
var $productListItem = $('.qtmusicplayer-trackitem[data-product-id="' + productId + '"]');
if ($productListItem.length) {
// Hide the add-to-cart button immediately
$productListItem.find('.add_to_cart_button').closest('.qt-addtocart > span').html(
'check' +
$productListItem.find('.qt-btn-moreinfo').prop('outerHTML') + // Preserve More Info button
$productListItem.find('.tinv-wraper').closest('span').prop('outerHTML') // Preserve Wishlist button
);
}
}
});
// Handle WooCommerce AJAX added_to_cart event for consistency
$(document.body).on('added_to_cart', function(event, fragments, cart_hash, $button) {
var productId = $button.data('product_id');
if (productId) {
var $productListItem = $('.qtmusicplayer-trackitem[data-product-id="' + productId + '"]');
if ($productListItem.length) {
// Ensure the add-to-cart button is replaced with the tick icon
$productListItem.find('.qt-addtocart > span').html(
'check' +
$productListItem.find('.qt-btn-moreinfo').prop('outerHTML') +
$productListItem.find('.tinv-wraper').closest('span').prop('outerHTML')
);
}
}
});
});
-
play_circle_filled
Fran Guzman – Parapajote
faceFran Guzmanlabel_outlineFran Guzman, Newstyle, U.S. Hardhouse
jQuery(document).ready(function($) {
// Handle click on add-to-cart button for instant UI update
$(document).on('click', '.add_to_cart_button', function(e) {
var $button = $(this);
var productId = $button.data('product_id');
if (productId) {
// Find the product list item
var $productListItem = $('.qtmusicplayer-trackitem[data-product-id="' + productId + '"]');
if ($productListItem.length) {
// Hide the add-to-cart button immediately
$productListItem.find('.add_to_cart_button').closest('.qt-addtocart > span').html(
'check' +
$productListItem.find('.qt-btn-moreinfo').prop('outerHTML') + // Preserve More Info button
$productListItem.find('.tinv-wraper').closest('span').prop('outerHTML') // Preserve Wishlist button
);
}
}
});
// Handle WooCommerce AJAX added_to_cart event for consistency
$(document.body).on('added_to_cart', function(event, fragments, cart_hash, $button) {
var productId = $button.data('product_id');
if (productId) {
var $productListItem = $('.qtmusicplayer-trackitem[data-product-id="' + productId + '"]');
if ($productListItem.length) {
// Ensure the add-to-cart button is replaced with the tick icon
$productListItem.find('.qt-addtocart > span').html(
'check' +
$productListItem.find('.qt-btn-moreinfo').prop('outerHTML') +
$productListItem.find('.tinv-wraper').closest('span').prop('outerHTML')
);
}
}
});
});
-
play_circle_filled
Fran Guzman & Nando Fucker Play feat The Murcian Guys – Inseka
faceFran Guzmanlabel_outlineFran Guzman, Hardcore, Nando Fucker Play
jQuery(document).ready(function($) {
// Handle click on add-to-cart button for instant UI update
$(document).on('click', '.add_to_cart_button', function(e) {
var $button = $(this);
var productId = $button.data('product_id');
if (productId) {
// Find the product list item
var $productListItem = $('.qtmusicplayer-trackitem[data-product-id="' + productId + '"]');
if ($productListItem.length) {
// Hide the add-to-cart button immediately
$productListItem.find('.add_to_cart_button').closest('.qt-addtocart > span').html(
'check' +
$productListItem.find('.qt-btn-moreinfo').prop('outerHTML') + // Preserve More Info button
$productListItem.find('.tinv-wraper').closest('span').prop('outerHTML') // Preserve Wishlist button
);
}
}
});
// Handle WooCommerce AJAX added_to_cart event for consistency
$(document.body).on('added_to_cart', function(event, fragments, cart_hash, $button) {
var productId = $button.data('product_id');
if (productId) {
var $productListItem = $('.qtmusicplayer-trackitem[data-product-id="' + productId + '"]');
if ($productListItem.length) {
// Ensure the add-to-cart button is replaced with the tick icon
$productListItem.find('.qt-addtocart > span').html(
'check' +
$productListItem.find('.qt-btn-moreinfo').prop('outerHTML') +
$productListItem.find('.tinv-wraper').closest('span').prop('outerHTML')
);
}
}
});
});