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…
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…
//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…
function replace_text($text) { $text = str_replace('Correo electrónico', 'replace-with-this-string', $text); return $text; } add_filter('the_content', 'replace_text');
Agregar éste código en el archivo functions.php del tema
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…
// 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…
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…