Advertisement
oscarviedma

Función para mostrar atributo en cards productos woocommerce

Mar 25th, 2021
489
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. // Mostrar atributo en cards productos woocommerce
  2. function ov_mostrar_atributo_producto()
  3. {
  4. global $product;
  5. $precio = $product->get_attribute('precio-por');
  6.  
  7. if(isset($precio)){
  8. echo '<div class="meta-precio-por">Precio por ' . $precio . '</div>';
  9. }
  10. }
  11. add_action('woocommerce_after_shop_loop_item', 'ov_mostrar_atributo_producto', 9);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement