Ver Mensaje Individual
  #2 (permalink)  
Antiguo 07/06/2020, 11:00
Avatar de Contac
Contac
 
Fecha de Ingreso: enero-2014
Mensajes: 86
Antigüedad: 10 años, 4 meses
Puntos: 8
Respuesta: Añadir botón "Seguir comprando" en woocommerce

En functions.php del tema activo, añade el siguiente código:

Código PHP:
Ver original
  1. 1 //add back to store button after cart
  2. 2 add_action('woocommerce_cart_coupon', 'themeprefix_back_to_store');
  3. 3 function themeprefix_back_to_store() { ?>
  4. 4 <a class="button wc-backward" href="<?php echo get_permalink( wc_get_page_id( 'shop' ) ); ?>"><?php _e( 'Seguir comprando', 'woocommerce' ) ?></a>
  5. 5 <?php
  6. 6 }