• 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,
    Youri

    De pagina waar ik hulp bij nodig heb: [log in om de link te zien]

1 reactie aan het bekijken (van in totaal 1)
  • Moderator Jeroen Rotty

    (@jeroenrotty)

    Support Moderator

    Dit is het Nederlandstalige forum van WordPress.org, en dus hanteren we Nederlands. Als je in het Engels ondersteuning wenst, plaats dan je bericht in de globale forums op wordpress.org.

1 reactie aan het bekijken (van in totaal 1)
  • Het onderwerp ‘Change text position’ is gesloten voor nieuwe reacties.