No se han encontrado widgets en la barra lateral

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