No se han encontrado widgets en la barra lateral

Clases Style del core para imágenes

/* CORE */ .alignnone { margin:0px 10px 10px 0; } .aligncenter, div.aligncenter { display:block; margin:0px auto 5px auto; } .alignright { float:right; margin:0px 0 10px 10px; } .alignleft { float:left;…

Leer más

Agregar string en el titulo woocoommerce

remove_action( 'woocommerce_shop_loop_item_title','woocommerce_template_loop_product_title', 10 ); function change_product_title() { $additional_text = ' More info'; echo '<h2 class="woocommerce-loop-product__title">' . get_the_title() .$additional_text.'</h2>'; } add_action('woocommerce_shop_loop_item_title','change_product_title');

Leer más

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