Uncategorized

Métodos de Jumpseller Liquid

This section documents the Liquid markup language used in a Jumpseller Theme. If you are not confident about what this is about get an overview on Design for Jumpseller Customizing…

Leer más

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

Edición tiempos plugin cf7-datetimepicker-pro

Este plugin lo usaremos para calendarizar, incluye un calendario en jquery con selección de idioma y varias opciones customizables en el admin, además de eso permite crear inputs con horarios…

Leer más

Filtro de emaresa

// Línea 427 (abajo de línea $base_link= $this->get_current_page_url();) // public_html/wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-layered-nav.php $elementos = get_field('atributos_a_mostrar', get_queried_object()); $elementosNew = array(); foreach ($elementos as $key => $value) { $elementosNew[] = $value['atributo_filtrados']; } // public_html/wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-layered-nav.php…

Leer más

Datos adjuntos en correo

En el controlador del formulario de envío recibimos los datos. Como medida de seguridad en Magento hay que usar el $this->request heredado desde el action. En este caso inyectamos mediante…

Leer más