Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Mostrar atributo en cards productos woocommerce
- function ov_mostrar_atributo_producto()
- {
- global $product;
- $precio = $product->get_attribute('precio-por');
- if(isset($precio)){
- echo '<div class="meta-precio-por">Precio por ' . $precio . '</div>';
- }
- }
- add_action('woocommerce_after_shop_loop_item', 'ov_mostrar_atributo_producto', 9);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement