• I have Bulk Discounts tab in settings and followed the instructions to set it up. However it does not appear on my menu on the product page under product data. My menu finishes at the standard Woo Commerce menu ‘Advanced’.

    I did have to create a woocommerce folder into my theme folder and add the single-product.php file. This then puts the product page into my theme.

    Is there an edit I would need to make to the woocomerce-bulk-discount.php file?

    Thanks,

    pieter

    https://www.ads-software.com/plugins/woocommerce-bulk-discount/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Bump.

    Having the same issue. Had it installed, everything was working until recently and somehow, is now disappeared on the product admin page.

    Bulk offer tab shows in the WooCommerce settings, but nothing on the product page under the Advanced tab is showing up anymore. Everything is updated.

    Any ideas?

    I had the same issue on one of my clients site and I did the following to fix the issue:

    Open woocommerce-bulk-discount.php file

    1) On line 65 change

    add_action( 'woocommerce_loaded', array( $this, 'woocommerce_loaded' ) );
    to

    add_action( 'woocommerce_init', array( $this, 'woocommerce_loaded' ) );

    2) On line 83 & 84 change

    add_filter( 'woocommerce_product_write_panel_tabs', array( $this, 'action_product_write_panel_tabs' ) );
    add_filter( 'woocommerce_product_write_panels', array( $this, 'action_product_write_panels' ) );

    to

    add_action( 'woocommerce_product_write_panel_tabs', array( $this, 'action_product_write_panel_tabs' ) );
    add_action( 'woocommerce_product_write_panels', array( $this, 'action_product_write_panels' ) );

    Thank you safiweb! Solved my issue perfectly!

    had the same problem ?? will try this solution

    hmm, i tried editig the php file, but the bulk discount is still not showing on my product page.

    https://www.mixnmatchco.com.au/shop/travel-pouch/travel-pouch-vintage-floral/

    any ideas?

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Plugin option not available on Product page’ is closed to new replies.