No se han encontrado widgets en la barra lateral

Efecto de carga

G N I D A O L <div style="position:relative; min-height: 200px; background-color: #000;"> <div id="load"> <div>G</div> <div>N</div> <div>I</div> <div>D</div> <div>A</div> <div>O</div> <div>L</div> </div> </div> body { background:#000; } #load {…

Leer más

Efectos de botones

<header> <link href="https://fonts.googleapis.com/css2?family=Lato&display=swap" rel="stylesheet"> </header> <h1>Animation Buttons</h1> <p>Hover us and enjoy the satisfying neumorphic animation designs!</p> <div class="frame"> <button class="custom-btn btn-1">Read More</button> <button class="custom-btn btn-2">Read More</button> <button class="custom-btn btn-3"><span>Read More</span></button>…

Leer más

Card Css

<main class="page-content"> <div class="card"> <div class="content"> <h2 class="title">Mountain View</h2> <p class="copy">Check out all of these gorgeous mountain trips with beautiful views of, you guessed it, the mountains</p> <button class="btn">View Trips</button>…

Leer más

Botón de menú CSS

<style> button.ejemplo { display: flex; flex-direction: column; width: 3rem; height: 3rem; border: 0; background: transparent; gap: .65rem; } button.ejemplo > div { background: black; height: 2px; width: 100%; border-radius: 5px;…

Leer más

Código del enlace de ACF

$enlace2 = $slide; if ($enlace2) { echo '<a title="'.$enlace2.'" href="'.$enlace2.'" target="" rel="noopener">'.$enlace2.'</a>'; }

Leer más

Mover la imagen de categoría sobre el breadcrum en layout

Para mover la imágen de categoría y sacarla del contenedor derecho sobre el breadcrum se utilizxa el sgte código en el archivo catalog_category_view.xml del módulo magento_catalog <move element="category.image" destination="page.top" before="breadcrumbs"/>

Leer más

Cambiar regiones del billing

Esta función se agrega en el archivo functions.php Permite agregar manualmente tus regiones al select de woocommerce en el checkout.   function custom_woocommerce_states( $states ) { $states = array( 'XX1'…

Leer más

Desactivar comentarios

Agregar el sgte código en tu archivo functions.phpfunction disable_media_comment( $open, $post_id ) { $post = get_post( $post_id ); if( $post->post_type == 'attachment' ) { return false; } return $open; }…

Leer más

Limitar monto de compra en cart y checkout

Agregar el sgte código en el archivo de functions.php add_action('woocommerce_checkout_process', 'wc_minimum_order_amount'); add_action('woocommerce_before_cart', 'wc_minimum_order_amount'); function wc_minimum_order_amount() { // Set this variable to specify a minimum order value $minimum = 30000; if…

Leer más

Jquery ajax Queue

var ajaxQueue = jQuery({}); jQuery.ajaxQueue = function(ajaxOpts) { var oldComplete = ajaxOpts.complete; ajaxQueue.queue(function(next) { ajaxOpts.complete = function() { if (oldComplete) oldComplete.apply(this, arguments); next(); }; jQuery.ajax(ajaxOpts); }); }; $("a.actualizar").each(function(idx) { var…

Leer más