• I set up a test product with the uploader and placed a test order……the order shows a thumbnail and a file name, but I cannot find anywhere to actually download the uploaded file from….where is it saved? There is no order archive option that I can locate…..

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author tamas_web

    (@tamas_web)

    On the order page, there should be a metabox named upload actions. Press generate zip archive, which will generate for you an archive of the uploaded files for that order.

    If you don’t have the metabox, make sure you check it in screen options.

    Thread Starter Christina Beckerman

    (@csbeckart)

    There is no upload actions in the screen options to check


    I’m just going to use a different plugin.

    Plugin Author tamas_web

    (@tamas_web)

    I’m pressuming that create pdf metabox is interfering with it. Could you please tell me the plugin name, so I can check what the issue might be. I will have to check priority of the metabox. Basically what I’m thinking is that both plugins have the same metabox priority and you can’t display both.

    No one has reported this issue so far.

    Thread Starter Christina Beckerman

    (@csbeckart)

    Plugin Author tamas_web

    (@tamas_web)

    Unfortunately I can’t reproduce the issue. Could you send me either the full list of your plugins, or try to disable one by one your plugins to see, if one of them interfers with the plugin, and the metabox reappears.

    As it is, there is no way for me to further test, what might be the issue.

    If you know want, you can try seeing if the metabox action runs, by editing the /plugins/uploads-for-woocommerce/includes/WooCommerce/Order/Zip.php:line 17 before the add_meta_box( 'woouploads-zip-archive'... add

    var_dump(__FILE__);

    Then find $hasUploads = false; and before this add again

    var_dump(__FILE__);

    As an alternative you would also change the

    add_meta_box( 'woouploads-zip-archive', __( 'Upload actions', 'uploads-for-woocommerce' ), [ $this, 'uploads_box' ], 'shop_order', 'side', 'high' ); 

    to this, and see if it has any effect.

    add_meta_box( 'woouploads-zip-archive', __( 'Upload actions', 'uploads-for-woocommerce' ), [ $this, 'uploads_box' ], 'shop_order', 'normal', 'default' );
    Thread Starter Christina Beckerman

    (@csbeckart)

    Thank you, but I have already deleted the plug-in and installed a different one

Viewing 6 replies - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.