No se han encontrado widgets en la barra lateral

Crear nuevo campo de info adicional en billing form

//cambios del checkout order comments add_filter( 'woocommerce_enable_order_notes_field', '__return_false' ); add_filter( 'woocommerce_checkout_fields' , 'bbloomer_custom_order_notes' ); function bbloomer_custom_order_notes( $fields ) { $fields = array( 'type' => 'textarea', 'placeholder' => '# Depto, Letra…

Leer más

Reemplazar texto en wordpress

function replace_text($text) { $text = str_replace('Correo electrónico', 'replace-with-this-string', $text); return $text; } add_filter('the_content', 'replace_text');

Leer más

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