customization - How I can directly add drop-down in my product on shop page as show in below image

admin2025-06-04  3

I am currently using a WordPress so please help me how can I add drop-down for my vegetables quality based pricing on shop page not on product page I have that drop-down but it shows only in product page I want to show that on home page you can check my website :- www.nagpurveggies

I am currently using a WordPress so please help me how can I add drop-down for my vegetables quality based pricing on shop page not on product page I have that drop-down but it shows only in product page I want to show that on home page you can check my website :- www.nagpurveggies

Share Improve this question asked Jan 29, 2019 at 7:48 Mayur DholeMayur Dhole 112 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 2

I guess you are looking for this Source : https://iconicwp/blog/show-variations-shop-page-woocommerce/

/**
 * Replace add to cart button in the loop.
 */
function iconic_change_loop_add_to_cart() {
    remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );
    add_action( 'woocommerce_after_shop_loop_item', 'iconic_template_loop_add_to_cart', 10 );
}

add_action( 'init', 'iconic_change_loop_add_to_cart', 10 );

/**
 * Use single add to cart button for variable products.
 */
function iconic_template_loop_add_to_cart() {
    global $product;

    if ( ! $product->is_type( 'variable' ) ) {
        woocommerce_template_loop_add_to_cart();
        return;
    }

    remove_action( 'woocommerce_single_variation', 'woocommerce_single_variation_add_to_cart_button', 20 );
    add_action( 'woocommerce_single_variation', 'iconic_loop_variation_add_to_cart_button', 20 );

    woocommerce_template_single_add_to_cart();
}

/**
 * Customise variable add to cart button for loop.
 *
 * Remove qty selector and simplify.
 */
function iconic_loop_variation_add_to_cart_button() {
    global $product;

    ?>
    <div class="woocommerce-variation-add-to-cart variations_button">
        <button type="submit" class="single_add_to_cart_button button"><?php echo esc_html( $product->single_add_to_cart_text() ); ?></button>
        <input type="hidden" name="add-to-cart" value="<?php echo absint( $product->get_id() ); ?>" />
        <input type="hidden" name="product_id" value="<?php echo absint( $product->get_id() ); ?>" />
        <input type="hidden" name="variation_id" class="variation_id" value="0" />
    </div>
    <?php
}
转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1748966816a315228.html

最新回复(0)