Change text position
-
Hello,
I used this code to show the weight of the product by the product:/** * Show product weight on archive pages */ add_action( 'woocommerce_after_shop_loop_item', 'rs_show_weights', 9 ); function rs_show_weights() { global $product; $weight = $product->get_weight(); if ( $product->has_weight() ) { echo '<div class="product-meta"><span class="product-meta-label"> per </span>' . $weight . get_option('woocommerce_weight_unit') . '</div></br>'; } }
The text shows above the title, but it must show after the price. How do i make that?
Kind regards,
YouriDe pagina waar ik hulp bij nodig heb: [log in om de link te zien]
1 reactie aan het bekijken (van in totaal 1)
1 reactie aan het bekijken (van in totaal 1)
- Het onderwerp ‘Change text position’ is gesloten voor nieuwe reacties.