Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Ruchit Shah

    (@ruchitshah)

    Hi @vishalvp

    To restrict file upload option to specific product you need to add below code in your theme functions.php file or Code Snippets plugin.

    
    add_filter( 'wau_include_product_ids', 'wau_include_only_product', 10, 1 );
    
    function wau_include_only_product( $pids ) {
        return array( 310, 315 ); // Add the product ID's here in the array.
    }
    

    I hope that helps you.

    Regards,
    Ruchit.

    Hi,

    Can restrict file upload for a specific category? Restrict product one by one is too tedious when there are lots of products

    Plugin Support Ruchit Shah

    (@ruchitshah)

    Hi @vishalvp and @sleng,

    We just released an update to the plugin that will allow you to restrict file uploads to specific Product Categories.

    Please update to the latest version and let us know how it goes.

    Thanks,
    Ruchit

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How Upload image On specific Catogery Product’ is closed to new replies.