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
window.onload = function () { | |
//Create player instance | |
var player = jwplayer(yt_lessons_scripts_params.video_id); | |
var videoDuration = 0; | |
var totalTimeWatched = 0; | |
var previousPosition = 0; | |
var percentageWatched = 0; | |
var isDoneToday = yt_lessons_scripts_params.is_done_today === 'true'; | |
var doneAjaxCallRuning = false; |
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 ($) { | |
if ((0 == $("#booking_calender").length)) { | |
return; | |
} | |
// Initialize var | |
var old_checkout_date = ""; | |
if ($('#wapbk_hidden_date_checkout').length > 0) { | |
old_checkout_date = $('#wapbk_hidden_date_checkout').val(); |
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
.et-db #et-boc ul.products.columns-4 li.product { | |
list-style: none; | |
text-align: center; | |
position: relative; | |
} | |
.et-db #et-boc ul.products li.product img { | |
display: block; | |
margin: 0 auto 1.618em; | |
} |
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
.checkout-logo{ | |
margin-bottom: 100px; | |
} | |
.legal-info{ | |
margin-top: 100px; | |
} |
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
display: flex; | |
flex-direction: column; | |
justify-content: center; |
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
// Muestra el porcentaje de descuento en lugar de la etiqueta "¡Oferta!" | |
add_filter( 'woocommerce_sale_flash', 'show_discount_percentage_instead_of_sale_flash', 10, 3 ); | |
function show_discount_percentage_instead_of_sale_flash( $text, $post, $product ) { | |
if( $product->get_type() == 'variable' ){ | |
$regular_price = $product->get_variation_regular_price( 'max' ); | |
$sale_price = $product->get_variation_sale_price( 'min' ); | |
}else{ | |
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
.et-db #et-boc ul.products.columns-4 li.product { | |
list-style: none; | |
text-align: center; | |
position: relative; | |
} | |
.et-db #et-boc ul.products li.product img { | |
display: block; | |
margin: 0 auto 1.618em; | |
} |
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
// [WhatsApp] Añade CTA flotante para activar conversación | |
if ( in_array( 'woocommerce/woocommerce.php', get_option( 'active_plugins' ) ) && version_compare( WC()->version , '3.0.0', '>' ) ){ | |
add_action( 'wp_head', 'include_fontawsome_brands_icons' ); | |
function include_fontawsome_brands_icons(){ | |
?> | |
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/brands.css" integrity="sha384-BKw0P+CQz9xmby+uplDwp82Py8x1xtYPK3ORn/ZSoe6Dk3ETP59WCDnX+fI1XCKK" crossorigin="anonymous"> | |
<?php | |
} | |
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( 'wp_head', 'add_hotjar_tracking_code', 999 ); | |
function add_hotjar_tracking_code(){ | |
?> | |
<!-- Inserta a continución el código de Hotjar --> | |
<?php | |
} |
NewerOlder