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
<script type="text/javascript"> | |
let ciudades = [ | |
{ ciudad: 'Arica', regiones: ['Arica y Parinacota', 'Región de Arica y Parinacota'] }, | |
{ ciudad: 'Camarones', regiones: ['Arica y Parinacota', 'Región de Arica y Parinacota'] }, | |
{ ciudad: 'General Lagos', regiones: ['Arica y Parinacota', 'Región de Arica y Parinacota'] }, | |
{ ciudad: 'Putre', regiones: ['Arica y Parinacota', 'Región de Arica y Parinacota'] }, | |
{ ciudad: 'Alto Hospicio', regiones: ['Tarapacá', 'Región de Tarapacá'] }, | |
{ ciudad: 'Camiña', regiones: ['Tarapacá', 'Región de Tarapacá'] }, | |
{ ciudad: 'Colchane', regiones: ['Tarapacá', 'Región de Tarapacá'] }, | |
{ ciudad: 'Huara', regiones: ['Tarapacá', 'Región de Tarapacá'] }, |
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
[ | |
{ | |
"ciudad": "Arica", | |
"regiones": [ | |
"Arica y Parinacota", | |
"Región de Arica y Parinacota" | |
] | |
}, | |
{ | |
"ciudad": "Camarones", |
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_single_product_summary', 'cotizador_cuotas_transbank', 31 ); | |
function cotizador_cuotas_transbank() { | |
global $product; | |
$price = $product->get_price(); | |
if ( $price > 0 ) { | |
$num_payments = 6; | |
echo '<div class="custom-payment-options" style="margin-bottom: 1em;font-size: 12px;max-width: 290px;border: 2px solid #6d2077;padding: 12px;border-radius: 16px;">'; | |
echo '<span><b>Cotiza hasta en 6 cuotas sin intereses:</b></span>'; | |
echo '<select id="payment-options" name="payment-options" style="">'; | |
for ( $i = 1; $i <= $num_payments; $i++ ) { |
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
$places['CL'] = array( | |
'Algarrobo' => 'Algarrobo', | |
'Alhué' => 'Alhué', | |
'Alto Biobío' => 'Alto Biobío', | |
'Alto del Carmen' => 'Alto del Carmen', | |
'Alto Hospicio' => 'Alto Hospicio', | |
'Ancud' => 'Ancud', | |
'Andacollo' => 'Andacollo', | |
'Angol' => 'Angol', | |
'Antártica' => 'Antártica', |
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
<div class="container"> | |
<video id="playerbig" autoplay controls crossorigin poster="https://bigradio.cl/wp-content/uploads/2018/10/thumbnail-player.jpg"></video> | |
</div> | |
<script src="https://cdn.rawgit.com/video-dev/hls.js/18bb552/dist/hls.min.js"></script> |