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
header#main-header.et-fixed-header, #main-header{ | |
-webkit-box-shadow:none !important; | |
-moz-box-shadow:none !important; | |
box-shadow:none !important; | |
} |
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
<style> | |
.divi-delayed-content { | |
display: none; | |
transition: all 400ms ease !important; | |
} | |
.divi-delayed-content.show-content { | |
display: block; | |
} | |
</style> |
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
/*image aspect ratio landscape 16:9*/ | |
.pa-image-16-9 .et_pb_image_wrap { | |
padding-top: 56.25%; | |
display: block; | |
} | |
.pa-image-16-9 .et_pb_image_wrap img { | |
position: absolute; | |
height: 100%; |
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
find . -iname "*.pdf" | sed -E "s/\-v[0-9].[0-9].pdf//g" | sort -u | grep -E "m7|m8|m9" | wc -l |
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
<?php | |
/** | |
* Add a button to the order admin panel below the order details that opens the thank you page for that order. | |
*/ | |
function action_woocommerce_admin_order_data_after_order_details( $order ) { | |
echo '<a href="' . $order->get_checkout_order_received_url() . '" target="_blank" class="button" style="margin-top:10px">' . __( 'Preview Thank you page', 'woocommerce' ) . '</a>'; | |
} | |
add_action( 'woocommerce_admin_order_data_after_order_details', 'action_woocommerce_admin_order_data_after_order_details', 10, 1 ); |
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
<?php | |
// Begin Facebook Pixel Code | |
function my_facebook_pixel_code(){ | |
?> | |
<!-- Your Facebook Pixel Code goes here --> | |
<?php | |
} | |
add_action( 'wp_head', 'my_facebook_pixel_code' ); |
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
if ( ! function_exists('write_log')) { | |
function write_log ( $log ) { | |
if ( is_array( $log ) || is_object( $log ) ) { | |
error_log( print_r( $log, true ) ); | |
} else { | |
error_log( $log ); | |
} | |
} | |
} |
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 > | |
jQuery(function($) { | |
$(document).ready(function() { | |
$("body ul.et_mobile_menu li.menu-item-has-children, body ul.et_mobile_menu li.page_item_has_children").append('<a href="#" class="mobile-toggle"></a>'); | |
$('ul.et_mobile_menu li.menu-item-has-children .mobile-toggle, ul.et_mobile_menu li.page_item_has_children .mobile-toggle').click(function(event) { | |
event.preventDefault(); | |
$(this).parent('li').toggleClass('dt-open'); | |
$(this).parent('li').find('ul.children').first().toggleClass('visible'); | |
$(this).parent('li').find('ul.sub-menu').first().toggleClass('visible'); | |
}); |
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="soltuin-whatsapp-social-link"> | |
<a href="https://wa.me/<phonewithinternationalcode>/?text=Hola" title="Chat with Us in WhatsApp" target="_blank" rel="nofollow" class="soltuin-float-whatsapp-wrapper"> | |
<svg xmlns="http://www.w3.org/2000/svg" width="45" height="45" viewbox="0 0 24 24"><path d="M12.031 6.172c-3.181 0-5.767 2.586-5.768 5.766-.001 1.298.38 2.27 1.019 3.287l-.582 2.128 2.182-.573c.978.58 1.911.928 3.145.929 3.178 0 5.767-2.587 5.768-5.766.001-3.187-2.575-5.77-5.764-5.771zm3.392 8.244c-.144.405-.837.774-1.17.824-.299.045-.677.063-1.092-.069-.252-.08-.575-.187-.988-.365-1.739-.751-2.874-2.502-2.961-2.617-.087-.116-.708-.94-.708-1.793s.448-1.273.607-1.446c.159-.173.346-.217.462-.217l.332.006c.106.005.249-.04.39.298.144.347.491 1.2.534 1.287.043.087.072.188.014.304-.058.116-.087.188-.173.289l-.26.304c-.087.086-.177.18-.076.354.101.174.449.741.964 1.201.662.591 1.221.774 1.394.86s.274.072.376-.043c.101-.116.433-.506.549-.68.116-.173.231-.145.39-.087s1.011.477 1.184.564.289.13.332.202c.045.072. |
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
.woocommerce ul.products li .astra-shop-summary-wrap { | |
height: 70% !important; | |
display: flex; | |
flex-direction: column; | |
justify-content: space-between; | |
} | |
.woocommerce ul.products li .astra-shop-thumbnail-wrap { | |
height: 30% !important; | |
} | |
.woocommerce ul.products li .astra-shop-thumbnail-wrap img { |
OlderNewer